在 Xen 代码 ./xen/include/asm-x86/config.h 中,我看到内存布局代码是:
/*
137 * Meng: Xen-definitive guide: P81
138 * Memory layout:
139 * 0x0000000000000000 - 0x00007fffffffffff [128TB, 2^47 bytes, PML4:0-255]
140 * Guest-defined use (see below for compatibility mode guests).
141 * 0x0000800000000000 - 0xffff7fffffffffff [16EB]
142 * Inaccessible: current arch only supports 48-bit sign-extended VAs.
143 * 0xffff800000000000 - 0xffff803fffffffff [256GB, 2^38 bytes, PML4:256]
我对 PML4 的缩写感到非常困惑。我确实知道 x86_64 只使用 64 位中的 48 位。但是 PML4 的缩写是什么?它可以帮助我理解它背后的数字。
谢谢!