Skip to main content

PostDominators

Struct PostDominators 

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

Which block every path to the exit has to pass through after leaving another.

Implementations§

Source§

impl PostDominators

Source

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

Builds the tree over the reversed graph.

§Panics

Panics if a block control reaches still has no path to the exit after the fake edges have been added, which would mean the answers below were arbitrary. Section 6.8 of the design asks for exactly this, on the grounds that a wrong answer here is worth turning into a crash.

Source

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

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

A block post-dominates itself. Both ends have to be blocks control reaches.

Source

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

The same, without a block post-dominating itself.

Source

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

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

None when the next thing on every path out is the end of the function, and for a block control does not reach.

Source

pub fn fake_exits(&self) -> &[Block]

The blocks an edge to the exit was invented for, because nothing led there from them.

A block is in here when it is the far end of an infinite loop. The list is public because a pass that reasons about paths should be able to tell that one of them was added by this analysis and is not a path the program can take.

Trait Implementations§

Source§

impl Clone for PostDominators

Source§

fn clone(&self) -> PostDominators

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 PostDominators

Source§

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

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

impl Eq for PostDominators

Source§

impl PartialEq for PostDominators

Source§

fn eq(&self, other: &PostDominators) -> 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 PostDominators

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.