(好吧,实际上继续这个问题,我想承认这是一个家庭作业问题,请考虑一下并帮助我进一步提高我的理解。)
我最近开始学习计算机组织和架构。我对缓存的组织方式、缓存和主内存之间的映射方式(直接、完全和集合关联映射)、什么是页表(什么是页、块等)有了相当的了解,我可以这么说我对分段、分页、虚拟地址和物理地址有基本的了解。(在基础级别)。
好吧,我遇到了这个问题:
A computer has 46-bit virtual address ,32- bit physical address, and a three level
page table organisation. The page table base-register stores the base address of the
first level table(t1), which occupies exactly one page.Each entry of t1 stores the base
address of the page of second level table t2. Each entry of t2 stores the base address
of the page of the third level table t3. Each entry of t3 stores a page table entry
(PTE). The PTE is 32 bit in size. The processor used in the computer has a 1MB
16-way set associative virtually indexed physically tagged cache. The cache block size
is 64 Bytes.
首先,我很难想象这种类型的虚拟计算机。任何人都可以通过提供有关如何在纸上实现这样的虚拟计算机的简单步骤来帮助我,或者只是如何理解问题中给出的内容。真正问的是什么??如何代表一台具有 46 位虚拟地址和三级页表的计算机。
what is virtually indexed and physically tagged cache.
看完上面给出的内容,我觉得我只知道这些术语,但我无法将它们联系在一起来解决问题。如果有人试图解释我的思维过程应该如何理解并实际应用这些概念来解决这类问题,我会很高兴。
基于上述段落的一些问题:
1) What is the size of a page in KB in this computer?
2) what is the minimum number of page colours needed to guarantee that no two synonyms
map to different sets in the processor cache of this computer?
一个很好的资源,其中这些问题被实际教授解决,将不胜感激。好的文章和观点是最受欢迎的。
先感谢您 !!