pub struct RexFlags(/* private fields */);
Expand description
A small bit field to record a REX prefix specification:
- bit 0 set to 1 indicates REX.W must be 0 (cleared).
- bit 1 set to 1 indicates the REX prefix must always be emitted.
Implementations§
Source§impl RexFlags
impl RexFlags
Sourcepub fn must_clear_w(self) -> bool
pub fn must_clear_w(self) -> bool
True if 64-bit operands are used.
Sourcepub fn always_emit(&mut self) -> &mut Self
pub fn always_emit(&mut self) -> &mut Self
Require that the REX prefix is emitted.
Sourcepub fn must_always_emit(self) -> bool
pub fn must_always_emit(self) -> bool
True if the REX prefix must always be emitted.
Sourcepub fn always_emit_if_8bit_needed(&mut self, enc: u8)
pub fn always_emit_if_8bit_needed(&mut self, enc: u8)
Force emission of the REX byte if the register is: rsp
, rbp
, rsi
,
rdi
.
Sourcepub fn emit_one_op(self, sink: &mut impl CodeSink, enc_e: u8)
pub fn emit_one_op(self, sink: &mut impl CodeSink, enc_e: u8)
Emit a unary instruction.
Sourcepub fn emit_two_op(self, sink: &mut impl CodeSink, enc_g: u8, enc_e: u8)
pub fn emit_two_op(self, sink: &mut impl CodeSink, enc_g: u8, enc_e: u8)
Emit a binary instruction.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RexFlags
impl RefUnwindSafe for RexFlags
impl Send for RexFlags
impl Sync for RexFlags
impl Unpin for RexFlags
impl UnwindSafe for RexFlags
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