[][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.

Implementations

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_unit(&mut self, unit: Unit<'_>)[src]

Verify the integrity of a UnitData.

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, unit: Unit<'_>)[src]

Verify the integrity of a single instruction.

Trait Implementations

impl Default for Verifier[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, 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.