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

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 PartialEq for ProgramPoint
[src]

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

This method tests for !=.

impl Eq for ProgramPoint
[src]

impl Clone for ProgramPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ProgramPoint
[src]

impl From<Inst> for ProgramPoint
[src]

Performs the conversion.

impl From<Ebb> for ProgramPoint
[src]

Performs the conversion.

impl From<ValueDef> for ProgramPoint
[src]

Performs the conversion.

impl From<ProgramPoint> for ExpandedProgramPoint
[src]

Performs the conversion.

impl Display for ProgramPoint
[src]

Formats the value using the given formatter. Read more

impl Debug for ProgramPoint
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations