20100530 关于cpu的私房菜

23
关于 CPU 的私房菜 By Peng Wu

Upload: linuxfb

Post on 12-May-2015

464 views

Category:

Technology


8 download

TRANSCRIPT

Page 1: 20100530 关于cpu的私房菜

关于 CPU的私房菜By Peng Wu

Page 2: 20100530 关于cpu的私房菜

目录

冯 .诺依曼模型 Harvard architecture Pentium Superscalar MIPS pipeline Hyper-threading 最小的 CPU实现

Page 3: 20100530 关于cpu的私房菜

1. 冯 .诺依曼模型

Page 4: 20100530 关于cpu的私房菜

冯 .诺依曼模型

Page 5: 20100530 关于cpu的私房菜

2. Harvard architecture

Page 6: 20100530 关于cpu的私房菜

Harvard architecture The Harvard architecture is a

computer architecture with physically separate storage and signal pathways for instructions and data.

These early machines had limited data storage, entirely contained within the central processing unit, and provided no access to the instruction storage as data, making loading and modifying programs an entirely offline process.

Page 7: 20100530 关于cpu的私房菜

Harvard architecture In a computer with the contrasting von Neumann

architecture (and no cache), the CPU can be either reading an instruction or reading/writing data from/to the memory. Both cannot occur at the same time since the instructions and data use the same bus system. In a computer using the Harvard architecture, the CPU can both read an instruction and perform a data memory access at the same time, even without a cache. A Harvard architecture computer can thus be faster for a given circuit complexity because instruction fetches and data access do not contend for a single memory pathway.

Page 8: 20100530 关于cpu的私房菜

Modified Harvard architecture

The Modified Harvard architecture is very much like the Harvard architecture but provides a pathway between the instruction memory and the CPU that allows words from the instruction memory to be treated as read-only data. This allows constant data, particularly text strings, to be accessed without first having to be copied into data memory, thus preserving more data memory for read/write variables. Special machine language instructions are provided to read data from the instruction memory.

Page 9: 20100530 关于cpu的私房菜

3. Pentium Superscalar

Page 10: 20100530 关于cpu的私房菜

Pentium Superscalar

Superscalar architecture — The Pentium has two datapaths (pipelines) that allow it to complete more than one instruction per clock cycle. One pipe (called U) can handle any instruction, while the other (called V) can handle the simplest, most common instructions.

Page 11: 20100530 关于cpu的私房菜

EGCS fork of GCC In 1997, a group of developers formed EGCS

(Experimental/Enhanced GNU Compiler System),[11] to merge several experimental forks into a single project. The basis of the merger was a GCC development snapshot taken between the 2.7 and 2.81 releases. Projects merged included g77 (Fortran), PGCC (Pentium-optimized GCC), many C++ improvements, and many new architectures and operating system variants.[12][13]

EGCS development proved considerably more vigorous than GCC development, so much so that the FSF officially halted development on their GCC 2.x compiler, "blessed" EGCS as the official version of GCC and appointed the EGCS project as the GCC maintainers in April 1999. Furthermore, the project explicitly adopted the "bazaar" model over the "cathedral" model. With the release of GCC 2.95 in July 1999, the two projects were once again united.

Page 12: 20100530 关于cpu的私房菜

4. MIPS pipeline

Page 13: 20100530 关于cpu的私房菜

An instruction pipeline is a technique used in the design of computers and

other digital electronic devices to increase their instruction throughput

(the number of instructions that can be executed in a unit of time).

Instruction pipeline

Page 14: 20100530 关于cpu的私房菜

MIPS Architecture

Page 15: 20100530 关于cpu的私房菜

MIPS Stage Pipeline

Page 16: 20100530 关于cpu的私房菜

5. Hyper-threading

Page 17: 20100530 关于cpu的私房菜

Hyper-threading

Hyper-threading is an Intel-proprietary technology used to improve parallelization of computations (doing multiple tasks at once) performed on PC microprocessors. For each processor core that is physically present, the operating system addresses two virtual processors, and shares the workload between them when possible.

Page 18: 20100530 关于cpu的私房菜

Hyper-threading Hyper-threading works by duplicating certain

sections of the processor—those that store the architectural state—but not duplicating the main execution resources. This allows a hyper-threading processor to appear as two "logical" processors to the host operating system, allowing the operating system to schedule two threads or processes simultaneously. When execution resources would not be used by the current task in a processor without hyper-threading, and especially when the processor is stalled, a hyper-threading equipped processor can use those execution resources to execute another scheduled task.

Page 19: 20100530 关于cpu的私房菜

Hyper-threading

The processor may stall and switch thread due to: a cache miss branch misprediction data dependency

Page 20: 20100530 关于cpu的私房菜

6. 最小的 CPU实现

Page 21: 20100530 关于cpu的私房菜

最小的 CPU实现

Original Paper: A Tiny Computer

By Chuck Thacker, MSR

Page 22: 20100530 关于cpu的私房菜

QA

Page 23: 20100530 关于cpu的私房菜

Thanks for coming!