Struct x86_64::addr::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 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 const unsafe fn new_unsafe(addr: u64) -> VirtAddr

Creates a new virtual address, without any checks.

§Safety

You must make sure bits 48..64 are equal to bit 47. This is not checked.

source

pub const fn zero() -> VirtAddr

Creates a virtual address that points to 0.

source

pub const fn as_u64(self) -> u64

Converts the address to an u64.

source

pub fn from_ptr<T: ?Sized>(ptr: *const T) -> Self

Available on 64-bit only.

Creates a virtual address from the given pointer

source

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

Available on 64-bit only.

Converts the address to a raw pointer.

source

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

Available on 64-bit only.

Converts the address to a mutable raw pointer.

source

pub const fn is_null(self) -> bool

Convenience method for checking if a virtual address is null.

source

pub fn align_up<U>(self, align: U) -> Self
where U: Into<u64>,

Aligns the virtual address upwards to the given alignment.

See the align_up function for more information.

§Panics

This function panics if the resulting address is higher than 0xffff_ffff_ffff_ffff.

source

pub fn align_down<U>(self, align: U) -> Self
where U: Into<u64>,

Aligns the virtual address downwards to the given alignment.

See the align_down function for more information.

source

pub fn is_aligned<U>(self, align: U) -> bool
where U: Into<u64>,

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

§

type Output = VirtAddr

The resulting type after applying the + operator.
source§

fn add(self, rhs: u64) -> Self::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 Binary for VirtAddr

source§

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

Formats the value using the given formatter.
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

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

impl Hash for VirtAddr

source§

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

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

Formats the value using the given formatter.
source§

impl Octal for VirtAddr

source§

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

Formats the value using the given formatter.
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 + PartialOrd,

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

impl PartialEq for VirtAddr

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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

This method 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

This method 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

This method 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

This method 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

Formats the value using the given formatter.
source§

impl Step for VirtAddr

Available on crate feature step_trait only.
source§

fn steps_between(start: &Self, end: &Self) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: Self, count: usize) -> Option<Self>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor of self count times. Read more
source§

fn backward_checked(start: Self, count: usize) -> Option<Self>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor of self count times. Read more
source§

fn forward(start: Self, count: usize) -> Self

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor of self count times. Read more
source§

unsafe fn forward_unchecked(start: Self, count: usize) -> Self

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor of self count times. Read more
source§

fn backward(start: Self, count: usize) -> Self

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor of self count times. Read more
source§

unsafe fn backward_unchecked(start: Self, count: usize) -> Self

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor of self count times. Read more
source§

impl Sub<u64> for VirtAddr

§

type Output = VirtAddr

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
source§

impl Sub for VirtAddr

§

type Output = u64

The resulting type after applying the - operator.
source§

fn sub(self, rhs: VirtAddr) -> Self::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 UpperHex for VirtAddr

source§

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

Formats the value using the given formatter.
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> 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.