Struct VirtAddr

Source
pub struct VirtAddr(/* private fields */);
Expand description

A canonical 64-bit virtual memory address.

This is a wrapper type around an u64, so it is always 8 bytes, even when compiled on non 64-bit systems. The TryFrom trait can be used for performing conversions between u64 and usize.

On x86_64, only the 48 lower bits of a virtual address can be used. The top 16 bits need to be copies of bit 47, i.e. the most significant bit. Addresses that fulfil this criterion are called “canonical”. This type guarantees that it always represents a canonical address.

Implementations§

Source§

impl VirtAddr

Source

pub const unsafe fn new_unsafe(addr: u64) -> VirtAddr

Creates a new address, without any checks.

§Safety

If addr does not comply with the platforms requirements for this address type, this can lead to UB in functions relying on the compliance or when using the requirements.

Source

pub const fn is_null(self) -> bool

Convenience method for checking if an address is null.

Source

pub const fn zero() -> VirtAddr

Creates an address that points to 0.

Source

pub const fn as_u64(self) -> u64

Converts the address to an u64.

Source§

impl VirtAddr

Source

pub const fn new(addr: u64) -> VirtAddr

Creates a new canonical virtual address.

The provided address should already be canonical. If you want to check whether an address is canonical, use try_new.

§Panics

This function panics if the bits in the range 48 to 64 are invalid (i.e. are not a proper sign extension of bit 47).

Source

pub const fn try_new(addr: u64) -> Result<VirtAddr, VirtAddrNotValid>

Tries to create a new canonical virtual address.

This function checks wether the given address is canonical and returns an error otherwise. An address is canonical if bits 48 to 64 are a correct sign extension (i.e. copies of bit 47).

Source

pub const fn new_truncate(addr: u64) -> VirtAddr

Creates a new canonical virtual address, throwing out bits 48..64.

This function performs sign extension of bit 47 to make the address canonical, overwriting bits 48 to 64. If you want to check whether an address is canonical, use new or try_new.

Source

pub fn from_ptr<T>(ptr: *const T) -> VirtAddr
where T: ?Sized,

Creates a virtual address from the given pointer

Source

pub const fn as_ptr<T>(self) -> *const T

Converts the address to a raw pointer.

Source

pub const fn as_mut_ptr<T>(self) -> *mut T

Converts the address to a mutable raw pointer.

Source

pub const fn as_usize(&self) -> usize

Source

pub fn is_aligned(self, align: u64) -> bool

Checks whether the virtual address has the demanded alignment.

Source

pub const fn page_offset(self) -> PageOffset

Returns the 12-bit page offset of this virtual address.

Source

pub const fn p1_index(self) -> PageTableIndex

Returns the 9-bit level 1 page table index.

Source

pub const fn p2_index(self) -> PageTableIndex

Returns the 9-bit level 2 page table index.

Source

pub const fn p3_index(self) -> PageTableIndex

Returns the 9-bit level 3 page table index.

Source

pub const fn p4_index(self) -> PageTableIndex

Returns the 9-bit level 4 page table index.

Source

pub const fn page_table_index(self, level: PageTableLevel) -> PageTableIndex

Returns the 9-bit level page table index.

Trait Implementations§

Source§

impl Add<u64> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> <VirtAddr as Add<u64>>::Output

Performs the + operation. Read more
Source§

impl Add<usize> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> <VirtAddr as Add<usize>>::Output

Performs the + operation. Read more
Source§

impl AddAssign<u64> for VirtAddr

Source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for VirtAddr

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl Align<u64> for VirtAddr

Source§

fn align_down(self, align: u64) -> VirtAddr

Align address downwards. Read more
Source§

fn align_up(self, align: u64) -> VirtAddr

Align address upwards. Read more
Source§

fn is_aligned_to(self, align: A) -> bool

Checks whether the address has the demanded alignment.
Source§

impl Binary for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl BitAnd<u64> for VirtAddr

Source§

type Output = u64

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: u64) -> <VirtAddr as BitAnd<u64>>::Output

Performs the & operation. Read more
Source§

impl BitAndAssign<u64> for VirtAddr

Source§

fn bitand_assign(&mut self, rhs: u64)

Performs the &= operation. Read more
Source§

impl BitOr<u64> for VirtAddr

Source§

type Output = u64

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: u64) -> <VirtAddr as BitOr<u64>>::Output

Performs the | operation. Read more
Source§

impl BitOrAssign<u64> for VirtAddr

Source§

fn bitor_assign(&mut self, rhs: u64)

Performs the |= operation. Read more
Source§

impl BitXor<u64> for VirtAddr

Source§

type Output = u64

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: u64) -> <VirtAddr as BitXor<u64>>::Output

Performs the ^ operation. Read more
Source§

impl BitXorAssign<u64> for VirtAddr

Source§

fn bitxor_assign(&mut self, rhs: u64)

Performs the ^= operation. Read more
Source§

impl Clone for VirtAddr

Source§

fn clone(&self) -> VirtAddr

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 Debug for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl From<&VirtAddr> for VirtAddr

Source§

fn from(addr: &VirtAddr) -> VirtAddr

Converts to this type from the input type.
Source§

impl From<VirtAddr> for VirtAddr

Source§

fn from(addr: VirtAddr) -> VirtAddr

Converts to this type from the input type.
Source§

impl From<u64> for VirtAddr

Source§

fn from(addr: u64) -> VirtAddr

Converts to this type from the input type.
Source§

impl From<usize> for VirtAddr

Source§

fn from(addr: usize) -> VirtAddr

Converts to this type from the input type.
Source§

impl Hash for VirtAddr

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LowerHex for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl MemoryAddress for VirtAddr

Source§

type RAW = u64

Inner address type
Source§

fn raw(self) -> <VirtAddr as MemoryAddress>::RAW

Get the raw underlying address value.
Source§

impl Octal for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Ord for VirtAddr

Source§

fn cmp(&self, other: &VirtAddr) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for VirtAddr

Source§

fn eq(&self, other: &VirtAddr) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for VirtAddr

Source§

fn partial_cmp(&self, other: &VirtAddr) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Pointer for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Shl<usize> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: usize) -> <VirtAddr as Shl<usize>>::Output

Performs the << operation. Read more
Source§

impl ShlAssign<usize> for VirtAddr

Source§

fn shl_assign(&mut self, rhs: usize)

Performs the <<= operation. Read more
Source§

impl Shr<usize> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: usize) -> <VirtAddr as Shr<usize>>::Output

Performs the >> operation. Read more
Source§

impl ShrAssign<usize> for VirtAddr

Source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
Source§

impl Sub<u64> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> <VirtAddr as Sub<u64>>::Output

Performs the - operation. Read more
Source§

impl Sub<usize> for VirtAddr

Source§

type Output = VirtAddr

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> <VirtAddr as Sub<usize>>::Output

Performs the - operation. Read more
Source§

impl Sub for VirtAddr

Source§

type Output = u64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: VirtAddr) -> <VirtAddr as Sub>::Output

Performs the - operation. Read more
Source§

impl SubAssign<u64> for VirtAddr

Source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for VirtAddr

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl UpperHex for VirtAddr

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Copy for VirtAddr

Source§

impl Eq for VirtAddr

Source§

impl StructuralPartialEq for VirtAddr

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V