pub struct InvlpgbFlushBuilder<'a, S = Size4KiB>{ /* private fields */ }
Available on crate feature instructions only.
Expand description

A builder struct to construct the parameters for the invlpgb instruction.

Implementations§

source§

impl<'a, S> InvlpgbFlushBuilder<'a, S>

source

pub fn pages<T>(self, page_range: PageRange<T>) -> InvlpgbFlushBuilder<'a, T>

Flush a range of pages.

If the range doesn’t fit within invlpgb_count_max, invlpgb is executed multiple times.

source

pub unsafe fn pcid(&mut self, pcid: Pcid) -> &mut Self

Only flush TLB entries with the given PCID.

§Safety

The caller has to ensure that PCID is enabled in CR4 when the flush is executed.

source

pub unsafe fn asid( &mut self, asid: u16 ) -> Result<&mut Self, AsidOutOfRangeError>

Only flush TLB entries with the given ASID.

§Safety

The caller has to ensure that SVM is enabled in EFER when the flush is executed.

source

pub fn include_global(&mut self) -> &mut Self

Also flush global pages.

source

pub fn final_translation_only(&mut self) -> &mut Self

Only flush the final translation and not the cached upper level TLB entries.

source

pub fn include_nested_translations(self) -> Self

Also flush nestred translations that could be used for guest translation.

source

pub fn flush(&self)

Execute the flush.

Trait Implementations§

source§

impl<'a, S> Clone for InvlpgbFlushBuilder<'a, S>

source§

fn clone(&self) -> InvlpgbFlushBuilder<'a, S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, S> Debug for InvlpgbFlushBuilder<'a, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, S> Freeze for InvlpgbFlushBuilder<'a, S>

§

impl<'a, S> RefUnwindSafe for InvlpgbFlushBuilder<'a, S>
where S: RefUnwindSafe,

§

impl<'a, S> Send for InvlpgbFlushBuilder<'a, S>
where S: Send,

§

impl<'a, S> Sync for InvlpgbFlushBuilder<'a, S>
where S: Sync,

§

impl<'a, S> Unpin for InvlpgbFlushBuilder<'a, S>
where S: Unpin,

§

impl<'a, S> UnwindSafe for InvlpgbFlushBuilder<'a, S>
where S: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.