Struct GpRegJitState
pub struct GpRegJitState<'a, A: Arch> { /* private fields */ }
Expand description
A just-in-time CPU state that replaces one or more general-purpose registers with the correct values.
Implementations§
§impl<'a, A: Arch> GpRegJitState<'a, A>
impl<'a, A: Arch> GpRegJitState<'a, A>
pub fn build<'s, M: MappableArea>(
base_state: &SystemState<A>,
state_gen: &'s StateGen<'a, A, M>,
) -> GpRegJitStateBuilder<'a, 's, A, M>
pub fn build<'s, M: MappableArea>( base_state: &SystemState<A>, state_gen: &'s StateGen<'a, A, M>, ) -> GpRegJitStateBuilder<'a, 's, A, M>
Creates a new builder.
The GpRegJitStateBuilder::create
method can be invoked multiple times to create multiple states that all use the same provided base state.
Trait Implementations§
§impl<A: Arch> AsSystemState<A> for GpRegJitState<'_, A>
impl<A: Arch> AsSystemState<A> for GpRegJitState<'_, A>
§type Output<'a> = GpRegStateRef<'a, A>
where
Self: 'a
type Output<'a> = GpRegStateRef<'a, A> where Self: 'a
The output type of
Self::as_system_state
.§fn as_system_state(&self) -> Self::Output<'_>
fn as_system_state(&self) -> Self::Output<'_>
Returns a type that implements
AsRef<SystemState<A>>
.
Should be a cheap operation, as it may be called often.§fn num_memory_mappings(&self) -> usize
fn num_memory_mappings(&self) -> usize
Returns the number of memory mappings in the state that
Self::as_system_state
will return.§impl<'a, A: Clone + Arch> Clone for GpRegJitState<'a, A>
impl<'a, A: Clone + Arch> Clone for GpRegJitState<'a, A>
§fn clone(&self) -> GpRegJitState<'a, A>
fn clone(&self) -> GpRegJitState<'a, A>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a, A> Freeze for GpRegJitState<'a, A>
impl<'a, A> !RefUnwindSafe for GpRegJitState<'a, A>
impl<'a, A> !Send for GpRegJitState<'a, A>
impl<'a, A> !Sync for GpRegJitState<'a, A>
impl<'a, A> Unpin for GpRegJitState<'a, A>
impl<'a, A> !UnwindSafe for GpRegJitState<'a, A>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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