Struct cranelift_codegen::isa::registers::RegInfo[][src]

pub struct RegInfo {
    pub banks: &'static [RegBank],
    pub classes: &'static [RegClass],
}
Expand description

Information about the registers in an ISA.

The RegUnit data structure collects all relevant static information about the registers in an ISA.

Fields

banks: &'static [RegBank]

All register banks, ordered by their first_unit. The register banks are disjoint, but there may be holes of unused register unit numbers between banks due to alignment.

classes: &'static [RegClass]

All register classes ordered topologically so a sub-class always follows its parent.

Implementations

Get the register bank holding regunit.

Try to parse a regunit name. The name is not expected to begin with %.

Make a temporary object that can display a register unit.

Get the register class corresponding to idx.

Get the top-level register class containing the idx class.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.