



















1. Pentium Processor has two instruction pipelines: "u" pipeline and "v" pipeline, they can work parallel.
2. Pentium Processor has seperated data cache and code cache to eliminates internal contention
3. There are 2 kinds of cache architectures: look-through cache and look-aside cache, the former one can bring performance benefits by allowing bus concurrency, but take disadvatage of lookup penalty when a cache miss happens.
4. Three write policies exsit to prevent the cache cosistency problem brought by a write hit:
5. Other Bus Master will bring cache consistency problems while:
6. Bus Snoop is used under below circumstances:
7. L2 Cache begins to be employed in some 486 systems. L1 cache implements a write-through policy to the L2 cache to ensure the cache coherency between them
8. Pentium processor use write-back policy in its L1 data cache and support write-through or write back plicy on a line-by-line basis.
9. Write-Once Policy ensures that when a line is initially placed in the L1 data cache, it is marked as shared to force a write-throuth to the L2 cache upon the first internal write hit to that cache line.Subsequently write to this line will not be propagated through to the L2 cache. The coherency is ensured by the different state.
10. Memory writes initiated by another bus master hitting a L2 cache with a modified line will cause the L2 cache to backoff the bus master and snoop the L1 cache, write-back the modified line, then remove the backoff and let the master to complete its write.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。