pub struct RexFlags(/* private fields */);
Available on crate feature
x86
only.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, reg: Reg) -> &mut Self
pub fn always_emit_if_8bit_needed(&mut self, reg: Reg) -> &mut Self
Emit the rex prefix if the referenced register would require it for 8-bit operations.
Sourcepub fn emit_one_op<BS: ByteSink + ?Sized>(&self, sink: &mut BS, enc_e: u8)
pub fn emit_one_op<BS: ByteSink + ?Sized>(&self, sink: &mut BS, enc_e: u8)
Emit a unary instruction.
Trait Implementations§
Source§impl From<(OperandSize, Reg)> for RexFlags
impl From<(OperandSize, Reg)> for RexFlags
Generate Rex flags for an OperandSize/register tuple.
Source§fn from((size, reg): (OperandSize, Reg)) -> Self
fn from((size, reg): (OperandSize, Reg)) -> Self
Converts to this type from the input type.
Source§impl From<OperandSize> for RexFlags
impl From<OperandSize> for RexFlags
Generate the proper Rex flags for the given operand size.
Source§fn from(size: OperandSize) -> Self
fn from(size: OperandSize) -> Self
Converts to this type from the input type.
impl Copy for RexFlags
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