[][src]Struct libfirm_rs::nodes::Store

pub struct Store(_);

Stores a value into memory (heap or stack).

Methods

impl Store
[src]

Gets memory dependency.

Sets memory dependency.

Gets address to store to.

Sets address to store to.

Gets value to store.

Sets value to store.

Gets The type of the object which is stored at ptr (need not match with value's type).

Sets The type of the object which is stored at ptr (need not match with value's type).

Gets volatile stores are a visible side-effect and may not be optimized.

Sets volatile stores are a visible side-effect and may not be optimized.

Gets pointers to unaligned stores don't need to respect the load-mode/type alignments.

Sets pointers to unaligned stores don't need to respect the load-mode/type alignments.

memory result.

control flow when no exception occurs.

control flow when exception occurred.

memory result.

control flow when no exception occurs.

control flow when exception occurred.

Trait Implementations

impl NodeTrait for Store
[src]

Important traits for OutNodeIterator

Important traits for OutNodeExIterator

Important traits for InNodeIterator

libifrm irg_walk wrapper Read more

Perform a DFS over all nodes within block starting at self. As soon as a Phi node is reached, that branch of the DFS is canceled. There is no callback for a Phi node. The primary use case for this API is in codegen. Read more

impl NodeDebug for Store
[src]

impl PartialEq<Store> for Store
[src]

impl From<Store> for Node
[src]

impl Clone for Store
[src]

Performs copy-assignment from source. Read more

impl Copy for Store
[src]

impl Eq for Store
[src]

impl Debug for Store
[src]

impl Hash for Store
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl !Send for Store

impl !Sync for Store

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]