pub enum MediumLevelILLiftedInstructionKind {
Show 130 variants
Nop,
Noret,
Bp,
Undef,
Unimpl,
If(LiftedIf),
FloatConst(FloatConst),
Const(Constant),
ConstPtr(Constant),
Import(Constant),
ExternPtr(ExternPtr),
ConstData(LiftedConstData),
Jump(LiftedJump),
RetHint(LiftedJump),
StoreSsa(LiftedStoreSsa),
StoreStructSsa(LiftedStoreStructSsa),
StoreStruct(LiftedStoreStruct),
Store(LiftedStore),
JumpTo(LiftedJumpTo),
Goto(Goto),
FreeVarSlot(FreeVarSlot),
SetVarField(LiftedSetVarField),
SetVar(LiftedSetVar),
FreeVarSlotSsa(FreeVarSlotSsa),
SetVarSsaField(LiftedSetVarSsaField),
SetVarAliasedField(LiftedSetVarSsaField),
SetVarAliased(LiftedSetVarAliased),
SetVarSsa(LiftedSetVarSsa),
VarPhi(LiftedVarPhi),
MemPhi(LiftedMemPhi),
VarSplit(VarSplit),
SetVarSplit(LiftedSetVarSplit),
VarSplitSsa(VarSplitSsa),
SetVarSplitSsa(LiftedSetVarSplitSsa),
Add(LiftedBinaryOp),
Sub(LiftedBinaryOp),
And(LiftedBinaryOp),
Or(LiftedBinaryOp),
Xor(LiftedBinaryOp),
Lsl(LiftedBinaryOp),
Lsr(LiftedBinaryOp),
Asr(LiftedBinaryOp),
Rol(LiftedBinaryOp),
Ror(LiftedBinaryOp),
Mul(LiftedBinaryOp),
MuluDp(LiftedBinaryOp),
MulsDp(LiftedBinaryOp),
Divu(LiftedBinaryOp),
DivuDp(LiftedBinaryOp),
Divs(LiftedBinaryOp),
DivsDp(LiftedBinaryOp),
Modu(LiftedBinaryOp),
ModuDp(LiftedBinaryOp),
Mods(LiftedBinaryOp),
ModsDp(LiftedBinaryOp),
CmpE(LiftedBinaryOp),
CmpNe(LiftedBinaryOp),
CmpSlt(LiftedBinaryOp),
CmpUlt(LiftedBinaryOp),
CmpSle(LiftedBinaryOp),
CmpUle(LiftedBinaryOp),
CmpSge(LiftedBinaryOp),
CmpUge(LiftedBinaryOp),
CmpSgt(LiftedBinaryOp),
CmpUgt(LiftedBinaryOp),
TestBit(LiftedBinaryOp),
AddOverflow(LiftedBinaryOp),
FcmpE(LiftedBinaryOp),
FcmpNe(LiftedBinaryOp),
FcmpLt(LiftedBinaryOp),
FcmpLe(LiftedBinaryOp),
FcmpGe(LiftedBinaryOp),
FcmpGt(LiftedBinaryOp),
FcmpO(LiftedBinaryOp),
FcmpUo(LiftedBinaryOp),
Fadd(LiftedBinaryOp),
Fsub(LiftedBinaryOp),
Fmul(LiftedBinaryOp),
Fdiv(LiftedBinaryOp),
Adc(LiftedBinaryOpCarry),
Sbb(LiftedBinaryOpCarry),
Rlc(LiftedBinaryOpCarry),
Rrc(LiftedBinaryOpCarry),
Call(LiftedCall),
Tailcall(LiftedCall),
Intrinsic(LiftedIntrinsic),
Syscall(LiftedSyscallCall),
IntrinsicSsa(LiftedIntrinsicSsa),
CallSsa(LiftedCallSsa),
TailcallSsa(LiftedCallSsa),
CallUntypedSsa(LiftedCallUntypedSsa),
TailcallUntypedSsa(LiftedCallUntypedSsa),
SyscallSsa(LiftedSyscallSsa),
SyscallUntypedSsa(LiftedSyscallUntypedSsa),
CallUntyped(LiftedCallUntyped),
TailcallUntyped(LiftedCallUntyped),
SyscallUntyped(LiftedSyscallUntyped),
SeparateParamList(LiftedSeparateParamList),
SharedParamSlot(LiftedSharedParamSlot),
Neg(LiftedUnaryOp),
Not(LiftedUnaryOp),
Sx(LiftedUnaryOp),
Zx(LiftedUnaryOp),
LowPart(LiftedUnaryOp),
BoolToInt(LiftedUnaryOp),
UnimplMem(LiftedUnaryOp),
Fsqrt(LiftedUnaryOp),
Fneg(LiftedUnaryOp),
Fabs(LiftedUnaryOp),
FloatToInt(LiftedUnaryOp),
IntToFloat(LiftedUnaryOp),
FloatConv(LiftedUnaryOp),
RoundToInt(LiftedUnaryOp),
Floor(LiftedUnaryOp),
Ceil(LiftedUnaryOp),
Ftrunc(LiftedUnaryOp),
Load(LiftedUnaryOp),
LoadStruct(LiftedLoadStruct),
LoadStructSsa(LiftedLoadStructSsa),
LoadSsa(LiftedLoadSsa),
Ret(LiftedRet),
Var(Var),
AddressOf(Var),
VarField(Field),
AddressOfField(Field),
VarSsa(VarSsa),
VarAliased(VarSsa),
VarSsaField(VarSsaField),
VarAliasedField(VarSsaField),
Trap(Trap),
}
Variants§
Nop
Noret
Bp
Undef
Unimpl
If(LiftedIf)
FloatConst(FloatConst)
Const(Constant)
ConstPtr(Constant)
Import(Constant)
ExternPtr(ExternPtr)
ConstData(LiftedConstData)
Jump(LiftedJump)
RetHint(LiftedJump)
StoreSsa(LiftedStoreSsa)
StoreStructSsa(LiftedStoreStructSsa)
StoreStruct(LiftedStoreStruct)
Store(LiftedStore)
JumpTo(LiftedJumpTo)
Goto(Goto)
FreeVarSlot(FreeVarSlot)
SetVarField(LiftedSetVarField)
SetVar(LiftedSetVar)
FreeVarSlotSsa(FreeVarSlotSsa)
SetVarSsaField(LiftedSetVarSsaField)
SetVarAliasedField(LiftedSetVarSsaField)
SetVarAliased(LiftedSetVarAliased)
SetVarSsa(LiftedSetVarSsa)
VarPhi(LiftedVarPhi)
MemPhi(LiftedMemPhi)
VarSplit(VarSplit)
SetVarSplit(LiftedSetVarSplit)
VarSplitSsa(VarSplitSsa)
SetVarSplitSsa(LiftedSetVarSplitSsa)
Add(LiftedBinaryOp)
Sub(LiftedBinaryOp)
And(LiftedBinaryOp)
Or(LiftedBinaryOp)
Xor(LiftedBinaryOp)
Lsl(LiftedBinaryOp)
Lsr(LiftedBinaryOp)
Asr(LiftedBinaryOp)
Rol(LiftedBinaryOp)
Ror(LiftedBinaryOp)
Mul(LiftedBinaryOp)
MuluDp(LiftedBinaryOp)
MulsDp(LiftedBinaryOp)
Divu(LiftedBinaryOp)
DivuDp(LiftedBinaryOp)
Divs(LiftedBinaryOp)
DivsDp(LiftedBinaryOp)
Modu(LiftedBinaryOp)
ModuDp(LiftedBinaryOp)
Mods(LiftedBinaryOp)
ModsDp(LiftedBinaryOp)
CmpE(LiftedBinaryOp)
CmpNe(LiftedBinaryOp)
CmpSlt(LiftedBinaryOp)
CmpUlt(LiftedBinaryOp)
CmpSle(LiftedBinaryOp)
CmpUle(LiftedBinaryOp)
CmpSge(LiftedBinaryOp)
CmpUge(LiftedBinaryOp)
CmpSgt(LiftedBinaryOp)
CmpUgt(LiftedBinaryOp)
TestBit(LiftedBinaryOp)
AddOverflow(LiftedBinaryOp)
FcmpE(LiftedBinaryOp)
FcmpNe(LiftedBinaryOp)
FcmpLt(LiftedBinaryOp)
FcmpLe(LiftedBinaryOp)
FcmpGe(LiftedBinaryOp)
FcmpGt(LiftedBinaryOp)
FcmpO(LiftedBinaryOp)
FcmpUo(LiftedBinaryOp)
Fadd(LiftedBinaryOp)
Fsub(LiftedBinaryOp)
Fmul(LiftedBinaryOp)
Fdiv(LiftedBinaryOp)
Adc(LiftedBinaryOpCarry)
Sbb(LiftedBinaryOpCarry)
Rlc(LiftedBinaryOpCarry)
Rrc(LiftedBinaryOpCarry)
Call(LiftedCall)
Tailcall(LiftedCall)
Intrinsic(LiftedIntrinsic)
Syscall(LiftedSyscallCall)
IntrinsicSsa(LiftedIntrinsicSsa)
CallSsa(LiftedCallSsa)
TailcallSsa(LiftedCallSsa)
CallUntypedSsa(LiftedCallUntypedSsa)
TailcallUntypedSsa(LiftedCallUntypedSsa)
SyscallSsa(LiftedSyscallSsa)
SyscallUntypedSsa(LiftedSyscallUntypedSsa)
CallUntyped(LiftedCallUntyped)
TailcallUntyped(LiftedCallUntyped)
SyscallUntyped(LiftedSyscallUntyped)
SeparateParamList(LiftedSeparateParamList)
Neg(LiftedUnaryOp)
Not(LiftedUnaryOp)
Sx(LiftedUnaryOp)
Zx(LiftedUnaryOp)
LowPart(LiftedUnaryOp)
BoolToInt(LiftedUnaryOp)
UnimplMem(LiftedUnaryOp)
Fsqrt(LiftedUnaryOp)
Fneg(LiftedUnaryOp)
Fabs(LiftedUnaryOp)
FloatToInt(LiftedUnaryOp)
IntToFloat(LiftedUnaryOp)
FloatConv(LiftedUnaryOp)
RoundToInt(LiftedUnaryOp)
Floor(LiftedUnaryOp)
Ceil(LiftedUnaryOp)
Ftrunc(LiftedUnaryOp)
Load(LiftedUnaryOp)
LoadStruct(LiftedLoadStruct)
LoadStructSsa(LiftedLoadStructSsa)
LoadSsa(LiftedLoadSsa)
Ret(LiftedRet)
Var(Var)
AddressOf(Var)
VarField(Field)
AddressOfField(Field)
VarSsa(VarSsa)
VarAliased(VarSsa)
VarSsaField(VarSsaField)
VarAliasedField(VarSsaField)
Trap(Trap)
Trait Implementations§
source§impl Clone for MediumLevelILLiftedInstructionKind
impl Clone for MediumLevelILLiftedInstructionKind
source§fn clone(&self) -> MediumLevelILLiftedInstructionKind
fn clone(&self) -> MediumLevelILLiftedInstructionKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for MediumLevelILLiftedInstructionKind
impl PartialEq for MediumLevelILLiftedInstructionKind
source§fn eq(&self, other: &MediumLevelILLiftedInstructionKind) -> bool
fn eq(&self, other: &MediumLevelILLiftedInstructionKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MediumLevelILLiftedInstructionKind
Auto Trait Implementations§
impl RefUnwindSafe for MediumLevelILLiftedInstructionKind
impl !Send for MediumLevelILLiftedInstructionKind
impl !Sync for MediumLevelILLiftedInstructionKind
impl Unpin for MediumLevelILLiftedInstructionKind
impl UnwindSafe for MediumLevelILLiftedInstructionKind
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