惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
O
OpenAI News
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
Schneier on Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
小众软件
小众软件
L
LINUX DO - 热门话题
C
Cybersecurity and Infrastructure Security Agency CISA
博客园 - Franky
Security Latest
Security Latest
S
SegmentFault 最新的问题
Project Zero
Project Zero
Spread Privacy
Spread Privacy
K
Kaspersky official blog
J
Java Code Geeks
V
Vulnerabilities – Threatpost
C
Cisco Blogs
C
CERT Recently Published Vulnerability Notes
月光博客
月光博客
T
The Exploit Database - CXSecurity.com
L
Lohrmann on Cybersecurity
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Scott Helme
Scott Helme
WordPress大学
WordPress大学
量子位
T
Threat Research - Cisco Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
AWS News Blog
AWS News Blog
Help Net Security
Help Net Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Simon Willison's Weblog
Simon Willison's Weblog
S
Secure Thoughts
博客园 - 【当耐特】
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
V
Visual Studio Blog
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
腾讯CDC
Cyberwarzone
Cyberwarzone
IT之家
IT之家
GbyAI
GbyAI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
云风的 BLOG
云风的 BLOG
T
Troy Hunt's Blog
D
Docker

博客园 - bullfinch

Notes of "The Unbridged Pentium 4" - Pentium 4 System Overview Notes of "The Unbridged Pentium 4" - Pentium 4 Road Map Notes of "The Unbridged Pentium 4" - Overview of the Processor Role Notes of "Pentium Processor System Architecture" - Pentium Signal Interface (part) Notes of "Pentium Processor System Architecture" - Mutiple Processors and the MESI Model AMD Opteron Architecture related Fedora Core 3 挂载FAT32分区以及中文显示和输入 摄像头设置事件 linux下安装HP NC6000无线网卡(HP W500) C#学习笔记(八) TreeView.AfterCheck和TreeNode.Checked赋值的问题 C#学习笔记(七) C#学习笔记(六) C#学习笔记(五) 图像中密集点群的定位 C#学习笔记(四) 中兴ZXDSL831立式蓝猫自动拨号+NAT+DHCP设置 关于变参(zz) C#学习笔记(三)
Notes of "Pentium Processor System Architecture" - The Functional Units & Pentium Cache Overview
bullfinch · 2005-05-14 · via 博客园 - bullfinch

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:

  • Write-Through Cache Designs
  • Buffered Write-Through Cahce Designs(also get benefits when write misses happen)
  • Write-Back Cache Designs

5. Other Bus Master will bring cache consistency problems while:

  • Writes to memory (with write-through cache)
  • Reads from memory (with write-back cache)
  • Writes to main memory (with write-back cache) just invalite the line in cache is a mistake

6. Bus Snoop is used under below circumstances:

  • Memory write by another bus master
        Invalidate the line
        Snarf the data
  • Memory read by another bus master
        Write-back the line
        Supply data directly

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.