Struct cranelift_codegen_meta::cdsl::operands::Operand

source ·
pub(crate) struct Operand {
    pub name: &'static str,
    pub kind: OperandKind,
    doc: Option<&'static str>,
}
Expand description

An instruction operand can be an immediate, an SSA value, or an entity reference. The type of the operand is one of:

  1. A ValueType instance indicates an SSA value operand with a concrete type.

  2. A TypeVar instance indicates an SSA value operand, and the instruction is polymorphic over the possible concrete types that the type variable can assume.

  3. An ImmediateKind instance indicates an immediate operand whose value is encoded in the instruction itself rather than being passed as an SSA value.

  4. An EntityRefKind instance indicates an operand that references another entity in the function, typically something declared in the function preamble.

Fields§

§name: &'static str

Name of the operand variable, as it appears in function parameters, legalizations, etc.

§kind: OperandKind

Type of the operand.

§doc: Option<&'static str>

Implementations§

source§

impl Operand

source

pub fn new(name: &'static str, kind: impl Into<OperandKind>) -> Self

source

pub fn with_doc(self, doc: &'static str) -> Self

source

pub fn doc(&self) -> &str

source

pub fn is_value(&self) -> bool

source

pub fn type_var(&self) -> Option<&TypeVar>

source

pub fn is_varargs(&self) -> bool

source

pub fn is_immediate_or_entityref(&self) -> bool

Returns true if the operand has an immediate kind or is an EntityRef.

source

pub fn is_immediate(&self) -> bool

Returns true if the operand has an immediate kind.

Trait Implementations§

source§

impl Clone for Operand

source§

fn clone(&self) -> Operand

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 Debug for Operand

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Operand

§

impl !RefUnwindSafe for Operand

§

impl !Send for Operand

§

impl !Sync for Operand

§

impl Unpin for Operand

§

impl !UnwindSafe for Operand

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