如何计算需要多少页内存?

发布于 2024-10-07 08:10:08 字数 134 浏览 8 评论 0 原文

我有一个32位的系统。 2^32 字节内存。假设每页 4KB:2^12 页。

如何确定所需的页数? 2^32 / 2^12 = 2^20?那么我们有 20 位用于分页,12 位用于偏移?

有人有一个我如何理解分页的例子吗?

I have a 32-bit system. 2^32 bytes of memory. Let's say 4KB per page: 2^12 pages.

How does one determine the required number of pages? 2^32 / 2^12 = 2^20? So we have 20 bits for paging and 12 bits for offset?

Anyone have an example of how I could understand paging?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甲如呢乙后呢 2024-10-14 08:10:08

对于简单的分页系统,您的计算是正确的,但是对于允许可变大小页面的系统(即奔腾),事情会变得更加复杂。请注意虚拟寻址和物理寻址之间的差异...尽管您的体系结构可能允许 2^32 可寻址字节的内存,但您的实际硬件可能具有更少或更多的内存。

如果你想要一个例子,只需查找一些关于操作系统的大学笔记...有一些关于内存管理的讲座 此处

Your calculation is correct for a simple paging system, but things get more complicated for systems which allow variable sized pages (i.e. Pentium). Just be wary of the difference between virtual addressing and physical addressing... although your architecture might allow for 2^32 addressable bytes of memory, your actual hardware may have less or more memory.

If you want an example, just look up some university notes on operating systems... there are some lecs on memory management here.

贩梦商人 2024-10-14 08:10:08

我们可以将页面内存设置为总可用物理内存的 1.5% 倍
即,如果我们有 4 GB RAM,则页面文件大小可达 6 GB

We can Set page memory as 1.5 % multiple of our totaal available physical memory
ie if we have 4 gb of RAM then page file size can be upto 6 gb

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文