Download presentation
Presentation is loading. Please wait.
Published byAnnabel Parmley Modified over 9 years ago
1
CS 6461: Computer Architecture Instruction Set Architecture Instructor: Morris Lancaster
2
Appendix A+ Instruction Set Principles and Examples
3
August 13, 2012CS 6461 Instruction Set Architecture3 ?Design a New High Performance System? ISA –What instructions should we include Internal Organization –How do the instructions implemented affect the internal organization (and subsequently performance) How best approach this problem? –Understand what a computer and an instruction set architecture does for us –Look at current architectures for insight
4
August 13, 2012CS 6461 Instruction Set Architecture4 Classifying ISA’s Type of Internal Storage –Stack –Accumulator –Set of Registers
5
August 13, 2012CS 6461 Instruction Set Architecture5 Operand Locations for 4 ISA Classes
6
August 13, 2012CS 6461 Instruction Set Architecture6 Design Decisions Instruction Set Architecture Class (Load-Store?) –How Many Registers (more is good) How Many Operands in the instruction?
7
August 13, 2012CS 6461 Instruction Set Architecture7 Code Sequences for the 4 Classes Since 1980s almost all new designs are load store architectures. –Machines have large register files –Registers are easier for the compiler to manage (addressed in only one way) StackAccumulatorRegister (register-memory) Register (load store) Push ALoad ALoad R1, A Push BAdd BAdd R3, R1, BLoad R2, B AddStore CStore R3, CAdd R3, R1, R2 Pop CStore R3,C
8
August 13, 2012CS 6461 Instruction Set Architecture8 Number of Memory Addresses Number of memory addresses Maximum number of operands allowed Type of Architecture Examples 03Load-StoreAlpha, ARM, MIPS, PowerPC, SPARC, SuperH, TM32 12Register-MemoryIBM 360/370, Intel 80x86, Motorola 68000, TI TMS320C54x 22Memory – memoryVAX (also has 3 operand formats) 33Memory - memoryVAX (also has 2 operand formats)
9
August 13, 2012CS 6461 Instruction Set Architecture9 Tradeoffs for the ISA Classes TypeAdvantagesDisadvantages Register-register (0,3) Simple, fixed length instruction encoding. Simple code generation model. Instructions take similar numbers of clocks to execute. Higher instruction count than architectures with memory references in the instructions. More instructions and lower instruction density leads to larger programs Register-memory (1,2) Data can be accessed without a separate load instruction first. Instruction format tends to be easy to encode and yields good density Operands are not equivalent since a source operand is destroyed. Encoding a register number and a memory address in each instruction may restrict the number of registers. Clocks per instruction vary by operand location Memory-memory (2,2) or (3,3) Most compact. Does not waste registers for temporaries. Large variation in instruction size, especially for three-operand instructions. In addition, large variation in work per instruction. Memory accesses create memory bottleneck. (Not used today)
10
August 13, 2012CS 6461 Instruction Set Architecture10 Memory Addressing (page B9) RegisterAdd R4,R3R4<- R4 + R3 ImmediateAdd R4,#3R4<- R4 + 3 Displacement Add R4,100(R1) R4<- R4 + Mem[100+R1] Register IndirectAdd R4,(R1) R4<- R4 + Mem[R1] IndexedAdd R3,(R1+R2) R3<- R3 + Mem[R1+R2] DirectAdd R1, (1001) R1<- R1 + Mem[1001] Memory IndirectAdd R1, @(R3) R1<- R1 + Mem[Mem[R3]] AutoIncrementAdd R1, (R2)+R1<- R1 + Mem[R2] R2<- R2 +d AutoDecrementAdd R1, -(R2) R2<- R2 - d R1<- R1 + Mem[R2] ScaledAdd R1, 100(R2)[R3]R1<- (R1) + Mem[100+(R2) + (R3)*d]
11
August 13, 2012CS 6461 Instruction Set Architecture11 Summary of Use of Addressing Modes for DEC VAX Architecture
12
August 13, 2012CS 6461 Instruction Set Architecture12 Displacement Values Are Widely Distributed
13
August 13, 2012CS 6461 Instruction Set Architecture13 About ¼ of Data Transfers and ALU Operations Have an Immediate Operand
14
August 13, 2012CS 6461 Instruction Set Architecture14 Distribution of Immediate Values
15
August 13, 2012CS 6461 Instruction Set Architecture15 Type and Size of Operands 8, 16, 32, 64 bits Alignment Fetch capability Encoding type
16
August 13, 2012CS 6461 Instruction Set Architecture16 Distribution of Data Access By Size
17
August 13, 2012CS 6461 Instruction Set Architecture17 Control Flow Addressing modes Conditional branch operations Frequency distributions
18
August 13, 2012CS 6461 Instruction Set Architecture18 Breakdown of Control Flow Instructions
19
August 13, 2012CS 6461 Instruction Set Architecture19 Branch Distance In Number of Instructions
20
August 13, 2012CS 6461 Instruction Set Architecture20 Frequency of Different Types of Compares in Conditional Branches
21
August 13, 2012CS 6461 Instruction Set Architecture21 Fig 2.38 Data Reference Sizes
22
August 13, 2012CS 6461 Instruction Set Architecture22 Fig 2.23 Three Variations In Instruction Encoding
23
August 13, 2012CS 6461 Instruction Set Architecture23 Instruction Encoding Balance –Desire to have as many registers and addressing modes as possible –The impact of the size of the register and addressing mode fields on the average instruction size and hence average program size –A desire to have instructions encoded into lengths that will be easy to handle in a pipelined implementation
24
August 13, 2012CS 6461 Instruction Set Architecture24 The Role of Compilers Structure Optimizations Register Allocation (tied with hardware) Impact of Compiler Technology on Architects Decisions
25
August 13, 2012CS 6461 Instruction Set Architecture25 Fig 2.24 Compiler Structure
26
August 13, 2012CS 6461 Instruction Set Architecture26 Fig 2.26 Change in Instruction Count From Compiler Optimization (SPEC2000)
27
August 13, 2012CS 6461 Instruction Set Architecture27 MIPS Instruction Set MIPS 64 has 32 general purpose registers of 64 bits in length (R0…R31) –Value of R0 is always 0 32 floating point registers capable of holding 32 or 64 bit floating point numbers Instruction formats –I type immediate –R type register-register –J type jump
28
August 13, 2012CS 6461 Instruction Set Architecture28 MIPS Instruction Set Instruction nomenclature –Opcode –Registers rs, rd, rt
29
August 13, 2012CS 6461 Instruction Set Architecture29 Fig 2.27 MIPS Instruction Layout
30
August 13, 2012CS 6461 Instruction Set Architecture30 Fallacies and Pitfalls Pitfall – Designing a “high-level” instruction set feature specifically oriented to supporting a high-level language structure. Fallacy – There is such a thing as a typical program Pitfall – Innovating at the instruction set architecture to reduce code size without accounting for the compiler. Fallacy – An architecture with flaws cannot be successful Fallacy – You can design a flawless machine
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.