[][src]Struct llhd::verifier::Verifier

pub struct Verifier { /* fields omitted */ }

An IR verifier.

The Verifier acts as a context to call the various IR checking functions on. It keeps track of errors.

Methods

impl Verifier[src]

pub fn new() -> Self[src]

Create a new verifier.

pub fn verify_module(&mut self, module: &Module)[src]

Verify the integrity of a Module.

pub fn verify_function(&mut self, func: &Function)[src]

Verify the integrity of a Function.

pub fn verify_process(&mut self, prok: &Process)[src]

Verify the integrity of a Process.

pub fn verify_entity(&mut self, ent: &Entity)[src]

Verify the integrity of an Entity.

pub fn verify_function_layout(
    &mut self,
    layout: &FunctionLayout,
    dfg: &DataFlowGraph,
    cfg: &ControlFlowGraph
)
[src]

Verify the integrity of the BB and instruction layout.

pub fn verify_inst_layout(
    &mut self,
    layout: &InstLayout,
    dfg: &DataFlowGraph,
    cfg: Option<&ControlFlowGraph>
)
[src]

Verify the integrity of the instruction layout.

pub fn finish(self) -> Result<(), VerifierErrors>[src]

Finish verification and return the result.

Consumes the verifier.

pub fn finish_panic(self)[src]

Finish verification and panic if errors occurred.

Consumes the verifier.

pub fn verify_inst(
    &mut self,
    inst: Inst,
    dfg: &DataFlowGraph,
    cfg: Option<&ControlFlowGraph>
)
[src]

Verify the integrity of a single instruction.

Trait Implementations

impl Default for Verifier[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[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.

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

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

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