CS 61c: Great Ideas in Computer Architecture
|
|
- Leona Ashlynn Blair
- 10 months ago
- Views:
Transcription
1 MIPS Functions July 1, 2014
2 Review I RISC Design Principles Smaller is faster: 32 registers, fewer instructions Keep it simple: rigid syntax, fixed instruction length MIPS Registers: $s0-$s7,$t0-$t9, $0 Only operands used by instructions No variable types, just bits Memory is byte-addressed Need to watch endianness when mixing words and bytes
3 Review II MIPS Instructions Arithmetic: add,sub, addi, mult, div, addu, subu, addiu Data Transfer: lw, sw, lb, sb, lbu Branching: beq, bne, j Bitwise: and,andi, or, ori, nor, xor, xori Shifting: sll, sllv, srl, srlv, sra, srav
4 Great Idea #1: Levels of Representation/Interpretation High Level Language Program (e.g.c) Compiler Assembly Language Program (e.g. MIPS) Assembler Machine Language Program temp = v[k]; v[k] = v[k+1] v[k+1] = temp; lw $t0, 0($2) lw $t1, 4($2) sw $t1, 0($2) sw $t0, 4($2) Machine Interpretation Hardware Architecture Description (e.g. block diagrams) Architecture Implementation Logic Circuit Description (Circuit Schematic Diagrams)
5 Outline Inequalities ISA Support Pseudo-instructions Why and What Administrivia Functions in MIPS Implementation Calling Conventions Summary
6 ISA Support Inequalities in MIPS Inequality tests: <, <=, >, >= RISC-y idea: Use one instruction for all of them Set on Less Than (slt) slt dst, src1, src2 Stores 1 in dst if src1 < src2, else 0 Combine with bne, beq, and $0, to implement comparisons
7 ISA Support Inequalities in MIPS C Code: if (a < b) {... /* then */ } MIPS Code: #a->$s0, b->$s1 # $t0 = (a < b) slt $t0, $s0, $s1 # if (a < b) goto then bne $t0, $0, then
8 ISA Support Inequalities in MIPS C Code: if (a < b) {... /* then */ } MIPS Code: Try to work out the other two on your own: try swapping src1 and src2 try switching beq and bne #a->$s0, b->$s1 # $t0 = (a < b) slt $t0, $s0, $s1 # if (a < b) goto then bne $t0, $0, then
9 ISA Support Immediates in Inequalities Three other variants of slt sltu dst,src1,src2: unsigned comparison slti dst,src,imm: compare against constant sltiu dst,src,imm: unsigned comparison against constant Example: addi $s0,$0,-1 # $s0=0xffffffff slti $t0,$s0,1 # $t0=1 sltiu $t1,$s0,1 # $t1=0
10 ISA Support MIPS Signed vs. Unsigned MIPS terms signed and unsigned appear in 3 different contexts: Signed vs. unsigned bit extension lb lbu Detect vs. don t detect overflow add, addi, sub, mult, div addu, addiu, subu, multu, divu Signed vs. unsigned comparison slt, slti sltu, sltiu
11 ISA Support Question: What C code properly fills in the following blank? do {i - -;} while ( ); Loop: addi $s0, $s0, -1 slti $t0, $s1, 2 beq $t0, $0, Loop slt $t0, $s1, $s0 bne $t0, $0, Loop # i-0>$s0, j->$s1 (blue) j >= 2 j < i (green) j >= 2 && j < i (purple) j < 2 j >= i (yellow) j < 2 && j >= i
12 ISA Support Question: What C code properly fills in the following blank? do {i - -;} while ( ); Loop: # i->$s0, j->$s1 addi $s0, $s0, -1 # i = i - 1 slti $t0, $s1, 2 # $t0 = (j < 2) beq $t0, $0, Loop # goto Loop if $t0 == 0 slt $t0, $s1, $s0 # $t0 = (j < i) bne $t0, $0, Loop # goto Loop if $t0!= 0 (blue) j >= 2 j < i (green) j >= 2 && j < i (purple) j < 2 j >= i (yellow) j < 2 && j >= i
13 Outline Inequalities ISA Support Pseudo-instructions Why and What Administrivia Functions in MIPS Implementation Calling Conventions Summary
14 Why and What Assembler Pseudo-Instructions Certain C statements are implemented unintuitively in MIPS e.g. assignment (a=b) via addition with 0 MIPS has a set of pseudo-instructions to make programming easier More intuitive to read, but get translated into actual instructions later Example: move dst,src is translated to addi dst,src,0
15 Why and What Assembler Pseudo-Instructions List of pseduo-instructions: Pseudo_instructions List also includes the translations for each instruction Load Address (la) la dst, label Loads address of specified label into dst Load Immediate (li) li dst, imm Loads a 32-bit immediate into dst MARS supports more pseudo-instructions (see help) Don t go overboard, it s easy to confuse yourself with esoteric syntax.
16 Why and What Assembler Register Problem: When breaking up a pseudo-instruction, the assembler may need to use an extra register If it uses a regular register it might overwrite data that the program was using
17 Why and What Assembler Register Problem: When breaking up a pseudo-instruction, the assembler may need to use an extra register If it uses a regular register it might overwrite data that the program was using Solution: Reserve a register ($1 or $at for assembler temporary ) that assembler will use to break up pseudo-instructions Since the assembler may use this at any time, it s not safe to code with it
18 Why and What MAL vs. TAL True Assembly Language (TAL) The instructions a computer understands and executes MIPS Assembly Language (MAL) Instructions the assembly programmer can use (including pseudo-instructions) Each MAL instruction maps directly to 1 or more TAL instructions TAL MAL
19 Outline Inequalities ISA Support Pseudo-instructions Why and What Administrivia Functions in MIPS Implementation Calling Conventions Summary
20 Administriva HW2 due Friday HW3 due Sunday No class (lab or lecture) on Thursday
21 Outline Inequalities ISA Support Pseudo-instructions Why and What Administrivia Functions in MIPS Implementation Calling Conventions Summary
22 Implementation Six Steps of Calling a Function 1. Put arguments in place where the function can access them 2. Transfer control to the function 3. The function will acquire any (local) storage resources it needs 4. The function performs its desired task 5. The function puts return value in an accessible place and cleans up 6. Control is returned to the caller
23 Implementation MIPS Registers for Function Calls Registers are much faster than memory, so use them whenever possible $a0-$a3: four argument registers to pass parameters $v0-$v1: two value registers for return values $ra: return address register that saves where a function is called from
24 Implementation MIPS Instructions for Function Calls Jump and Link (jal) Saves the location of the following instruction in register $ra and then jumps to label (function address) Used to invoke a function Jump Register (jr) jr src Unconditionally jump to the address specified in src (almost always used with $ra) Most commonly used to return from a function
25 Implementation Instruction Addresses jal puts the address of an instruction in $ra Instructions are stored as data in memory! Recall: Code Section In MIPS, all instructions are 4 bytes long, so each instruction address differs by 4 Remember: Memory is byte-addressed Labels get converted to instruction address eventually
26 Implementation Program Counter The program counter (PC) is a special register that holds the address of the current instruction being executed This register is not (directly) accessible to the programmer, (is accessible to jal) jal stores PC + 4 into $ra Why not PC + 1? What would happen if we stored PC instead? All branches and jumps (beq, bne, j, jal, jr) work by storing an address into PC
27 Implementation Function Call Example... sum (a,b);... /* a->$s0,b-> $s1 */ int sum ( int x, int y) { return x + y; } Address MIPS 1000 addi $a0, $s0, 0 # x = a 1004 addi $a1, $s1, 0 # y = b 1008 jal sum # $ra = 1012, goto sum sum: add $v0,$a0,$a jr $ra # return
28 Implementation Six Steps of Calling a Function 1. Put arguments in place where the function can access them ($a0-$a3) 2. Transfer control to the function (jal) 3. The function will acquire any (local) storage resources it needs 4. The function performs its desired task 5. The function puts return value in an accessible place ($v0-$v1) and cleans up 6. Control is returned to the caller (jr)
29 Implementation Saving and Restoring Registers Why might we need to save registers?
30 Implementation Saving and Restoring Registers Why might we need to save registers? Limited number of registers to use what happens if a function calls another function? ($ra would get overwritten!) Where should we save registers?
31 Implementation Saving and Restoring Registers Why might we need to save registers? Limited number of registers to use what happens if a function calls another function? ($ra would get overwritten!) Where should we save registers? The stack $sp (stack pointer) register contains pointer to the current bottom (last used space) of the stack
32 Implementation Review: Memory Layout
33 Implementation Example: sum square int sum_square ( int x, int y) { return mult (x, x) + y; } What do we need to save? Call to mult will overwrite $ra, so save it Reusing $a1 to pass 2nd argument to mult, but need current value (y) later, so save $a1 To save something on the stack, move $sp down the required amount and fill the created space.
34 Implementation Example: sum square int sum_ square ( int x, int y) { return mult (x, x) + y; } sum_ square : ### Push the stack ### addi $sp, $sp, -8 # make space on stack sw $ra, 4($sp) # save ret addr sw $a1, 0($sp) # save y add $a1, $a0, $zero # set 2 nd mult arg jal mult # call mult lw $a1, 0($sp) # restore y add $v0, $v0, $a1 # retval = mult (x, x) + y ### Pop the stack ### lw $ra, 4($sp) # get ret addr addi $sp, $sp, 8 # restore stack jr $ra mult :...
35 Implementation Canonical Function Structure Prologue: func_label : addiu $sp, $sp, -framesize sw $ra, <framesize - 4> ( $sp )... # save other registers as needed Body Epilogue... # whatever the function actually does... # restore other registers as needed lw $ra, <framesize - 4> ( $sp ) addiu $sp, $sp, framesize
36 Implementation Local Variables and Arrays Any local variables the compiler cannot assign to registers will be allocated as part of the stack frame (Recall: spilling to memory) Locally declared arrays and structs are also allocated on the stack frame Stack manipulation is the same as before Move $sp down an extra amount and use the space created as storage
37 Implementation Stack Before, During, After Call
38 Implementation Technology Break
39 Calling Conventions Register Conventions CalleR: The calling function CalleE: The function being called Register Conventions: A set of generally accepted rules governing which registers will be unchanged after a procedure call (jal) and which may have changed ( been clobbered )
40 Calling Conventions Saved Registers These registers are expected to be the same before and after a function If the callee uses them, it must restore the values before returning Usually means saving the old values, using the register, and then reloading the old values back into the registers
41 Calling Conventions Saved Registers These registers are expected to be the same before and after a function If the callee uses them, it must restore the values before returning Usually means saving the old values, using the register, and then reloading the old values back into the registers $s0-$s7 (saved registers)
42 Calling Conventions Saved Registers These registers are expected to be the same before and after a function If the callee uses them, it must restore the values before returning Usually means saving the old values, using the register, and then reloading the old values back into the registers $s0-$s7 (saved registers) $sp (stack pointer)
43 Calling Conventions Saved Registers These registers are expected to be the same before and after a function If the callee uses them, it must restore the values before returning Usually means saving the old values, using the register, and then reloading the old values back into the registers $s0-$s7 (saved registers) $sp (stack pointer) $ra (return address)
44 Calling Conventions Volatile Registers These registers can be freely changed by the callee If caller needs them, it must save those values before making a procedure call
45 Calling Conventions Volatile Registers These registers can be freely changed by the callee If caller needs them, it must save those values before making a procedure call $t0-$t9 (temporary registers)
46 Calling Conventions Volatile Registers These registers can be freely changed by the callee If caller needs them, it must save those values before making a procedure call $t0-$t9 (temporary registers) $v0-$v1 (return values) These will contain the functions return values
47 Calling Conventions Volatile Registers These registers can be freely changed by the callee If caller needs them, it must save those values before making a procedure call $t0-$t9 (temporary registers) $v0-$v1 (return values) These will contain the functions return values $a0-$a3 (return address and arguments) These will change if the callee invokes another function Nested functions mean that callee is also a caller
48 Calling Conventions Register Conventions Summary One more time: CalleR must save any volatile registers it is using onto the stack before making a procedure call CalleE must save any saved registers before clobbering their contents Notes: CalleR and callee only need to save the registers they actually use (not all!) Don t forget to restore values after finished clobbering registers Analogy: Throwing a party while your parents are away
49 Calling Conventions Example: Using Saved Registers myfunc : # Uses $s0 and $s1 addiu $sp, $sp, -12 # This is the Prologue sw $ra, 8( $sp ) # Save saved registers sw $s0, 4( $sp ) sw $s1, 0( $sp )... # Do stuff with $s0, $s1 jal func1 # $s0, $s1 unchanged by func... # calls, so can keep using jal func2 # them normally.... # Do stuff with $s0, $s1 lw $s1, 0( $sp ) # This is the Epilogue lw $s0, 4( $sp ) # Restore saved registers lw $ra, 8( $sp ) addiu $sp, $sp, 12 jr $ra # return
50 Calling Conventions Example: Using Volatile Registers myfunc : # Uses $s0 and $s1 addiu $sp, $sp, -4 # This is the Prologue sw $ra, 0( $sp ) # Save saved registers... # Do stuff with $t0 addiu $sp, $sp, -4 # Save volatile registers sw $t0, 0( $sp ) # before func call jal func1 # function may clobber $t0 lw $t0, 0( $sp ) # Restore volatile registers addiu $sp, $sp, 4... # Do stuff with $t0 lw $ra, 0( $sp ) # This is the Epilogue addiu $sp, $sp, 4 # Restore saved registers jr $ra # return
51 Calling Conventions Choosing your Registers Minimize register footprint Optimize to reduce number of registers you need to save by choosing which registers to use in a function Only save to memory when absolutely necessary Leaf functions Use only $t0-$t9 and there is nothing to save Functions that call other functions Values that you need throughout go in $s0-$s7 Others go in $t0-$t9
52 Calling Conventions Question: Which statement below is FALSE? (blue) MIPS uses jal to invoke functions and jr to return from functions (green) jal saves PC+1 in $ra (purple) The callee can use temporary registers ($t#) without saving and restoring them (yellow) The caller can rely on save registers ($s#) without fear of the callee changing them
53 Calling Conventions Question: Which statement below is FALSE? (blue) MIPS uses jal to invoke functions and jr to return from functions (green) jal saves PC+1 in $ra (purple) The callee can use temporary registers ($t#) without saving and restoring them (yellow) The caller can rely on save registers ($s#) without fear of the callee changing them
54 Outline Inequalities ISA Support Pseudo-instructions Why and What Administrivia Functions in MIPS Implementation Calling Conventions Summary
55 And in Conclusion I Inequalities done using slt and allow us to implement the rest of control flow Pseudo-instructions make code more readable Part of MAL, translated into TAL MIPS function implementation Jump and link (jal) invokes, jump register (jr $ra) returns Registers $a0-$a3 for arguments, $v0,$v1 for return values
56 And in Conclusion II Register conventions preserve values of registers between function calls Different responsibilities for the caller and callee Registers split between saved and volatile Use the stack for spilling registers, saving return addresses, and local variables
ECE 2035 Programming HW/SW Systems Fall problems, 7 pages Exam Two 23 October 2013
Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate
Inequalities in MIPS (2/4) Inequalities in MIPS (1/4) Inequalities in MIPS (4/4) Inequalities in MIPS (3/4) UCB CS61C : Machine Structures
CS61C L8 Introduction to MIPS : Decisions II & Procedures I (1) Instructor Paul Pearce inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures http://www.xkcd.org/627/ Lecture 8 Decisions & and Introduction
We will study the MIPS assembly language as an exemplar of the concept.
MIPS Assembly Language 1 We will study the MIPS assembly language as an exemplar of the concept. MIPS assembly instructions each consist of a single token specifying the command to be carried out, and
CS 61c: Great Ideas in Computer Architecture
Introduction to Assembly Language June 30, 2014 Review C Memory Layout Local variables disappear because the stack changes Global variables don t disappear because they are in static data Dynamic memory
Do-While Example. In C++ In assembly language. do { z--; while (a == b); z = b; loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero
Do-While Example In C++ do { z--; while (a == b); z = b; In assembly language loop: addi $s2, $s2, -1 beq $s0, $s1, loop or $s2, $s1, $zero 25 Comparisons Set on less than (slt) compares its source registers
MIPS Instruction Reference
Page 1 of 9 MIPS Instruction Reference This is a description of the MIPS instruction set, their meanings, syntax, semantics, and bit encodings. The syntax given for each instruction refers to the assembly
CS 61C: Great Ideas in Computer Architecture MIPS Instruction Formats
CS 61C: Great Ideas in Computer Architecture MIPS Instruction Formats Instructors: Vladimir Stojanovic and Nicholas Weaver http://inst.eecs.berkeley.edu/~cs61c/sp16 1 Machine Interpretation Levels of Representation/Interpretation
ENCM 369 Winter 2013: Reference Material for Midterm #2 page 1 of 5
ENCM 369 Winter 2013: Reference Material for Midterm #2 page 1 of 5 MIPS/SPIM General Purpose Registers Powers of Two 0 $zero all bits are zero 16 $s0 local variable 1 $at assembler temporary 17 $s1 local
SPIM Instruction Set
SPIM Instruction Set This document gives an overview of the more common instructions used in the SPIM simulator. Overview The SPIM simulator implements the full MIPS instruction set, as well as a large
MIPS%Assembly% E155%
MIPS%Assembly% E155% Outline MIPS Architecture ISA Instruction types Machine codes Procedure call Stack 2 The MIPS Register Set Name Register Number Usage $0 0 the constant value 0 $at 1 assembler temporary
Week 10: Assembly Programming
Week 10: Assembly Programming Arithmetic instructions Instruction Opcode/Function Syntax Operation add 100000 $d, $s, $t $d = $s + $t addu 100001 $d, $s, $t $d = $s + $t addi 001000 $t, $s, i $t = $s +
ECE 2035 A Programming Hw/Sw Systems Spring problems, 8 pages Final Exam 29 April 2015
Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate
MIPS Reference Guide
MIPS Reference Guide Free at PushingButtons.net 2 Table of Contents I. Data Registers 3 II. Instruction Register Formats 4 III. MIPS Instruction Set 5 IV. MIPS Instruction Set (Extended) 6 V. SPIM Programming
EE108B Lecture 3. MIPS Assembly Language II
EE108B Lecture 3 MIPS Assembly Language II Christos Kozyrakis Stanford University http://eeclass.stanford.edu/ee108b 1 Announcements Urgent: sign up at EEclass and say if you are taking 3 or 4 units Homework
COMP 303 Computer Architecture Lecture 3. Comp 303 Computer Architecture
COMP 303 Computer Architecture Lecture 3 Comp 303 Computer Architecture 1 Supporting procedures in computer hardware The execution of a procedure Place parameters in a place where the procedure can access
UCB CS61C : Machine Structures
inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 10 Introduction to MIPS Procedures I Sr Lecturer SOE Dan Garcia 2014-02-14 If cars broadcast their speeds to other vehicles (and the
Assembly Programming
Designing Computer Systems Assembly Programming 08:34:48 PM 23 August 2016 AP-1 Scott & Linda Wills Designing Computer Systems Assembly Programming In the early days of computers, assembly programming
MIPS ISA and MIPS Assembly. CS301 Prof. Szajda
MIPS ISA and MIPS Assembly CS301 Prof. Szajda Administrative HW #2 due Wednesday (9/11) at 5pm Lab #2 due Friday (9/13) 1:30pm Read Appendix B5, B6, B.9 and Chapter 2.5-2.9 (if you have not already done
Today s Lecture. MIPS Assembly Language. Review: What Must be Specified? Review: A Program. Review: MIPS Instruction Formats
Today s Lecture Homework #2 Midterm I Feb 22 (in class closed book) MIPS Assembly Language Computer Science 14 Lecture 6 Outline Assembly Programming Reading Chapter 2, Appendix B 2 Review: A Program Review:
MIPS Instruction Format
MIPS Instruction Format MIPS uses a 32-bit fixed-length instruction format. only three different instruction word formats: There are Register format Op-code Rs Rt Rd Function code 000000 sssss ttttt ddddd
Announcements. EE108B Lecture MIPS Assembly Language III. MIPS Machine Instruction Review: Instruction Format Summary
Announcements EE108B Lecture MIPS Assembly Language III Christos Kozyrakis Stanford University http://eeclass.stanford.edu/ee108b PA1 available, due on Thursday 2/8 Work on you own (no groups) Homework
CS61C : Machine Structures
inst.eecs.berkeley.edu/~cs61c/su06 CS61C : Machine Structures Lecture #9: MIPS Procedures 2006-07-11 CS 61C L09 MIPS Procedures (1) Andy Carle C functions main() { int i,j,k,m;... i = mult(j,k);... m =
ECE232: Hardware Organization and Design. Computer Organization - Previously covered
ECE232: Hardware Organization and Design Part 6: MIPS Instructions II http://www.ecs.umass.edu/ece/ece232/ Adapted from Computer Organization and Design, Patterson & Hennessy, UCB Computer Organization
A General-Purpose Computer The von Neumann Model. Concocting an Instruction Set. Meaning of an Instruction. Anatomy of an Instruction
page 1 Concocting an Instruction Set Nerd Chef at work. move flour,bowl add milk,bowl add egg,bowl move bowl,mixer rotate mixer... A General-Purpose Computer The von Neumann Model Many architectural approaches
Concocting an Instruction Set
Concocting an Instruction Set Nerd Chef at work. move flour,bowl add milk,bowl add egg,bowl move bowl,mixer rotate mixer... Read: Chapter 2.1-2.7 L03 Instruction Set 1 A General-Purpose Computer The von
ECE Exam I February 19 th, :00 pm 4:25pm
ECE 3056 Exam I February 19 th, 2015 3:00 pm 4:25pm 1. The exam is closed, notes, closed text, and no calculators. 2. The Georgia Tech Honor Code governs this examination. 3. There are 4 questions and
CS 61C: Great Ideas in Computer Architecture Strings and Func.ons. Anything can be represented as a number, i.e., data or instruc\ons
CS 61C: Great Ideas in Computer Architecture Strings and Func.ons Instructor: Krste Asanovic, Randy H. Katz hdp://inst.eecs.berkeley.edu/~cs61c/sp12 Fall 2012 - - Lecture #7 1 New- School Machine Structures
ECE 2035 A Programming Hw/Sw Systems Fall problems, 10 pages Final Exam 14 December 2016
Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate
Machine Language Instructions Introduction. Instructions Words of a language understood by machine. Instruction set Vocabulary of the machine
Machine Language Instructions Introduction Instructions Words of a language understood by machine Instruction set Vocabulary of the machine Current goal: to relate a high level language to instruction
CS61C : Machine Structures
inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures $2M 3D camera Lecture 8 MIPS Instruction Representation I Instructor: Miki Lustig 2014-09-17 August 25: The final ISA showdown: Is ARM, x86, or
CPS311 - COMPUTER ORGANIZATION. A bit of history
CPS311 - COMPUTER ORGANIZATION A Brief Introduction to the MIPS Architecture A bit of history The MIPS architecture grows out of an early 1980's research project at Stanford University. In 1984, MIPS computer
Lecture 5. Announcements: Today: Finish up functions in MIPS
Lecture 5 Announcements: Today: Finish up functions in MIPS 1 Control flow in C Invoking a function changes the control flow of a program twice. 1. Calling the function 2. Returning from the function In
COMP MIPS instructions 2 Feb. 8, f = g + h i;
Register names (save, temporary, zero) From what I have said up to now, you will have the impression that you are free to use any of the 32 registers ($0,..., $31) in any instruction. This is not so, however.
CSE Lecture In Class Example Handout
CSE 30321 Lecture 07-09 In Class Example Handout Part A: A Simple, MIPS-based Procedure: Swap Procedure Example: Let s write the MIPS code for the following statement (and function call): if (A[i] > A
CSE Lecture In Class Example Handout
CSE 30321 Lecture 07-08 In Class Example Handout Part A: J-Type Example: If you look in your book at the syntax for j (an unconditional jump instruction), you see something like: e.g. j addr would seemingly
CS61C Machine Structures. Lecture 10 - MIPS Branch Instructions II. 2/8/2006 John Wawrzynek. (www.cs.berkeley.edu/~johnw)
CS61C Machine Structures Lecture 10 - MIPS Branch Instructions II 2/8/2006 John Wawrzynek (www.cs.berkeley.edu/~johnw) www-inst.eecs.berkeley.edu/~cs61c/ CS 61C L10 MIPS Branch II (1) Compiling C if into
Lecture 6: Assembly Programs
Lecture 6: Assembly Programs Today s topics: Procedures Examples Large constants The compilation process A full example 1 Procedures Local variables, AR, $fp, $sp Scratchpad and saves/restores, $fp Arguments
Mips Code Examples Peter Rounce
Mips Code Examples Peter Rounce P.Rounce@cs.ucl.ac.uk Some C Examples Assignment : int j = 10 ; // space must be allocated to variable j Possibility 1: j is stored in a register, i.e. register $2 then
Numbers: positional notation. CS61C Machine Structures. Faux Midterm Review Jaein Jeong Cheng Tien Ee. www-inst.eecs.berkeley.
CS 61C Faux Midterm Review (1) CS61C Machine Structures Faux Midterm Review 2002-09-29 Jaein Jeong Cheng Tien Ee www-inst.eecs.berkeley.edu/~cs61c/ Numbers: positional notation Number Base B B symbols
Architecture II. Computer Systems Laboratory Sungkyunkwan University
MIPS Instruction ti Set Architecture II Jin-Soo Kim (jinsookim@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu Making Decisions (1) Conditional operations Branch to a
Implementing Procedure Calls
1 / 39 Implementing Procedure Calls February 18 22, 2013 2 / 39 Outline Intro to procedure calls Caller vs. callee Procedure call basics Calling conventions The stack Interacting with the stack Structure
EE 109 Unit 8 MIPS Instruction Set
1 EE 109 Unit 8 MIPS Instruction Set 2 Architecting a vocabulary for the HW INSTRUCTION SET OVERVIEW 3 Instruction Set Architecture (ISA) Defines the software interface of the processor and memory system
CS 61C: Great Ideas in Computer Architecture Introduction to Assembly Language and MIPS Instruction Set Architecture
CS 61C: Great Ideas in Computer Architecture Introduction to Assembly Language and MIPS Instruction Set Architecture Instructors: Bernhard Boser & Randy H. Katz http://inst.eecs.berkeley.edu/~cs61c/fa16
Mark Redekopp, All rights reserved. EE 352 Unit 3 MIPS ISA
EE 352 Unit 3 MIPS ISA Instruction Set Architecture (ISA) Defines the software interface of the processor and memory system Instruction set is the vocabulary the HW can understand and the SW is composed
Outline. EEL-4713 Computer Architecture Multipliers and shifters. Deriving requirements of ALU. MIPS arithmetic instructions
Outline EEL-4713 Computer Architecture Multipliers and shifters Multiplication and shift registers Chapter 3, section 3.4 Next lecture Division, floating-point 3.5 3.6 EEL-4713 Ann Gordon-Ross.1 EEL-4713
Lecture 6 Decision + Shift + I/O
Lecture 6 Decision + Shift + I/O Instructions so far MIPS C Program add, sub, addi, multi, div lw $t0,12($s0) sw $t0, 12($s0) beq $s0, $s1, L1 bne $s0, $s1, L1 j L1 (unconditional branch) slt reg1,reg2,reg3
Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: MIPS Instruction Set Architecture
Computer Science 324 Computer Architecture Mount Holyoke College Fall 2009 Topic Notes: MIPS Instruction Set Architecture vonneumann Architecture Modern computers use the vonneumann architecture. Idea:
Code Generation. The Main Idea of Today s Lecture. We can emit stack-machine-style code for expressions via recursion. Lecture Outline.
The Main Idea of Today s Lecture Code Generation We can emit stack-machine-style code for expressions via recursion (We will use MIPS assembly as our target language) 2 Lecture Outline What are stack machines?
Assembly Language Programming. CPSC 252 Computer Organization Ellen Walker, Hiram College
Assembly Language Programming CPSC 252 Computer Organization Ellen Walker, Hiram College Instruction Set Design Complex and powerful enough to enable any computation Simplicity of equipment MIPS Microprocessor
ICS 233 COMPUTER ARCHITECTURE. MIPS Processor Design Multicycle Implementation
ICS 233 COMPUTER ARCHITECTURE MIPS Processor Design Multicycle Implementation Lecture 23 1 Add immediate unsigned Subtract unsigned And And immediate Or Or immediate Nor Shift left logical Shift right
ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design
ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design Professor Sherief Reda http://scale.engin.brown.edu School of Engineering Brown University Spring 2014 Sources: Computer
Procedures and Stacks
Procedures and Stacks Daniel Sanchez Computer Science & Artificial Intelligence Lab M.I.T. March 15, 2018 L10-1 Announcements Schedule has shifted due to snow day Quiz 2 is now on Thu 4/12 (one week later)
Concocting an Instruction Set
Concocting an Instruction Set Nerd Chef at work. move flour,bowl add milk,bowl add egg,bowl move bowl,mixer rotate mixer... Lab is posted. Do your prelab! Stay tuned for the first problem set. L04 Instruction
Rui Wang, Assistant professor Dept. of Information and Communication Tongji University.
Instructions: ti Language of the Computer Rui Wang, Assistant professor Dept. of Information and Communication Tongji University it Email: ruiwang@tongji.edu.cn Computer Hierarchy Levels Language understood
CS3350B Computer Architecture
CS3350B Computer Architecture Winter 2015 Lecture 4.1: MIPS ISA: Introduction Marc Moreno Maza www.csd.uwo.ca/courses/cs3350b [Adapted d from lectures on Computer Organization and Design, Patterson & Hennessy,
See P&H 2.8 and 2.12, and A.5-6. Prof. Hakim Weatherspoon CS 3410, Spring 2015 Computer Science Cornell University
See P&H 2.8 and 2.12, and A.5-6 Prof. Hakim Weatherspoon CS 3410, Spring 2015 Computer Science Cornell University Upcoming agenda PA1 due yesterday PA2 available and discussed during lab section this week
MIPS Assembly Programming
COMP 212 Computer Organization & Architecture COMP 212 Fall 2008 Lecture 8 Cache & Disk System Review MIPS Assembly Programming Comp 212 Computer Org & Arch 1 Z. Li, 2008 Comp 212 Computer Org & Arch 2
Instruction Set Architecture of. MIPS Processor. MIPS Processor. MIPS Registers (continued) MIPS Registers
CSE 675.02: Introduction to Computer Architecture MIPS Processor Memory Instruction Set Architecture of MIPS Processor CPU Arithmetic Logic unit Registers $0 $31 Multiply divide Coprocessor 1 (FPU) Registers
Computer Science and Engineering 331. Midterm Examination #1. Fall Name: Solutions S.S.#:
Computer Science and Engineering 331 Midterm Examination #1 Fall 2000 Name: Solutions S.S.#: 1 41 2 13 3 18 4 28 Total 100 Instructions: This exam contains 4 questions. It is closed book and notes. Calculators
Stacks and Procedures
Stacks and Procedures I forgot, am I the Caller or Callee? Don t know. But, if you PUSH again I m gonna POP you. Support for High-Level Language constructs are an integral part of modern computer organization.
EEM 486: Computer Architecture. Lecture 2. MIPS Instruction Set Architecture
EEM 486: Computer Architecture Lecture 2 MIPS Instruction Set Architecture EEM 486 C functions main() { int i,j,k,m;... i = mult(j,k);... m = mult(i,i);... } What information must compiler/programmer keep
Today s topics. MIPS operations and operands. MIPS arithmetic. CS/COE1541: Introduction to Computer Architecture. A Review of MIPS ISA.
Today s topics CS/COE1541: Introduction to Computer Architecture MIPS operations and operands MIPS registers Memory view Instruction encoding A Review of MIPS ISA Sangyeun Cho Arithmetic operations Logic
CS3350B Computer Architecture MIPS Procedures and Compilation
CS3350B Computer Architecture MIPS Procedures and Compilation Marc Moreno Maza http://www.csd.uwo.ca/~moreno/cs3350_moreno/index.html Department of Computer Science University of Western Ontario, Canada
COMP2611: Computer Organization MIPS function and recursion
COMP2611 Fall2015 COMP2611: Computer Organization MIPS function and recursion Overview 2 You will learn the following in this lab: how to use MIPS functions in a program; the concept of recursion; how
Arguments and Return Values. EE 109 Unit 16 Stack Frames. Assembly & HLL s. Arguments and Return Values
1 Arguments and Return Values 2 EE 109 Unit 16 Stack Frames MIPS convention is to use certain registers for this task used to pass up to 4 arguments. If more arguments, use the stack used for return value
CS 4200/5200 Computer Architecture I
CS 4200/5200 Computer Architecture I MIPS Instruction Set Architecture Dr. Xiaobo Zhou Department of Computer Science CS420/520 Lec3.1 UC. Colorado Springs Adapted from UCB97 & UCB03 Review: Organizational
CSc 256 Final Spring 2011
CSc 256 Final Spring 2011 NAME: Problem1: Convertthedecimalfloatingpointnumber 4.3toa32 bitfloat(inbinary)inieee 754standardrepresentation.Showworkforpartialcredit.10points Hint:IEEE754formatfor32 bitfloatsconsistsofs
Functions and Procedures
Functions and Procedures Function or Procedure A separate piece of code Possibly separately compiled Located at some address in the memory used for code, away from main and other functions (main is itself
A Processor. Kevin Walsh CS 3410, Spring 2010 Computer Science Cornell University. See: P&H Chapter , 4.1-3
A Processor Kevin Walsh CS 3410, Spring 2010 Computer Science Cornell University See: P&H Chapter 2.16-20, 4.1-3 Let s build a MIPS CPU but using Harvard architecture Basic Computer System Registers ALU
MIPS (SPIM) Assembler Syntax
MIPS (SPIM) Assembler Syntax Comments begin with # Everything from # to the end of the line is ignored Identifiers are a sequence of alphanumeric characters, underbars (_), and dots () that do not begin
Review (1/2) IEEE 754 Floating Point Standard: Kahan pack as much in as could get away with. CS61C - Machine Structures
Review (1/2) CS61C - Machine Structures Lecture 11 - Starting a Program October 4, 2000 David Patterson http://www-inst.eecs.berkeley.edu/~cs61c/ IEEE 754 Floating Point Standard: Kahan pack as much in
Computer Systems Architecture
Computer Systems Architecture http://cs.nott.ac.uk/ txa/g51csa/ Thorsten Altenkirch and Liyang Hu School of Computer Science and IT University of Nottingham Lecture 05: Comparisons, Loops and Bitwise Operations
Chapter 2. Instruction Set Architecture (ISA)
Chapter 2 Instruction Set Architecture (ISA) MIPS arithmetic Design Principle: simplicity favors regularity. Why? Of course this complicates some things... C code: A = B + C + D; E = F - A; MIPS code:
Compiling Techniques
Lecture 10: An Introduction to MIPS assembly 18 October 2016 Table of contents 1 Overview 2 3 Assembly program template.data Data segment: constant and variable definitions go here (including statically
Computer Organization MIPS Architecture. Department of Computer Science Missouri University of Science & Technology
Computer Organization MIPS Architecture Department of Computer Science Missouri University of Science & Technology hurson@mst.edu Computer Organization Note, this unit will be covered in three lectures.
Digital System Design II
Digital System Design II 数字系统设计 II Peng Liu ( 刘鹏 ) Dept. of Info. Sci. & Elec. Engg. Zhejiang University liupeng@zju.edu.cn Lecture 2 MIPS Instruction Set Architecture 2 Textbook reading MIPS ISA 2.1-2.4
Forecast. Instructions (354 Review) Basics. Basics. Instruction set architecture (ISA) is its vocabulary. Instructions are the words of a computer
Instructions (354 Review) Forecast Instructions are the words of a computer Instruction set architecture (ISA) is its vocabulary With a few other things, this defines the interface of computers But implementations
EE 109 Unit 15 Subroutines and Stacks
1 EE 109 Unit 15 Subroutines and Stacks 2 Program Counter and GPRs (especially $sp, $ra, and $fp) REVIEW OF RELEVANT CONCEPTS 3 Review of Program Counter PC is used to fetch an instruction PC contains
Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: MIPS Instruction Set Architecture
Computer Science 324 Computer Architecture Mount Holyoke College Fall 2007 Topic Notes: MIPS Instruction Set Architecture vonneumann Architecture Modern computers use the vonneumann architecture. Idea:
Lecture 3: The Instruction Set Architecture (cont.)
Lecture 3: The Instruction Set Architecture (cont.) COS / ELE 375 Computer Architecture and Organization Princeton University Fall 2015 Prof. David August 1 Review: Instructions Computers process information
All instructions have 3 operands Operand order is fixed (destination first)
Instruction Set Architecture for MIPS Processors Overview Dr. Arjan Durresi Louisiana State University Baton Rouge, LA 70803 durresi@csc.lsu.edu These slides are available at: http://www.csc.lsu.edu/~durresi/_07/
CS 61C: Great Ideas in Computer Architecture RISC-V Instruction Formats
CS 61C: Great Ideas in Computer Architecture RISC-V Instruction Formats Instructors: Krste Asanović and Randy H. Katz http://inst.eecs.berkeley.edu/~cs61c/fa17 9/14/17 Fall 2017 - Lecture #7 1 Levels of
The MIPS R2000 Instruction Set
The MIPS R2000 Instruction Set Arithmetic and Logical Instructions In all instructions below, Src2 can either be a register or an immediate value (a 16 bit integer). The immediate forms of the instructions
Lecture 2: RISC V Instruction Set Architecture. Housekeeping
S 17 L2 1 18 447 Lecture 2: RISC V Instruction Set Architecture James C. Hoe Department of ECE Carnegie Mellon University Housekeeping S 17 L2 2 Your goal today get bootstrapped on RISC V RV32I to start
Compilers and computer architecture: A realistic compiler to MIPS
1 / 1 Compilers and computer architecture: A realistic compiler to MIPS Martin Berger November 2017 Recall the function of compilers 2 / 1 3 / 1 Recall the structure of compilers Source program Lexical
Review of Activation Frames. FP of caller Y X Return value A B C
Review of Activation Frames In general, activation frames are organized like this: HI LO Bookkeeping/preserved registers I/O parameters Locals and temps RA of caller FP of caller Y X Return value A B C
ECE/CS 552: Introduction To Computer Architecture 1. Instructor:Mikko H. Lipasti. University of Wisconsin-Madison. Basics Registers and ALU ops
ECE/CS 552: Instruction Sets Instructor:Mikko H. Lipasti Fall 2010 University of Wisconsin-Madison Lecture notes partially based on set created by Mark Hill. Instructions (354 Review) Instructions are
Patterson PII. Solutions
Patterson-1610874 978-0-12-407726-3 PII 2 Solutions Chapter 2 Solutions S-3 2.1 addi f, h, -5 (note, no subi) add f, f, g 2.2 f = g + h + i 2.3 sub $t0, $s3, $s4 add $t0, $s6, $t0 lw $t1, 16($t0) sw $t1,
CS 61C: Great Ideas in Computer Architecture Introduction to Assembly Language and RISC-V Instruction Set Architecture
CS 61C: Great Ideas in Computer Architecture Introduction to Assembly Language and RISC-V Instruction Set Architecture Instructors: Krste Asanović & Randy H. Katz http://inst.eecs.berkeley.edu/~cs61c 9/7/17
MIPS Hello World. MIPS Assembly 1. # PROGRAM: Hello, World! # Data declaration section. out_string:.asciiz "\nhello, World!\n"
MIPS Hello World MIPS Assembly 1 # PROGRAM: Hello, World!.data # Data declaration section out_string:.asciiz "\nhello, World!\n".text # Assembly language instructions main: # Start of code section li $v0,
Solutions for Chapter 2 Exercises
Solutions for Chapter 2 Exercises 1 Solutions for Chapter 2 Exercises 2.2 By lookup using the table in Figure 2.5 on page 62, 7fff fffa hex = 0111 1111 1111 1111 1111 1111 1111 1010 two = 2,147,483,642
MIPS PROJECT INSTRUCTION SET and FORMAT
ECE 312: Semester Project MIPS PROJECT INSTRUCTION SET FORMAT This is a description of the required MIPS instruction set, their meanings, syntax, semantics, bit encodings. The syntax given for each instruction
4.2: MIPS function calls
4.2: MIPS function calls Topics: Nested function calls: poly() and pow() Saving the return address ($31) Saving temporary registers Looking at activation records on the stack Introduction: In CSc 256 lectures,
Problem maximum score 1 35pts 2 22pts 3 23pts 4 15pts Total 95pts
University of California at Berkeley College of Engineering Department of Electrical Engineering and Computer Sciences CS61c Summer 2001 Woojin Yu Midterm Exam This is a closed-book exam. No calculators
Mark Redekopp, All rights reserved. EE 352 Unit 6. Stack Frames Recursive Routines
EE 352 Unit 6 Stack Frames Recursive Routines Arguments and Return Values MIPS convention is to use certain registers for this task $a0 - $a3 used to pass up to 4 arguments. If more arguments, use the
ISA: The Hardware Software Interface
ISA: The Hardware Software Interface Instruction Set Architecture (ISA) is where software meets hardware In embedded systems, this boundary is often flexible Understanding of ISA design is therefore important
2. dead code elimination (declaration and initialization of z) 3. common subexpression elimination (temp1 = j + g + h)
Problem 1 (20 points) Compilation Perform at least five standard compiler optimizations on the following C code fragment by writing the optimized version (in C) to the right. Assume f is a pure function
Procedure Calls Main Procedure. MIPS Calling Convention. MIPS-specific info. Procedure Calls. MIPS-specific info who cares? Chapter 2.7 Appendix A.
MIPS Calling Convention Chapter 2.7 Appendix A.6 Procedure Calls Main Procedure Call Procedure Call Procedure Procedure Calls Procedure must from any call Procedure uses that main was using We need a convention
ECE 2035 Programming HW/SW Systems Spring problems, 7 pages Exam One Solutions 4 February 2013
Problem 1 (3 parts, 30 points) Code Fragments Part A (5 points) Write a MIPS code fragment that branches to label Target when register $1 is less than or equal to register $2. You may use only two instructions.
Procedure Call Instructions
Procedure Calling Steps required 1. Place parameters in registers x10 to x17 2. Transfer control to procedure 3. Acquire storage for procedure 4. Perform procedure s operations 5. Place result in register