Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是初学者。我遇到了一篇文章,http ://en.wikipedia.org/wiki/Physical_Address_Extension
虽然我可以部分理解它,但我无法理解增加物理地址的实际优势。谁能解释一下?谢谢你。
将物理地址空间增加到超过 32 位允许操作系统访问超过 4GB 的内存。但是,虚拟地址空间(指针大小)仍然是 32 位,应用程序需要使用特殊的 API 来更改其虚拟地址空间的寻址位置。PAE 是允许应用程序在 32 位处理器上使用超过 4GB 内存的权宜之计。
如今,随着 x86-64 的广泛实现,PAE 没有实际用途,它具有 64 位指针。