pub enum AnyEntity {
Show 14 variants
Function,
Block(Block),
Inst(Inst),
Value(Value),
StackSlot(StackSlot),
DynamicStackSlot(DynamicStackSlot),
DynamicType(DynamicType),
GlobalValue(GlobalValue),
MemoryType(MemoryType),
JumpTable(JumpTable),
Constant(Constant),
FuncRef(FuncRef),
SigRef(SigRef),
StackLimit,
}
Expand description
An opaque reference to any of the entities defined in this module that can appear in CLIF IR.
Variants§
Function
The whole function.
Block(Block)
a basic block.
Inst(Inst)
An instruction.
Value(Value)
An SSA value.
StackSlot(StackSlot)
A stack slot.
DynamicStackSlot(DynamicStackSlot)
A dynamic stack slot.
DynamicType(DynamicType)
A dynamic type
GlobalValue(GlobalValue)
A Global value.
MemoryType(MemoryType)
A memory type.
JumpTable(JumpTable)
A jump table.
Constant(Constant)
A constant.
FuncRef(FuncRef)
An external function.
SigRef(SigRef)
A function call signature.
StackLimit
A function’s stack limit
Trait Implementations§
Source§impl From<DynamicStackSlot> for AnyEntity
impl From<DynamicStackSlot> for AnyEntity
Source§fn from(r: DynamicStackSlot) -> Self
fn from(r: DynamicStackSlot) -> Self
Converts to this type from the input type.
Source§impl From<DynamicType> for AnyEntity
impl From<DynamicType> for AnyEntity
Source§fn from(r: DynamicType) -> Self
fn from(r: DynamicType) -> Self
Converts to this type from the input type.
Source§impl From<GlobalValue> for AnyEntity
impl From<GlobalValue> for AnyEntity
Source§fn from(r: GlobalValue) -> Self
fn from(r: GlobalValue) -> Self
Converts to this type from the input type.
Source§impl From<MemoryType> for AnyEntity
impl From<MemoryType> for AnyEntity
Source§fn from(r: MemoryType) -> Self
fn from(r: MemoryType) -> Self
Converts to this type from the input type.
Source§impl Ord for AnyEntity
impl Ord for AnyEntity
Source§impl PartialOrd for AnyEntity
impl PartialOrd for AnyEntity
impl Copy for AnyEntity
impl Eq for AnyEntity
impl StructuralPartialEq for AnyEntity
Auto Trait Implementations§
impl Freeze for AnyEntity
impl RefUnwindSafe for AnyEntity
impl Send for AnyEntity
impl Sync for AnyEntity
impl Unpin for AnyEntity
impl UnwindSafe for AnyEntity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.