Struct cranelift_codegen::isa::x64::encoding::rex::RexFlags

source ·
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

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 always_emit(&mut self) -> &mut Self

Require that the REX prefix is 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 must_clear_w(&self) -> bool

True if 64-bit operands are used.

source

pub fn must_always_emit(&self) -> bool

True if the REX prefix must always be emitted.

source

pub fn emit_one_op(&self, sink: &mut MachBuffer<Inst>, enc_e: u8)

Emit a unary instruction.

source

pub fn emit_two_op(&self, sink: &mut MachBuffer<Inst>, enc_g: u8, enc_e: u8)

Emit a binary instruction.

source

pub fn emit_three_op( &self, sink: &mut MachBuffer<Inst>, 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> 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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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.