pub enum Amode<R: AsReg> {
ImmReg {
base: R,
simm32: AmodeOffsetPlusKnownOffset,
trap: Option<TrapCode>,
},
ImmRegRegShift {
base: R,
index: NonRspGpr<R>,
scale: Scale,
simm32: AmodeOffset,
trap: Option<TrapCode>,
},
RipRelative {
target: DeferredTarget,
},
}
Expand description
x64 memory addressing modes.
Variants§
Implementations§
Source§impl<R: AsReg> Amode<R>
impl<R: AsReg> Amode<R>
Sourcepub fn emit_rex_prefix(
&self,
rex: RexFlags,
enc_g: u8,
sink: &mut impl CodeSink,
)
pub fn emit_rex_prefix( &self, rex: RexFlags, enc_g: u8, sink: &mut impl CodeSink, )
Encode the Amode
into a ModRM/SIB/displacement sequence.
Sourcepub fn registers_mut(&mut self) -> Vec<&mut R>
pub fn registers_mut(&mut self) -> Vec<&mut R>
Return the registers used by this Amode
.
This is useful in generated code to allow access by a
RegisterVisitor
.
Trait Implementations§
Source§impl<'arbitrary, R: AsReg + Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for Amode<R>
impl<'arbitrary, R: AsReg + Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for Amode<R>
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreAuto Trait Implementations§
impl<R> Freeze for Amode<R>where
R: Freeze,
impl<R> RefUnwindSafe for Amode<R>where
R: RefUnwindSafe,
impl<R> Send for Amode<R>where
R: Send,
impl<R> Sync for Amode<R>where
R: Sync,
impl<R> Unpin for Amode<R>where
R: Unpin,
impl<R> UnwindSafe for Amode<R>where
R: UnwindSafe,
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