Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Linux PML4是什么的缩写?_Linux_Paging_Xen - Fatal编程技术网

Linux PML4是什么的缩写?

Linux PML4是什么的缩写?,linux,paging,xen,Linux,Paging,Xen,在Xen code./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 compatibil

在Xen code./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是什么的缩写?这可能有助于我理解它背后的数字


谢谢

它是页面地图级别4的缩写。可以找到一些解释。基本上,这正是AMD决定为页面表添加标签的方式。

非常感谢!参考资料非常有用!它类似于4级页面表中的页面表条目。我猜PML表的偏移量是12-A20?