更新了内存管理之页式管理机制...

This commit is contained in:
gatieme
2016-08-06 15:49:38 +08:00
parent 3dd9c0e921
commit 3d2a790c05
2 changed files with 2 additions and 2 deletions
@@ -76,7 +76,7 @@
常规4KB分页,32位的线性地址被分成3个域
| Directory(目录) | Table(页表) | Offset(偏移量) |
| ------------- |:-------------:| -----:|
| ------------- |:-------------:| -------------:|
| 最高10位 | 中间10位 | 最低12位 |
@@ -67,7 +67,7 @@
基于这个原因, 所有64位处理器的硬件分页系统都使用了额外的分页级别. 使用的级别取决于处理器的类型
| 平台名称 | 页大小 | 寻址所使用的位数 | 分页级别数 | 线性地址分级 |
|:---:|:---:|:---:|:---:|:---:|
|:-----:|:-----:|:-----:|:-----:|-------|
| alpha | 8KB | 43 | 3 | 10 + 10 + 10 + 13 |
| ia64 | 4KB | 39 | 3 | 9 + 9 + 9 + 12 |
| ppc64 | 4KB | 41 | 3 | 10 + 10 + 9 + 12 |