1 / 18

Instruction sets

Instruction sets. Computer architecture taxonomy. Assembly language. von Neumann architecture. Memory holds data, instructions. Central processing unit (CPU) fetches instructions from memory. Separate CPU and memory distinguishes programmable computer.

tola
Télécharger la présentation

Instruction sets

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Instruction sets • Computer architecture taxonomy. • Assembly language. Overheads for Computers as Components 2nd ed.

  2. von Neumann architecture • Memory holds data, instructions. • Central processing unit (CPU) fetches instructions from memory. • Separate CPU and memory distinguishes programmable computer. • CPU registers help out: program counter (PC), instruction register (IR), general-purpose registers, etc. Overheads for Computers as Components 2nd ed.

  3. CPU + memory memory address CPU PC 200 data ADD r5,r1,r3 ADD r5,r1,r3 IR 200 Overheads for Computers as Components 2nd ed.

  4. here Input Output The von Neumann model Buses CPU So where is the Input/Output? Overheads for Computers as Components 2nd ed.

  5. The Harvard Architecture (1) • Harvard architecture is a computer architecture with physically separate storage and signal pathways for instructions and data. • The term originated from the Harvard Mark I relay-based computer, which stored instructions on punched tape (24 bits wide) and data in electro-mechanical counters (23 digits wide). These early machines had limited data storage, entirely contained within the data processing unit, and provided no access to the instruction storage as data, making loading and modifying programs an entirely offline process. Overheads for Computers as Components 2nd ed.

  6. The Harvard Architecture (2) • In a computer with a 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 read both 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. Overheads for Computers as Components 2nd ed.

  7. The Harvard Architecture (3) • In a Harvard architecture, there is no need to make the two memories share characteristics. In particular, the word width, timing, implementation technology, and memory address structure can differ. • In some systems, instructions can be stored in read-only memory while data memory generally requires read-write memory. • Instruction memory is often wider than data memory. Overheads for Computers as Components 2nd ed.

  8. Harvard architecture address CPU data memory PC data address program memory data Overheads for Computers as Components 2nd ed.

  9. Harvard Architecture Example Block Diagram of the PIC16C8X Overheads for Computers as Components 2nd ed.

  10. Modified Harvard Architecture • The Modified Harvard architecture is very 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. • Standards-based high-level languages, such as the C language, do not support the Modified Harvard Architecture, so that in-line assembly or non-standard extensions are needed to take advantage of it. • Most modern computers that are documented as Harvard Architecture are, in fact, Modified Harvard Architecture. Overheads for Computers as Components 2nd ed.

  11. von Neumann vs. Harvard • Harvard can’t use self-modifying code. • Harvard allows two simultaneous memory fetches. • Most DSPs use Harvard architecture for streaming data: • greater memory bandwidth; • more predictable bandwidth. Overheads for Computers as Components 2nd ed.

  12. RISC vs. CISC • Complex instruction set computer (CISC): • many addressing modes; • many operations. • Reduced instruction set computer (RISC): • load/store; • pipelinable instructions. Overheads for Computers as Components 2nd ed.

  13. Instruction set characteristics • Fixed vs. variable length. • Addressing modes. • Number of operands. • Types of operands. Overheads for Computers as Components 2nd ed.

  14. Programming model • Programming model: registers visible to the programmer. • Some registers are not visible (IR). Overheads for Computers as Components 2nd ed.

  15. Multiple implementations • Successful architectures have several implementations: • varying clock speeds; • different bus widths; • different cache sizes; • etc. Overheads for Computers as Components 2nd ed.

  16. Assembly language • One-to-one with instructions (more or less). • Basic features: • One instruction per line. • Labels provide names for addresses (usually in first column). • Instructions often start in later columns. • Columns run to end of line. Overheads for Computers as Components 2nd ed.

  17. ARM assembly language example label1 ADR r4,c LDR r0,[r4] ; a comment ADR r4,d LDR r1,[r4] SUB r0,r0,r1 ; comment Overheads for Computers as Components 2nd ed.

  18. Pseudo-ops • Some assembler directives don’t correspond directly to instructions: • Define current address. • Reserve storage. • Constants. Overheads for Computers as Components 2nd ed.

More Related