Enum cranelift_codegen::ir::dfg::ValueDef [−][src]
Where did a value come from?
Variants
Value is the n’th result of an instruction.
Value is the n’th parameter to a block.
Implementations
impl ValueDef
[src]
impl ValueDef
[src]pub fn unwrap_inst(&self) -> Inst
[src]
Unwrap the instruction where the value was defined, or panic.
pub fn inst(&self) -> Option<Inst>
[src]
Get the instruction where the value was defined, if any.
pub fn unwrap_block(&self) -> Block
[src]
Unwrap the block there the parameter is defined, or panic.
pub fn pp(self) -> ExpandedProgramPoint
[src]
Get the program point where the value was defined.
pub fn num(self) -> usize
[src]
Get the number component of this definition.
When multiple values are defined at the same program point, this indicates the index of this value.