图书介绍

计算机组成与设计 硬件/软件接口 亚洲版 第5版 英文版pdf电子书版本下载

计算机组成与设计  硬件/软件接口  亚洲版  第5版  英文版
  • (美)帕特森,(美)亨尼斯著 著
  • 出版社: 北京:机械工业出版社
  • ISBN:9787111453161
  • 出版时间:2014
  • 标注页数:684页
  • 文件大小:120MB
  • 文件页数:705页
  • 主题词:计算机体系结构-英文;微型计算机-接口设备-英文

PDF下载


点此进入-本书在线PDF格式电子书下载【推荐-云解压-方便快捷】直接下载PDF格式图书。移动端-PC端通用
下载压缩包 [复制下载地址] 温馨提示:(请使用BT下载软件FDM进行下载)软件下载地址页

下载说明

计算机组成与设计 硬件/软件接口 亚洲版 第5版 英文版PDF格式电子书版下载

下载的文件为RAR压缩包。需要使用解压软件进行解压得到PDF格式图书。

建议使用BT下载工具Free Download Manager进行下载,简称FDM(免费,没有广告,支持多平台)。本站资源全部打包为BT种子。所以需要使用专业的BT下载软件进行下载。如 BitComet qBittorrent uTorrent等BT下载工具。迅雷目前由于本站不是热门资源。不推荐使用!后期资源热门了。安装了迅雷也可以迅雷进行下载!

(文件页数 要大于 标注页数,上中下等多册电子书除外)

注意:本站所有压缩包均有解压码: 点击下载压缩包解压工具

图书目录

CHAPTERS 2

1 Computer Abstractions and Technology 2

1.1 Introduction 3

1.2 Eight Great Ideas in Computer Architecture 11

1.3 Below Your Program 13

1.4 Under the Covers 16

1.5 Technologies for Building Processors and Memory 24

1.6 Performance 28

1.7 ThePowerWall 40

1.8 The Sea Change:The Switch from Uniprocessors to Multiprocessors 43

1.9 Real Stuff:Benchmarking the Intel Core i7 46

1.10 Fallaciesand Pitfalls 49

1.11 Concluding Remarks 52

1.12 Historical Perspective and Further Reading 54

1.13 Exercises 54

2 Instructions:Language of the Computer 60

2.1 Introduction 62

2.2 Operations of the Computer Hardware 63

2.3 Operands of the Computer Hardware 66

2.4 Signed and Unsigned Numbers 73

2.5 Representing Instructions in the Computer 80

2.6 Logical Operations 87

2.7 Instructions for Making Decisions 90

2.8 Supporting Procedures in Computer Hardware 96

2.9 MIPS Addressing for 32-Bit Immediates and Addresses 106

2.10 Parallelism and Instructions:Synchronization 116

2.11 Translating and Starting a Program 118

2.12 A C Sort Example to Put It All Together 126

2.13 Advanced Material:Compiling C 134

2.14 Real Stuff:ARMv7(32-bit)Instructions 134

2.15 Real Stuff:x86 Instructions 138

2.16 Real Stuff:ARMv8(64-bit)Instructions 147

2.17 Fallacies and Pitfalls 148

2.18 Concluding Remarks 150

2.19 Historical Perspective and Further Reading 152

2.20 Exercises 153

3 Arithmetic for Computers 164

3.1 Introduction 166

3.2 Addition and Subtraction 166

3.3 Multiplication 171

3.4 Division 177

3.5 Floating Point 184

3.6 Parallelism and Computer Arithmetic:Subword Parallelism 210

3.7 Real Stuff:Streaming SIMD Extensions and Advanced Vector Extensions in x86 212

3.8 Going Faster:Subword Parallelism and Matrix Multiply 213

3.9 Fallacies and Pitfalls 217

3.10 Concluding Remarks 220

3.11 Historical Perspective and Further Reading 224

3.12 Exercises 225

4 The Processor 230

4.1 Introduction 232

4.2 Logic Design Conventions 236

4.3 Building a Datapath 239

4.4 A Simple Implementation Scheme 247

4.5 An Overview of Pipelining 260

4.6 Pipelined Datapath and Control 274

4.7 Data Hazards:Forwarding versus Stalling 291

4.8 Control Hazards 304

4.9 Exceptions 313

4.10 Parallelism via Instructions 320

4.11 Real Stuff:The ARM Cortex-A8 and Intel Core i7 Pipelines 332

4.12 Going Faster:Instruction-Level Parallelism and Matrix Multiply 339

4.13 Advanced Topic:An Introduction to Digital Design Using a Hardware Design Language to Describe and Model a Pipeline and More Pipelining Illustrations 342

4.14 Fallacies and Pitfalls 343

4.15 Concluding Remarks 344

4.16 Historical Perspective and Further Reading 345

4.17 Exercises 345

5 Large and Fast:Exploiting Memory Hierarchy 360

5.1 Introduction 362

5.2 Memory Technologies 366

5.3 The Basics of Caches 371

5.4 Measuring and Improving Cache Performance 386

5.5 Dependable Memory Hierarchy 406

5.6 Virtual Machines 412

5.7 Virtual Memory 415

5.8 A Common Framework for Memory Hierarchy 442

5.9 Using a Finire-State Machine to Control a Simple Cache 449

5.10 Parallelism and Memory Hierarchies:Cache Coherence 454

5.11 Parallelism and Memory Hierarchy:Redundant Arrays of Inexpensive Disks 458

5.12 Advanced Material:Implementing Cache Controllers 458

5.13 Real Stuff:The ARM Cortex-A8 and Intel Core i7 Memory Hierarchies 459

5.14 Going Faster:Cache Blocking and Matrix Multiply 463

5.15 Fallacies and Pitfalls 466

5.16 Concluding Remarks 470

5.17 Historical Perspective and Further Reading 471

5.18 Exercises 471

6 Parallel Processors from Client to Cloud 488

6.1 Introduction 490

6.2 The Difficulty of Creating Parallel Processing Programs 492

6.3 SISD,MIMD,SIMD,SPMD,and Vector 497

6.4 Hardware Multithreading 504

6.5 Multicore and Other Shared Memory Multiprocessors 507

6.6 Introduction to Graphics Processing Units 512

6.7 Clusters,Warehouse Scale Computers,and Other Message-Passing Multiprocessors 519

6.8 Introduction to Multiprocessor Network Topologies 524

6.9 Communicating to the Outside World:Cluster Networking 527

6.10 Multiprocessor Benchmarks and Performance Models 528

6.11 Real Stuff:Benchmarking Intel Core i7 versus NVIDIA Tesla GPU 538

6.12 Going Faster:Multiple Processors and Matrix Multiply 543

6.13 Fallacies and Pitfalls 546

6.14 Concluding Remarks 548

6.15 Historical Perspective and Further Reading 551

6.16 Exercises 551

精品推荐