1 / 16

CISC & RISC

CISC & RISC. By Tue Nguyen. Contents. History of CISC and RISC Philosophy behind CISC and RISC Sources. History of CISC and RISC. 1950s IBM instituted a research program 1964 Release of System/360 Mid-1970s improved measurement tools demonstrated on CISC

didina
Télécharger la présentation

CISC & RISC

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. CISC & RISC By Tue Nguyen

  2. Contents • History of CISC and RISC • Philosophy behind CISC and RISC • Sources

  3. History of CISC and RISC • 1950s IBM instituted a research program • 1964 Release of System/360 • Mid-1970s improved measurement tools demonstrated on CISC • 1975 801 project initiated at IBM’s Watson Research Center • 1979 32-bit RISC microprocessor (801) developed led by Joel Birnbaum • 1984 MIPS developed at Stanford, as well as projects done at Berkeley • 1988 RISC processors had taken over high-end of the workstation market • Early 1990s IBM’s POWER (Performance Optimization With Enhanced RISC) architecture introduced w/ the RISC System/6k • AIM (Apple, IBM, Motorola) alliance formed, resulting in PowerPC

  4. What is CISC? • CISC stands for Complex Instruction Set Computer • CISC takes its name from the the very large number of instructions (typically hundreds) and addressing modes in its ISA. • A 2-operand format, where instructions have a source and a destination. Register to register, register to memory, and memory to register commands. Multiple addressing modes for memory, including specialized modes for indexing through arrays • Variable length instructions where the length often varies according to the addressing mode • Instructions which require multiple clock cycles to execute.

  5. CISC design philosophy • In the early days of the computer industry, compiler technology did not exist. Programming was done in either machine code or in assembly language. To make programming easier, computer architects created more and more complex instructions which were direct representations of high level functions of high level programming languages. The attitude at the time was that hardware design was easier than compiler design, so the complexity went into the hardware.

  6. CISC design philosophy • Another force that encouraged complex instructions was the lack of large memories. Since memories were small, it was advantageous for the density of information held in computer programs to be very high. When every byte of memory was precious, eg. your entire system only had a few kilobytes of storage, it moved the industry to such features as highly encoded instructions, instructions which could be variable sized, instructions which did multiple operations, instructions which did both data movement and data calculation. At that time, such instruction packing issues were of higher priority than the ease of decoding such instructions. • Memory was not only small, but rather slow since they were implemented using magnetic technology at the time.

  7. CISC design philosophy • CPU designers tried to make instructions that would do as much work as possible. This led to one instruction that would do all of the work in a single instruction: load up the two numbers to be added, add them, and then store the result back directly to memory. Another version would read the two numbers from memory, but store the result in a register. Another version would read one from memory and the other from a register and store to memory again. And so on. This processor design philosophy eventually became known as Complex Instruction Set Computer or CISC for short.

  8. What is RISC? • RISC, or Reduced Instruction Set Computer. is a type of microprocessor architecture that utilizes a small, highly-optimized set of instructions, rather than a more specialized set of instructions often found in other types of architectures. • All instructions are the same length • Reduced instruction set. • Less complex, simple instructions. • Hardwired control unit and machine instructions. • Few addressing schemes for memory operands with only two basic instructions, LOAD and STORE • Many symmetric registers which are organized into a register file.

  9. RISC design philosophy • In the early 1980s it was thought that existing design of CISC was reaching theoretical limits. Future improvements in speed would be primarily through improved "process", that is, smaller features on the chip. The complexity of the chip would remain largely the same, but the smaller size would allow it to run at higher clock rates. A considerable amount of effort was put into designing chips for parallel computing, with built-in communications links. Instead of making faster chips, a large number of chips would be used, dividing up problems among them.

  10. RISC design philosophy • One idea was to include a pipeline which would break down instructions into steps, and work on one step of several different instructions at the same time. A normal processor might read an instruction, decode it, fetch the memory the instruction asked for, perform the operation, and then write the results back out. The key to pipelining is the observation that the processor can start reading the next instruction as soon as it finishes reading the last, meaning that there are now two instructions being worked on (one is being read, the next is being decoded), and after another cycle there will be three. While no single instruction is completed any faster, the next instruction would complete right after the previous one. The illusion was of a much faster system, and more efficient utilization of processor resources.

  11. Pipelining • RISC PipelinesA RISC processor pipeline operates in much the same way, although the stages in the pipeline are different. While different processors have different numbers of steps, they are basically variations of these five, used in the MIPS R3000 processor: • - fetch instructions from memory • - read registers and decode the instruction • - execute the instruction or calculate an address • - access an operand in data memory • - write the result into a register

  12. CISC versus RISC

  13. Modern Day Advancement • As memory speed increased, and high-level languages displaced assembly language, the major reasons for CISC began to disappear, and computer designers began to look at ways computer performance could be optimized beyond just making faster hardware. • One of their key realizations was that a sequence of simple instructions produces the same results as a sequence of complex instructions, but can be implemented with a simpler (and faster) hardware design. (Assuming that memory can keep up.) RISC (Reduced Instruction Set Computers) processors were the result. • CISC and RISC implementations are becoming more and more alike. Many of today’s RISC chips support as many instructions as yesterday's CISC chips. And today's CISC chips use many techniques formerly associated with RISC chips.

  14. Modern Day Advancement • CISC and RISC ConvergenceState of the art processor technology has changed significantly since RISC chips were first introduced in the early '80s. Because a number of advancements are used by both RISC and CISC processors, the lines between the two architectures have begun to blur. In fact, the two architectures almost seem to have adopted the strategies of the other. Because processor speeds have increased, CISC chips are now able to execute more than one instruction within a single clock. This also allows CISC chips to make use of pipelining. With other technological improvements, it is now possible to fit many more transistors on a single chip.

  15. Modern Day Advancement • This gives RISC processors enough space to incorporate more complicated, CISC-like commands. RISC chips also make use of more complicated hardware, making use of extra function units for superscalar execution. All of these factors have led some groups to argue that we are now in a "post-RISC" era, in which the two styles have become so similar that distinguishing between them is no longer relevant. However, it should be noted that RISC chips still retain some important traits. RISC chips stricly utilize uniform, single-cycle instructions. They also retain the register-to-register, load/store architecture. And despite their extended instruction sets, RISC chips still have a large number of general purpose registers.

  16. References • http://ouray.cudenver.edu • http://en.wikipedia.org/wiki/CISC • http://cse.stanford.edu/class/sophomore-college/projects-00/risc/ • http://www.sunderland.ac.uk/~ts0jti/comparch/ciscrisc.htm • http://www.heyrick.co.uk/assembler/riscvcisc.html

More Related