these slides borrowed from http ece northwestern edu
play

These slides borrowed from - PowerPoint PPT Presentation

These slides borrowed from http://www.ece.northwestern.edu/~kcoloma/ece361/lectures/Lec03-isa.pdf ECE C61 Computer Architecture Lecture 3 Instruction Set Architecture Prof. Alok N. Choudhary choudhar@ece.northwestern.edu ECE 361 3-1


  1. These slides borrowed from http://www.ece.northwestern.edu/~kcoloma/ece361/lectures/Lec03-isa.pdf

  2. ECE C61 Computer Architecture Lecture 3 – Instruction Set Architecture Prof. Alok N. Choudhary choudhar@ece.northwestern.edu ECE 361 3-1

  3. Today’ ’s Lecture s Lecture Today Quick Review of Last Week Classification of Instruction Set Architectures Instruction Set Architecture Design Decisions • Operands Annoucements • Operations • Memory Addressing • Instruction Formats Instruction Sequencing Language and Compiler Driven Decisions ECE 361 3-2

  4. Classification of Instruction Set Architectures ECE 361 3-9

  5. Instruction Set Design Instruction Set Design software instruction set hardware Multiple Implementations: 8086  Pentium 4 ISAs evolve: MIPS-I, MIPS-II, MIPS-II, MIPS-IV, MIPS,MDMX, MIPS-32, MIPS-64 ECE 361 3-10

  6. Typical Processor Execution Cycle Typical Processor Execution Cycle Instruction Obtain instruction from program storage Fetch Instruction Determine required actions and instruction size Decode Operand Locate and obtain operand data Fetch Compute result value or status Execute Result Deposit results in register or storage for later use Store Next Determine successor instruction Instruction ECE 361 3-11

  7. Instruction and Data Memory: Unified or Separate Instruction and Data Memory: Unified or Separate Computer Programmer's View Program (Instructions) ADD 01010 SUBTRACT 01110 CPU AND 10011 Memory OR 10001 COMPARE 11010 . . . . I/O . . Computer's View Princeton (Von Neumann) Architecture Harvard Architecture --- Data and Instructions mixed in same --- Data & Instructions in unified memory separate memories --- Program as data --- Has advantages in certain high performance --- Storage utilization implementations --- Single memory interface --- Can optimize each memory ECE 361 3-12

  8. Basic Addressing Classes Basic Addressing Classes Declining cost of registers ECE 361 3-13

  9. Register-Set Architectures Register-Set Architectures ECE 361 3-16

  10. Register-to-Register: Load-Store Architectures Register-to-Register: Load-Store Architectures ECE 361 3-17

  11. Instruction Set Architecture Design Decisions ECE 361 3-20

  12. Basic Issues in Instruction Set Design Basic Issues in Instruction Set Design What data types are supported. What size. What operations (and how many) should be provided • LD/ST/INC/BRN sufficient to encode any computation, or just Sub and Branch! • But not useful because programs too long! How (and how many) operands are specified Typical instruction set: • 32 bit word Most operations are dyadic (eg, A <- B + C) • basic operand addresses are 32 bits long • Some are monadic (eg, A <- ~B) • basic operands, like integers, are 32 bits long Location of operands and result • in general case, instruction could reference 3 operands (A := B + C) • where other than memory? • how many explicit operands? Typical challenge: • how are memory operands located? • encode operations in a small number of bits • which can or cannot be in memory? • How are they addressed How to encode these into consistent instruction formats • Instructions should be multiples of basic data/address widths • Encoding Driven by static measurement and dynamic tracing of selected benchmarks and workloads. ECE 361 3-21

  13. Operands ECE 361 3-22

  14. Comparing Number of Instructions Comparing Number of Instructions Code sequence for (C = A + B) for four classes of instruction sets: Register Register Stack (load-store) Accumulator (register-memory) Push A Load A Load R1,A Load R1,A Push B Add B Add R1,B Load R2,B Add Store C Store C, R1 Add R3,R1,R2 Pop C Store C,R3 1 Cycles Seconds ExecutionT ime Instructio ns = = � � Performanc e Instructio n Cycle ECE 361 3-23

  15. Examples of Register Usage Examples of Register Usage Number of memory addresses per typical ALU instruction Maximum number of operands per typical ALU instruction Examples 0 3 SPARC, MIPS, Precision Architecture, Power PC 1 2 Intel 80x86, Motorola 68000 2 2 VAX (also has 3-operand formats) 3 3 VAX (also has 2-operand formats) ECE 361 3-24

  16. General Purpose Registers Dominate General Purpose Registers Dominate 1975-2002 all machines use general purpose registers Advantages of registers • Registers are faster than memory • Registers compiler technology has evolved to efficiently generate code for register files - E.g., (A*B) – (C*D) – (E*F) can do multiplies in any order vs. stack • Registers can hold variables - Memory traffic is reduced, so program is sped up (since registers are faster than memory) • Code density improves (since register named with fewer bits than memory location) • Registers imply operand locality ECE 361 3-25

  17. Operand Size Usage Operand Size Usage 0% Doubleword 69% 74% Word Int Avg. 31% 19% FP Avg. Halfword 0% 7% Byte 0% 0% 20% 40% 60% 80% Frequency of reference by size • Support for these data sizes and types: 8-bit, 16-bit, 32-bit integers and 32-bit and 64-bit IEEE 754 floating point numbers ECE 361 3-26

  18. Announcements Announcements Next lecture • MIPS Instruction Set ECE 361 3-27

  19. Operations ECE 361 3-28

  20. Typical Operations (little change since 1960) Typical Operations (little change since 1960) Data Movement Load (from memory) Store (to memory) memory-to-memory move register-to-register move input (from I/O device) output (to I/O device) push, pop (to/from stack) Arithmetic integer (binary + decimal) or FP Add, Subtract, Multiply, Divide Shift shift left/right, rotate left/right Logical not, and, or, set, clear Control (Jump/Branch) unconditional, conditional Subroutine Linkage call, return Interrupt trap, return Synchronization test & set (atomic r-m-w) String search, translate Graphics (MMX) parallel subword ops (4 16bit add) ECE 361 3-29

  21. Top 10 80x86 Instructions Top 10 80x86 Instructions ° Rank instruction Integer Average Percent total executed 1 load 22% 2 conditional branch 20% 3 compare 16% 4 store 12% 5 add 8% 6 and 6% 7 sub 5% 8 move register-register 4% 9 call 1% 10 return 1% Total 96% ° Simple instructions dominate instruction frequency ECE 361 3-30

  22. Memory Addressing ECE 361 3-31

  23. Memory Addressing Memory Addressing Since 1980, almost every machine uses addresses to level of 8-bits (byte) Two questions for design of ISA: • Since could read a 32-but word as four loads of bytes from sequential byte address of as one load word from a single byte address, how do byte addresses map onto words? • Can a word be placed on any byte boundary? ECE 361 3-32

  24. Mapping Word Data into a Byte Addressable Memory: Mapping Word Data into a Byte Addressable Memory: Endianess Endianess Big Endian: address of most significant byte = word 7 0 address (xx00 = Big End of word) 1019 1018 1017 IBM 360/370, Motorola 68k, MIPS, Sparc, HP PA 1016 1015 1014 1013 Big Endian 1012 1011 1010 31 24 23 16 15 8 7 0 1009 1008 1007 Little Endian 1006 1005 1004 1003 1002 1001 Little Endian: address of least significant byte = word 1000 address (xx00 = Little End of word) Intel 80x86, DEC Vax, DEC Alpha (Windows NT) ECE 361 3-33

  25. Mapping Word Data into a Byte Addressable Memory: Mapping Word Data into a Byte Addressable Memory: Alignment Alignment 0 1 2 3 Aligned Not Aligned Alignment: require that objects fall on address that is multiple of their size. ECE 361 3-34

  26. Addressing Modes Addressing Modes ECE 361 3-35

  27. Common Memory Addressing Modes Common Memory Addressing Modes Measured on the VAX-11 Register operations account for 51% of all references ~75% - displacement and immediate ~85% - displacement, immediate and register indirect ECE 361 3-36

  28. Displacement Address Size Displacement Address Size Average of 5 SPECint92 and 5 SPECfp92 programs ~1% of addresses > 16-bits 12 ~ 16 bits of displacement cover most usage (+ and -) ECE 361 3-37

  29. Frequency of Immediates Immediates (Instruction Literals) (Instruction Literals) Frequency of ~25% of all loads and ALU operations use immediates 15~20% of all instructions use immediates ECE 361 3-38

  30. Size of Immediates Immediates Size of 50% to 60% fit within 8 bits 75% to 80% fit within 16 bits ECE 361 3-39

  31. Addressing Summary Addressing Summary Data Addressing modes that are important: • Displacement, Immediate, Register Indirect Displacement size should be 12 to 16 bits Immediate size should be 8 to 16 bits ECE 361 3-40

  32. Instruction Formats ECE 361 3-41

  33. Instruction Format Instruction Format Specify • Operation / Data Type • Operands Stack and Accumulator architectures have implied operand addressing If have many memory operands per instruction and/or many addressing modes: • Need one address specifier per operand If have load-store machine with 1 address per instruction and one or two addressing modes: • Can encode addressing mode in the opcode ECE 361 3-42

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend