pub struct Cr3;
Expand description
Contains the physical address of the highest-level page table.
Implementations§
Source§impl Cr3
impl Cr3
Sourcepub fn read() -> (PhysFrame, Cr3Flags)
pub fn read() -> (PhysFrame, Cr3Flags)
Read the current P4 table address from the CR3 register.
Sourcepub fn read_pcid() -> (PhysFrame, Pcid)
pub fn read_pcid() -> (PhysFrame, Pcid)
Read the current P4 table address from the CR3 register along with PCID.
The correct functioning of this requires CR4.PCIDE = 1.
See Cr4Flags::PCID
Sourcepub unsafe fn write(frame: PhysFrame, flags: Cr3Flags)
pub unsafe fn write(frame: PhysFrame, flags: Cr3Flags)
Write a new P4 table address into the CR3 register.
§Safety
Changing the level 4 page table is unsafe, because it’s possible to violate memory safety by changing the page mapping.
Sourcepub unsafe fn write_pcid(frame: PhysFrame, pcid: Pcid)
pub unsafe fn write_pcid(frame: PhysFrame, pcid: Pcid)
Write a new P4 table address into the CR3 register.
§Safety
Changing the level 4 page table is unsafe, because it’s possible to violate memory safety by
changing the page mapping.
Cr4Flags::PCID
must be set before calling this method.
Sourcepub unsafe fn write_pcid_no_flush(frame: PhysFrame, pcid: Pcid)
pub unsafe fn write_pcid_no_flush(frame: PhysFrame, pcid: Pcid)
Write a new P4 table address into the CR3 register without flushing existing TLB entries for the PCID.
§Safety
Changing the level 4 page table is unsafe, because it’s possible to violate memory safety by
changing the page mapping.
Cr4Flags::PCID
must be set before calling this method.