Struct MemoryAccessAnalysis
pub struct MemoryAccessAnalysis;
Expand description
Infers the MemoryAccesses
for an Instruction
.
Implementations§
§impl MemoryAccessAnalysis
impl MemoryAccessAnalysis
pub fn infer_quick<A: Arch, O: Oracle<A>>( o: &mut O, instr: &Instruction, ) -> Result<MemoryAccesses<A>, AccessAnalysisError<A>>
pub fn infer<A: Arch, O: Oracle<A>>( o: &mut O, instr: &Instruction, ) -> Result<MemoryAccesses<A>, AccessAnalysisError<A>>
Auto Trait Implementations§
impl Freeze for MemoryAccessAnalysis
impl RefUnwindSafe for MemoryAccessAnalysis
impl Send for MemoryAccessAnalysis
impl Sync for MemoryAccessAnalysis
impl Unpin for MemoryAccessAnalysis
impl UnwindSafe for MemoryAccessAnalysis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more