Enum move_ir_types::ast::Bytecode_
source · [−]pub enum Bytecode_ {
Show 62 variants
Pop,
Ret,
Nop(Option<NopLabel>),
BrTrue(BlockLabel_),
BrFalse(BlockLabel_),
Branch(BlockLabel_),
LdU8(u8),
LdU64(u64),
LdU128(u128),
CastU8,
CastU64,
CastU128,
LdTrue,
LdFalse,
LdConst(Type, MoveValue),
LdNamedConst(ConstantName),
CopyLoc(Var),
MoveLoc(Var),
StLoc(Var),
Call(ModuleName, FunctionName, Vec<Type>),
Pack(StructName, Vec<Type>),
Unpack(StructName, Vec<Type>),
ReadRef,
WriteRef,
FreezeRef,
MutBorrowLoc(Var),
ImmBorrowLoc(Var),
MutBorrowField(StructName, Vec<Type>, Field),
ImmBorrowField(StructName, Vec<Type>, Field),
MutBorrowGlobal(StructName, Vec<Type>),
ImmBorrowGlobal(StructName, Vec<Type>),
Add,
Sub,
Mul,
Mod,
Div,
BitOr,
BitAnd,
Xor,
Or,
And,
Not,
Eq,
Neq,
Lt,
Gt,
Le,
Ge,
Abort,
Exists(StructName, Vec<Type>),
MoveFrom(StructName, Vec<Type>),
MoveTo(StructName, Vec<Type>),
Shl,
Shr,
VecPack(Type, u64),
VecLen(Type),
VecImmBorrow(Type),
VecMutBorrow(Type),
VecPushBack(Type),
VecPopBack(Type),
VecUnpack(Type, u64),
VecSwap(Type),
}
Variants
Pop
Ret
Nop(Option<NopLabel>)
BrTrue(BlockLabel_)
BrFalse(BlockLabel_)
Branch(BlockLabel_)
LdU8(u8)
LdU64(u64)
LdU128(u128)
CastU8
CastU64
CastU128
LdTrue
LdFalse
LdConst(Type, MoveValue)
LdNamedConst(ConstantName)
CopyLoc(Var)
MoveLoc(Var)
StLoc(Var)
Call(ModuleName, FunctionName, Vec<Type>)
Pack(StructName, Vec<Type>)
Unpack(StructName, Vec<Type>)
ReadRef
WriteRef
FreezeRef
MutBorrowLoc(Var)
ImmBorrowLoc(Var)
MutBorrowField(StructName, Vec<Type>, Field)
ImmBorrowField(StructName, Vec<Type>, Field)
MutBorrowGlobal(StructName, Vec<Type>)
ImmBorrowGlobal(StructName, Vec<Type>)
Add
Sub
Mul
Mod
Div
BitOr
BitAnd
Xor
Or
And
Not
Eq
Neq
Lt
Gt
Le
Ge
Abort
Exists(StructName, Vec<Type>)
MoveFrom(StructName, Vec<Type>)
MoveTo(StructName, Vec<Type>)
Shl
Shr
VecPack(Type, u64)
VecLen(Type)
VecImmBorrow(Type)
VecMutBorrow(Type)
VecPushBack(Type)
VecPopBack(Type)
VecUnpack(Type, u64)
VecSwap(Type)
Trait Implementations
impl StructuralPartialEq for Bytecode_
Auto Trait Implementations
impl RefUnwindSafe for Bytecode_
impl Send for Bytecode_
impl Sync for Bytecode_
impl Unpin for Bytecode_
impl UnwindSafe for Bytecode_
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more