1 / 22

The Course’s Goals

To be interesting and fun. An interested student learns more. To answer questions that are probably keeping you awake at night: What is a Super-Scalar machine? How does branch prediction work? What does ILP stand for?

tcrenshaw
Download Presentation

The Course’s Goals

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. To be interesting and fun. An interested student learns more. To answer questions that are probably keeping you awake at night: What is a Super-Scalar machine? How does branch prediction work? What does ILP stand for? For you to write better programs.By understanding how your program is executed on a computer, will enable you to program better. The Course’s Goals Computer Architecture- The Instruction Set 1/16

  2. Not the Course’s Goals • To be b o r i n g. A bored student:a. Fall asleep, that’s OK just don’t snore.b. Talks, that’s not OK. • To answer questions that aren’t related to computers: “Will George Clooney return to ER” has nothing to due with the course. • For you to design computers.But after this course you will have the necessary basics. Computer Architecture- The Instruction Set 2/16

  3. General Information • Contact is by e-mail (citron@mail.jct.ac.il), phone (6751168 (jct), 6585766 (hu), 6786784 (home)),or in person (look at my home page for details). • Grade: the final grade is composed of a final exam (70%) and three mini-exams (30%), out of which the 2 best will be used. • Assignments are optional. They will be given in the same format as the mini-exams. Computer Architecture- The Instruction Set 3/16

  4. What is Computer Architecture? • Computer Architecture (CA) is to a computer what classic architecture is to a building. • Classic Architecture • Computer Architecture Computer Architecture- The Instruction Set 4/16

  5. Computer Architecture (CA) is to a computer what classic architecture is to a building. • The computer architect designs the functional properties of a microprocessor. • With this plan the hardware engineer designs the gates, bits, and lines that implement the processor. If there are problems in implementing the architect’s plan the engineer returns the plan to the architect with suggested modifications. • A computer then translates this plan to the actual transistors laid out on the chip. • Instruction Set Architecture (ISA) is one level above the architecture described above. The machine language of the processor defines the architecture. Processors that are binary compatible are said to have the same architecture. • Examples are the Intel x86 family, MIPS RxK family etc. Computer Architecture- The Instruction Set

  6. Instruction Set Architecture (ISA) • The machine language instruction:add $s0,$s1,$s2defines the machines architecture. Addition is performed between 2 registers and the result is placed in a 3rd register. • How this is performed is the implementation of the processor. • Confused? Not for long. In this lesson we will define the Instruction Set Architecture of a modern RISC processor. Computer Architecture- The Instruction Set 5/16

  7. The MIPS ISA • The instruction set we will study is the instruction set of the family of processors. Used mainly in the computers of Silicon Graphics but also in the products of Nintendo and Sony. • RISC - Reduced Instruction Set Computer, also called a Load/Store machine. Computer Architecture- The Instruction Set 6/16

  8. A RISC processor has the following traits: • All instructions perform operations between registers. The operands are in registers and the result is written into a register. • The exceptions are the load and store instructions. Data is loaded from memory into a register, or data is stored from a register into memory. • All instructions are the same length, 32-bits, which is the length of the word of the machine. • The number of possible instruction types is reduced. This is due to the fact that the opcode field of the instruction is limited in size, thus the number of instructions is limited. • On the other hand a Complete Instruction Set Computer (CISC) such as the Intel x86 family (486,Pentium, Pentium II, …) : • Can perform operations between registers and memory. • Has variable length instructions (from 1 byte and upwards). • Has a “complete” set of instructions. • Is much more harder to implement as we will see in future lessons. Computer Architecture- The Instruction Set

  9. R-Format Instructions • a=b+c;compiles into: add $s0,$s1,$s2 • R-Format instructions use 3 registers:add $s0,$s1,$s2 # $s0 = $s1+$s2sub $s1,$s4,$s5 # $s1 = $s4-$s5or $t0,$t0,$t1 # $t0 = $t0|$t1slt $t5,$a1,$a2 # $t5 = $a1<$a2sllv $a0,$s1,$s2 # $a0 = $s1<<$s2sll $a0,$s1,3 # $a0 = $s1<<3 • The R-Format instructions include most of the arithmetic and logical instructions. Computer Architecture- The Instruction Set 7/16

  10. MIPS Instruction Fields MIPS instruction fields are given names:op rs rt rd shamt funct6 bits 5 bits 5 bits 5 bits 5 bits 6 bits • op: basic operation of the instruction called opcode • rs: first register source operand • rt: second register source operand • rd: destination register, gets the result of the op • shamt: shift amount, used in shift instructions. • funct: selects the specific variant of the operation. Computer Architecture- The Instruction Set 8/16

  11. Load/Store Instructions • Are the only instructions that • char a,b,A[100]; access memory.a = b + A[8]; will compile into:lw $t0, 8($s3) # $s3 holds the # address of Aadd $s1,$s2,$t0 • int a,b,A[100];A[6] = b; will compile into:sw $s2,24($s3) • lw - load word, sw - store word Computer Architecture- The Instruction Set 9/16

  12. The constant in a data transfer instruction is called the offset and the register the base register. • Lets look at another example:a = A[6] + A[8]; will compile into:lw $t0, 8($s3) # $s3 holds the lw $t1, 6($s3) # address of Aadd $s1,$t1,$t0 • The above code is true if all variables are chars, ints of 1 byte. But if the variables are ints of 4 bytes? • The code is now:lw $t0, 32($s3) # $s3 holds the lw $t1, 24($s3) # address of Aadd $s1,$t1,$t0 • The offset is always in bytes, the compiler translates offsets in ints in the C++ program to offsets in bytes in assembly language. Computer Architecture- The Instruction Set

  13. I-format Instructions • The I stand for Immediate, the instruction contains a number. In the case of load/store instructions it is the offset from the base register. • op rs rt address6 bits 5 bits 5 bits 16 bits • Lets look at a load instruction:lw $t0,32($s3) # $t0 = A[8] • rs: base address register ($s3) • rt: destination register ($t0) • address: offset of -215 to 215 bytes (32) Computer Architecture- The Instruction Set 10/16

  14. if(i==j) f=g+h; else f=g-h; bne $s3,$s4,Else add $s0,$s1,$s2 j Exit Else: sub $s0,$s1,$s2 Exit: Branchs The j instruction (j for jump) is an unconditional branch instruction. Computer Architecture- The Instruction Set 11/16

  15. Decision making is possible using branches (הסתעפויות). • The following instructions are conditional branch instructions: • beq reg1,reg2,L1 #branch equalgoto the instruction labeled L1 if the register values are equal, if unequal goto the next instruction. • bne reg1,reg2,L1 #branch not equalgoto the instruction labeled L1 if the register values are’nt equal, if equal goto the next instruction. • The branch instructions are of the I-format instruction. The label is an immediate value. • The j instruction (j for jump) is an unconditional branch instruction. The machine always follows the branch. j is of the J-format, 6 bits for opcode and 26 for the jump address. Computer Architecture- The Instruction Set

  16. Addressing in Branchs and Jumps • j 10000 # go to location 10000 Jumps to the address 10000 in memory. 2 10000 6 bits (opcode) 26 bits (address) • bne $s0,$s1,Exit # branch if $s0!=$s1 5 16 17 Exit 6 bits 5 bits 5 bits 16 bits (address) • Addresses of the program have to fit into a 16-bit field. • Thus no program could be larger than 64KByte which is unrealistic. Computer Architecture- The Instruction Set 12/16

  17. Branch Offset in Machine Language • Lets look at a loop in assembly:Loop: . . bne $t0,$t1,Exit subi $t0,$t0,1 j LoopExit: • The machine code of the bne instruction is: 5 8 9 8 • The branch instruction adds 8 bytes to the PC and not 12 because the PC is automatically incremented by 4 when an instruction is executed. Computer Architecture- The Instruction Set 13/16

  18. The Program Counter (PC) is a register the software can't access directly, that always contains the address of the current instruction being executed. Thus if we use the PC as the register to add to the branch address we can always branch within a range of -215 to 215 bytes of the current instruction. • This is enough for most loops and if statements. This form of addressing is called PC-relative addressing. • Procedures are not usually within a short range of the current instruction and thus jal is a J-type instruction. • Loop: . bne $t0,$t1,Exit subi $t0,$t0,1 j LoopExit: • The branch instruction adds 8 bytes to the PC and not 12 because the PC is automatically incremented by 4 when an instruction is executed. • In fact the branch offset is 2 not 8. All MIPS instructions are 4 bytes long thus the offset is in words not bytes. The range of a branch has been multiplied by 4.

  19. Pseudodirect Addressing • The 26-bit field in the jump instruction is also a word address. Thus it is a 28-bit address. But the PC holds 32-bits? • The MIPS jumps instruction replaces only the lower 28 bits of the PC, leaving the 4 highest bits of the PC unchanged. • The loader and linker must avoid placing a program across an address boundary ( גבול) of 256MB (64 million instructions). Otherwise a j must be replaced with a jr. Computer Architecture- The Instruction Set 14/16

  20. Addressing Mode Summary • Immediate addressing - the Operand is a constant • Register addressing - the Operand is a register • Base or displacement addressing - the operand is at the memory location whose address is the sum of a register and a constant in the instruction. • PC-relative addressing - the address is the sum of the PC and a constant in the instruction. • Pseudodirect addressing - the jump address is the 26 bits of the instruction concatenated ( מצורף ) to the upper bits of the PC. Computer Architecture- The Instruction Set 15/16

  21. Immediate addressing - the Operand is a constantaddi $t0,$t1,102 # $t0=$t1 + 10andi $s0,$s0,16 # $s0=$s0 & 16 • Register addressing - the Operand is a registeraddi $t0,$t1,102 andi $s0,$s0,16jr $s4 # jump to the address in $s4 • Base or displacement addressing - the operand is at the memory location whose address is the sum of a register and a constant in the instruction.lw $t0,20($gp) # $t0 = $gp[5]lb $t1,7($s5) # $t0 = $s5[7] • PC-relative addressing - the address is the sum of the PC and a constant in the instruction.beg $s0,$s1,Label # if $s0<$s1 jump to Label • Pseudodirect addressing - the jump address is the 26 bits of the instruction concatenated ( מצורף ) to the upper bits of the PC.j L37jal strcmp

  22. Addressing Modes (picture) Computer Architecture- The Instruction Set 16/16

More Related