Struct isla_axiomatic::litmus::Litmus[][src]

pub struct Litmus<B> {
    pub name: String,
    pub hash: Option<String>,
    pub symbolic_addrs: HashMap<String, u64>,
    pub symbolic_locations: HashMap<String, u64>,
    pub symbolic_sizeof: HashMap<String, u32>,
    pub assembled: Vec<AssembledThread<B>>,
    pub sections: Vec<(u64, Vec<u8>)>,
    pub self_modify_regions: Vec<Region<B>>,
    pub objdump: String,
    pub final_assertion: Exp,
}

Fields

name: Stringhash: Option<String>symbolic_addrs: HashMap<String, u64>symbolic_locations: HashMap<String, u64>symbolic_sizeof: HashMap<String, u32>assembled: Vec<AssembledThread<B>>sections: Vec<(u64, Vec<u8>)>self_modify_regions: Vec<Region<B>>objdump: Stringfinal_assertion: Exp

Implementations

impl<B: BV> Litmus<B>[src]

pub fn log(&self)[src]

pub fn parse(
    contents: &str,
    symtab: &Symtab<'_>,
    isa: &ISAConfig<B>
) -> Result<Self, String>
[src]

pub fn from_file<P>(
    path: P,
    symtab: &Symtab<'_>,
    isa: &ISAConfig<B>
) -> Result<Self, String> where
    P: AsRef<Path>, 
[src]

Auto Trait Implementations

impl<B> !RefUnwindSafe for Litmus<B>

impl<B> Send for Litmus<B>

impl<B> Sync for Litmus<B>

impl<B> Unpin for Litmus<B>

impl<B> !UnwindSafe for Litmus<B>

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> Same<T> for T

type Output = T

Should always be Self

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.