pub enum OperandPos {
    Early,
    Late,
}
Expand description

The “position” of the operand: where it has its read/write effects. These are positions “in” the instruction, and “early” and “late” are relative to the instruction’s main effect or computation. In other words, the allocator assumes that the instruction (i) performs all reads and writes of “early” operands, (ii) does its work, and (iii) performs all reads and writes of its “late” operands.

A “write” (def) at “early” or a “read” (use) at “late” may be slightly nonsensical, given the above, if the read is necessary for the computation or the write is a result of it. A way to think of it is that the value (even if a result of execution) could have been read or written at the given location without causing any register-usage conflicts. In other words, these write-early or use-late operands ensure that the particular allocations are valid for longer than usual and that a register is not reused between the use (normally complete at “Early”) and the def (normally starting at “Late”). See Operand for more.

Variants

Early

Late

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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)

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.