cranelift_codegen::isa::x64::encoding::rex

Struct RexFlags

Source
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

Source

pub fn set_w() -> Self

By default, set the W field, and don’t always emit.

Source

pub fn clear_w() -> Self

Creates a new RexPrefix for which the REX.W bit will be cleared.

Source

pub fn must_clear_w(&self) -> bool

True if 64-bit operands are used.

Source

pub fn always_emit(&mut self) -> &mut Self

Require that the REX prefix is emitted.

Source

pub fn must_always_emit(&self) -> bool

True if the REX prefix must always be emitted.

Source

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.

Source

pub fn emit_one_op<BS: ByteSink + ?Sized>(&self, sink: &mut BS, enc_e: u8)

Emit a unary instruction.

Source

pub fn emit_two_op<BS: ByteSink + ?Sized>( &self, sink: &mut BS, enc_g: u8, enc_e: u8, )

Emit a binary instruction.

Source

pub fn emit_three_op<BS: ByteSink + ?Sized>( &self, sink: &mut BS, enc_g: u8, enc_index: u8, enc_base: u8, )

Emit a ternary instruction.

Trait Implementations§

Source§

impl Clone for RexFlags

Source§

fn clone(&self) -> RexFlags

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl From<(OperandSize, Reg)> for RexFlags

Generate Rex flags for an OperandSize/register tuple.

Source§

fn from((size, reg): (OperandSize, Reg)) -> Self

Converts to this type from the input type.
Source§

impl From<OperandSize> for RexFlags

Generate the proper Rex flags for the given operand size.

Source§

fn from(size: OperandSize) -> Self

Converts to this type from the input type.
Source§

impl Copy for RexFlags

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.