Struct cranelift_codegen::isa::OperandConstraint [−][src]
pub struct OperandConstraint {
pub kind: ConstraintKind,
pub regclass: RegClass,
}Register constraint for a single value operand or instruction result.
Fields
kind: ConstraintKind
The kind of constraint.
regclass: RegClass
The register class of the operand.
This applies to all kinds of constraints, but with slightly different meaning.
Methods
impl OperandConstraint[src]
impl OperandConstraintpub fn satisfied(&self, loc: ValueLoc) -> bool[src]
pub fn satisfied(&self, loc: ValueLoc) -> boolCheck if this operand constraint is satisfied by the given value location. For tied constraints, this only checks the register class, not that the counterpart operand has the same value location.
Trait Implementations
impl PartialEq for OperandConstraint[src]
impl PartialEq for OperandConstraintfn eq(&self, other: &OperandConstraint) -> bool[src]
fn eq(&self, other: &OperandConstraint) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &OperandConstraint) -> bool[src]
fn ne(&self, other: &OperandConstraint) -> boolThis method tests for !=.
impl Debug for OperandConstraint[src]
impl Debug for OperandConstraintAuto Trait Implementations
impl Send for OperandConstraint
impl Send for OperandConstraintimpl Sync for OperandConstraint
impl Sync for OperandConstraint