[][src]Struct cranelift_codegen::ir::ProgramPoint

pub struct ProgramPoint(_);

A ProgramPoint represents a position in a function where the live range of an SSA value can begin or end. It can be either:

  1. An instruction or
  2. An EBB header.

This corresponds more or less to the lines in the textual form of Cranelift IR.

Trait Implementations

impl From<Inst> for ProgramPoint[src]

impl From<Ebb> for ProgramPoint[src]

impl From<ValueDef> for ProgramPoint[src]

impl From<ProgramPoint> for ExpandedProgramPoint[src]

impl PartialEq<ProgramPoint> for ProgramPoint[src]

impl Eq for ProgramPoint[src]

impl Display for ProgramPoint[src]

impl Debug for ProgramPoint[src]

impl Copy for ProgramPoint[src]

impl Clone for ProgramPoint[src]

Auto Trait Implementations

Blanket Implementations

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

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.

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

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.

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.