axvm 0.5.24

Virtual Machine resource management crate for ArceOS's hypervisor variant.
1
2
3
4
5
6
7
8
9
10
11
//! x86 nested-paging formats and their runtime-selected address-space adapter.
//!
//! Intel processors use Extended Page Tables (EPT), while AMD processors use
//! Nested Page Tables (NPT). The runtime adapter selects the format after the
//! x86 virtualization backend is initialized.

mod ept;
mod npt;
mod runtime;

pub(crate) use runtime::NestedPageTable;