Struct rune_ssa::Block[][src]

pub struct Block { /* fields omitted */ }
Expand description

A block containing a sequence of assignments.

A block carries a definition of its entry. The entry is the sequence of input variables the block expects.

Implementations

The name of the block.

Read the given variable, looking it up recursively in ancestor blocks and memoizing as needed.

Assign a variable.

Define an input into the block.

Get the identifier of the block.

Perform a diagnostical dump of a block.

Define a unit.

Assign a unit.

Define a constant.

Assign a constant.

Compute !arg.

Compute !arg.

Compute lhs + rhs.

Compute lhs + rhs.

Compute lhs - rhs.

Compute lhs - rhs.

Compute lhs / rhs.

Compute lhs / rhs.

Compute lhs * rhs.

Compute lhs * rhs.

Compare if lhs < rhs.

Compare if lhs < rhs.

Compare if lhs <= rhs.

Compare if lhs <= rhs.

Compare if lhs == rhs.

Compare if lhs == rhs.

Compare if lhs > rhs.

Compare if lhs > rhs.

Compare if lhs >= rhs.

Compare if lhs >= rhs.

Perform an unconditional jump to the given block with the specified inputs.

Perform a conditional jump to the given block with the specified inputs if the given condition is true.

Return from this the procedure this block belongs to.

Return from this the procedure this block belongs to.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.