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