[][src]Struct libfirm_rs::nodes::Phi

pub struct Phi(_);

Choose a value based on control flow. A phi node has 1 input for each predecessor of its block. If a block is entered from its nth predecessor all phi nodes produce their nth input as result.

Methods

impl Phi
[src]

Important traits for PhiPredsIterator

Node is the result of the phi node when entering this phi's block via Block

impl Phi
[src]

Gets whether Phi represents the observable effect of a (possibly) nonterminating loop.

Sets whether Phi represents the observable effect of a (possibly) nonterminating loop.

Trait Implementations

impl NodeTrait for Phi
[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 Phi
[src]

impl ValueNode for Phi
[src]

impl PartialEq<Phi> for Phi
[src]

impl From<Phi> for Node
[src]

impl Clone for Phi
[src]

Performs copy-assignment from source. Read more

impl Copy for Phi
[src]

impl Eq for Phi
[src]

impl Debug for Phi
[src]

impl Hash for Phi
[src]

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

Auto Trait Implementations

impl !Send for Phi

impl !Sync for Phi

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]