Skip to main content

Dominators

Struct Dominators 

Source
pub struct Dominators { /* private fields */ }
Expand description

Which block every path from the entry has to pass through to reach another.

Implementations§

Source§

impl Dominators

Source

pub fn new(cfg: &Cfg) -> Self

Builds the tree from the graph.

A function with no blocks gives a tree that reaches nothing, and every query against it answers no, which is what a caller handed a declaration should see.

Source

pub fn dominates(&self, of: Block, block: Block) -> bool

Whether every path from the entry to block goes through of.

A block dominates itself. Both ends have to be blocks control reaches, and an unreachable one dominates nothing and is dominated by nothing.

Source

pub fn strictly_dominates(&self, of: Block, block: Block) -> bool

The same, without a block dominating itself.

Source

pub fn immediate_dominator(&self, block: Block) -> Option<Block>

The nearest block that dominates this one and is not it.

None for the entry, which has no dominator above it, and for a block control does not reach.

Source

pub fn children(&self, block: Block) -> impl Iterator<Item = Block> + use<'_>

The blocks whose immediate dominator is this one.

Walking these from the entry is how a pass visits a function in dominator tree order, which is the order that has every definition in hand before any use of it.

Source

pub fn nearest_common_dominator(&self, a: Block, b: Block) -> Option<Block>

The nearest block that dominates both, which is the entry at worst.

None when either block is one control does not reach.

Trait Implementations§

Source§

impl Clone for Dominators

Source§

fn clone(&self) -> Dominators

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Dominators

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Dominators

Source§

impl PartialEq for Dominators

Source§

fn eq(&self, other: &Dominators) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Dominators

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.