[][src]Struct llvm_scratch::core::basic_block::BasicBlock

pub struct BasicBlock {
    pub predecessor: Option<BasicBlockId>,
    pub kind: BasicBlockKind,
    // some fields omitted
}

An representation of LLVMBasicBlock. LLVMBasicBlock を表す構造体

Fields

predecessor: Option<BasicBlockId>kind: BasicBlockKind

Implementations

impl BasicBlock[src]

pub fn new(l: LLVMString, pred: Option<BasicBlockId>, k: BasicBlockKind) -> Self[src]

pub fn print_successors(
    &self,
    f: &mut Formatter,
    allocator: &Arena<BasicBlock>
) -> Result
[src]

pub fn get_label_ref(&self) -> &LLVMString[src]

get a reference of the bb's label

pub fn insts_empty(&self) -> bool[src]

whether the bb's instructions aren't there or not.

pub fn new_inst(&mut self, inst: Instruction) -> InstructionId[src]

Trait Implementations

impl Default for BasicBlock[src]

impl Display for BasicBlock[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> 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.