在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的缩写是什么?它可以帮助我了解其背后的数字。

谢谢!

最佳答案

它是 Page Map Level 4 的缩写。可以找到一些解释here。基本上,这只是AMD决定标记页表的方式。

09-27 11:19