Enum cranelift_codegen::ir::entities::AnyEntity [−][src]
pub enum AnyEntity {
}
Expand description
An opaque reference to any of the entities defined in this module that can appear in CLIF IR.
Variants
The whole function.
Block(Block)
a basic block.
Tuple Fields of Block
0: Block
Inst(Inst)
An instruction.
Tuple Fields of Inst
0: Inst
Value(Value)
An SSA value.
Tuple Fields of Value
0: Value
StackSlot(StackSlot)
A stack slot.
Tuple Fields of StackSlot
0: StackSlot
GlobalValue(GlobalValue)
A Global value.
Tuple Fields of GlobalValue
0: GlobalValue
JumpTable(JumpTable)
A jump table.
Tuple Fields of JumpTable
0: JumpTable
Constant(Constant)
A constant.
Tuple Fields of Constant
0: Constant
FuncRef(FuncRef)
An external function.
Tuple Fields of FuncRef
0: FuncRef
SigRef(SigRef)
A function call signature.
Tuple Fields of SigRef
0: SigRef
Heap(Heap)
A heap.
Tuple Fields of Heap
0: Heap
Table(Table)
A table.
Tuple Fields of Table
0: Table
A function’s stack limit
Trait Implementations
Performs the conversion.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for AnyEntity
impl UnwindSafe for AnyEntity
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.