Struct cranelift_codegen::binemit::RegDiversions[][src]

pub struct RegDiversions { /* fields omitted */ }
Expand description

Keep track of diversions in a block.

Implementations

impl RegDiversions[src]

pub fn new() -> Self[src]

Create a new empty diversion tracker.

pub fn clear(&mut self)[src]

Clear the content of the diversions, to reset the state of the compiler.

pub fn is_empty(&self) -> bool[src]

Are there any diversions?

pub fn diversion(&self, value: Value) -> Option<&Diversion>[src]

Get the current diversion of value, if any.

pub fn iter(&self) -> Iter<'_, Value, Diversion>[src]

Get all current diversions.

pub fn get(&self, value: Value, locations: &ValueLocations) -> ValueLoc[src]

Get the current location for value. Fall back to the assignment map for non-diverted values

pub fn reg(&self, value: Value, locations: &ValueLocations) -> RegUnit[src]

Get the current register location for value, or panic if value isn’t in a register.

pub fn stack(&self, value: Value, locations: &ValueLocations) -> StackSlot[src]

Get the current stack location for value, or panic if value isn’t in a stack slot.

pub fn regmove(&mut self, value: Value, from: RegUnit, to: RegUnit)[src]

Record a register -> register move.

pub fn regspill(&mut self, value: Value, from: RegUnit, to: StackSlot)[src]

Record a register -> stack move.

pub fn regfill(&mut self, value: Value, from: StackSlot, to: RegUnit)[src]

Record a stack -> register move.

pub fn apply(&mut self, inst: &InstructionData)[src]

Apply the effect of inst.

If inst is a regmove, regfill, or regspill instruction, update the diversions to match.

pub fn remove(&mut self, value: Value) -> Option<ValueLoc>[src]

Drop any recorded move for value.

Returns the to location of the removed diversion.

pub fn at_block(&mut self, entry_diversions: &EntryRegDiversions, block: Block)[src]

Resets the state of the current diversions to the recorded diversions at the entry of the given block. The recoded diversions is available after coloring on func.entry_diversions field.

pub fn save_for_block(
    &mut self,
    entry_diversions: &mut EntryRegDiversions,
    target: Block
)
[src]

Copy the current state of the diversions, and save it for the entry of the block given as argument.

Note: This function can only be called once on a Block with a given entry_diversions argument, otherwise it would panic.

pub fn check_block_entry(
    &self,
    entry_diversions: &EntryRegDiversions,
    target: Block
) -> bool
[src]

Check that the recorded entry for a given block matches what is recorded in the entry_diversions.

pub fn display<'a, R: Into<Option<&'a RegInfo>>>(
    &'a self,
    regs: R
) -> DisplayDiversions<'a>
[src]

Return an object that can display the diversions.

Trait Implementations

impl Clone for RegDiversions[src]

fn clone(&self) -> RegDiversions[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.