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

推荐订阅源

T
Threatpost
V
Vulnerabilities – Threatpost
TaoSecurity Blog
TaoSecurity Blog
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed
G
GRAHAM CLULEY
S
Securelist
P
Palo Alto Networks Blog
MongoDB | Blog
MongoDB | Blog
A
Arctic Wolf
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
WordPress大学
WordPress大学
Project Zero
Project Zero
T
Threat Research - Cisco Blogs
L
Lohrmann on Cybersecurity
C
Cyber Attacks, Cyber Crime and Cyber Security
F
Fortinet All Blogs
博客园 - 叶小钗
B
Blog RSS Feed
C
Cisco Blogs
Google DeepMind News
Google DeepMind News
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
K
Kaspersky official blog
D
Docker
Latest news
Latest news
Cisco Talos Blog
Cisco Talos Blog
T
Tor Project blog
Cyberwarzone
Cyberwarzone
Security Latest
Security Latest
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Spread Privacy
Spread Privacy
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
J
Java Code Geeks
Simon Willison's Weblog
Simon Willison's Weblog
T
Tenable Blog
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
H
Help Net Security
L
LINUX DO - 热门话题
T
The Exploit Database - CXSecurity.com
Jina AI
Jina AI
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
NISL@THU
NISL@THU
美团技术团队
腾讯CDC

博客园 - 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.