[][src]Struct x86_64::VirtAddr

#[repr(transparent)]
pub struct VirtAddr(_);

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 UsizeConversions 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 criterium are called “canonical”. This type guarantees that it always represents a canonical address.

Methods

impl VirtAddr[src]

pub fn new(addr: u64) -> VirtAddr[src]

Creates a new canonical virtual address.

This function performs sign extension of bit 47 to make the address canonical. Panics if the bits in the range 48 to 64 contain data (i.e. are not null and no sign extension).

pub fn try_new(addr: u64) -> Result<VirtAddr, VirtAddrNotValid>[src]

Tries to create a new canonical virtual address.

This function tries to performs sign extension of bit 47 to make the address canonical. It succeeds if bits 48 to 64 are either a correct sign extension (i.e. copies of bit 47) or all null. Else, an error is returned.

pub fn new_unchecked(addr: u64) -> VirtAddr[src]

Creates a new canonical virtual address without checks.

This function performs sign extension of bit 47 to make the address canonical, so bits 48 to 64 are overwritten. If you want to check that these bits contain no data, use new or try_new.

pub const fn zero() -> VirtAddr[src]

Creates a virtual address that points to 0.

pub fn as_u64(self) -> u64[src]

Converts the address to an u64.

pub fn from_ptr<T>(ptr: *const T) -> Self[src]

Creates a virtual address from the given pointer

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

Converts the address to a raw pointer.

pub fn as_mut_ptr<T>(self) -> *mut T[src]

Converts the address to a mutable raw pointer.

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

Aligns the virtual address upwards to the given alignment.

See the align_up function for more information.

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

Aligns the virtual address downwards to the given alignment.

See the align_down function for more information.

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

Checks whether the virtual address has the demanded alignment.

pub fn page_offset(&self) -> u12[src]

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

pub fn p1_index(&self) -> u9[src]

Returns the 9-bit level 1 page table index.

pub fn p2_index(&self) -> u9[src]

Returns the 9-bit level 2 page table index.

pub fn p3_index(&self) -> u9[src]

Returns the 9-bit level 3 page table index.

pub fn p4_index(&self) -> u9[src]

Returns the 9-bit level 4 page table index.

Trait Implementations

impl Debug for VirtAddr[src]

impl PartialEq<VirtAddr> for VirtAddr[src]

impl Eq for VirtAddr[src]

impl Ord for VirtAddr[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd<VirtAddr> for VirtAddr[src]

impl Copy for VirtAddr[src]

impl Add<u64> for VirtAddr[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<usize> for VirtAddr where
    u64: FromUsize
[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<u64> for VirtAddr[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<usize> for VirtAddr where
    u64: FromUsize
[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<VirtAddr> for VirtAddr[src]

type Output = u64

The resulting type after applying the - operator.

impl AddAssign<u64> for VirtAddr[src]

impl AddAssign<usize> for VirtAddr where
    u64: FromUsize
[src]

impl SubAssign<u64> for VirtAddr[src]

impl SubAssign<usize> for VirtAddr where
    u64: FromUsize
[src]

impl Clone for VirtAddr[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for VirtAddr

impl Sync for VirtAddr

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]