pub enum Amode {
ImmReg {
simm32: u32,
base: Reg,
flags: MemFlags,
},
ImmRegRegShift {
simm32: u32,
base: Gpr,
index: Gpr,
shift: u8,
flags: MemFlags,
},
RipRelative {
target: MachLabel,
},
}
Expand description
Internal type Amode: defined at src/isa/x64/inst.isle line 832.
Variants§
Implementations§
Trait Implementations§
source§impl Into<SyntheticAmode> for Amode
impl Into<SyntheticAmode> for Amode
source§fn into(self) -> SyntheticAmode
fn into(self) -> SyntheticAmode
Converts this type into the (usually inferred) input type.