Struct cretonne_codegen::isa::OperandConstraint [] [src]

pub struct OperandConstraint {
    pub kind: ConstraintKind,
    pub regclass: RegClass,
}

Register constraint for a single value operand or instruction result.

Fields

The kind of constraint.

The register class of the operand.

This applies to all kinds of constraints, but with slightly different meaning.

Methods

impl OperandConstraint
[src]

[src]

Check 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]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for OperandConstraint
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations