[][src]Struct p8n_types::BasicBlock

pub struct BasicBlock {
    pub uuid: UUID,
    pub mnemonics: Range<MnemonicIndex>,
    pub node: NodeIndex,
    pub area: Area,
    pub statements: Range<usize>,
}

An uninterrupted sequence of machine code. Basic blocks cover a continuous address range.

Fields

uuid: UUID

Fixed UUID of this basic block. Never changes.

mnemonics: Range<MnemonicIndex>

Range of indices into the functions mnmonic list.

node: NodeIndex

Node this basic block occupies in the functions control flow graph.

area: Area

Bytes covered byte the basic block.

statements: Range<usize>

Range of indices into the functions IL statement list.

Methods

impl BasicBlock[src]

pub fn area<'a>(&'a self) -> &'a Area[src]

Address range covered.

Trait Implementations

impl<'a> IntoStatementRange for &'a BasicBlock[src]

impl Eq for BasicBlock[src]

impl Clone for BasicBlock[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<BasicBlock> for BasicBlock[src]

impl Debug for BasicBlock[src]

Auto Trait Implementations

impl Send for BasicBlock

impl Sync for BasicBlock

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]