32 位进程的页表大小是多少?
如果进程的页面大小为 4096 字节,则用于将虚拟地址映射到物理存储的页表大小应该是多少?
If the page size for a process is 4096 bytes what should be its page table size that it keeps for mapping virtual addresses to physical storage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
32 位进程最多可以分配 4G 字节 = 1M 页 @ 4K。因此,一个进程可能需要页表中多达一百万个条目。不同处理器之间的页表架构差异很大,因此很难对这样一个通用问题给出更准确的答案。
A 32 bits process can allocate up to 4G bytes = 1M pages @ 4K. So, a process may need up to one million entries in the page table(s). The page table architecture varies quite a bit between processors, so it's hard to give a more precise answer to such a generic question.