CS61C L8 Decisions(2), Procedures(1) (1) Chae, Summer 2008 © UCB Albert Chae, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture.

Slides:



Advertisements
Similar presentations
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 10 – Introduction to MIPS Procedures I If cars broadcast their speeds to.
Advertisements

1 Lecture 3: MIPS Instruction Set Today’s topic:  More MIPS instructions  Procedure call/return Reminder: Assignment 1 is on the class web-page (due.
CENG 311 Decisions in C/Assembly Language
4.
The University of Adelaide, School of Computer Science
©UCB CS 161 Lecture 4 Prof. L.N. Bhuyan
Lecture 6: MIPS Instruction Set Today’s topic –Control instructions –Procedure call/return 1.
Computer Architecture CSCE 350
CPS3340 COMPUTER ARCHITECTURE Fall Semester, /17/2013 Lecture 12: Procedures Instructor: Ashraf Yaseen DEPARTMENT OF MATH & COMPUTER SCIENCE CENTRAL.
Procedures II (1) Fall 2005 Lecture 07: Procedure Calls (Part 2)
The University of Adelaide, School of Computer Science
CSCI-365 Computer Organization Lecture Note: Some slides and/or pictures in the following are adapted from: Computer Organization and Design, Patterson.
CML CML CS 230: Computer Organization and Assembly Language Aviral Shrivastava Department of Computer Science and Engineering School of Computing and Informatics.
cs61c L5 Decisions 9/13/00 1 CS61C - Machine Structures Lecture 5 - Decisions in C/Assembly Language September 13, 2000 David Patterson
CS61C L8 Introduction to MIPS : Decisions II & Procedures I (1) Pearce, Summer 2010 © UCB inst.eecs.berkeley.edu/~cs61c UCB CS61C.
1 CS61C L6 Machine Rep Clap if you like pizza! Pointless Poll.
CS 61C L11 Introduction to MIPS: Procedures I (1) Garcia, Spring 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61CL L03 MIPS I: Registers, Memory, Decisions (1) Huddleston, Summer 2009 © UCB Jeremy Huddleston inst.eecs.berkeley.edu/~cs61c CS61CL : Machine Structures.
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 10 – Introduction to MIPS Decisions II In what may be regarded as the most.
CS61C L11 Introduction to MIPS: Procedures I (1) Garcia © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L10 Introduction to MIPS : Decisions II (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
1 CS 430 Computer Architecture Clap if you like pizza! Pointless Poll.
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 10 Introduction to MIPS : Decisions II People are wondering what the next.
Lecture 4: Loads, Logic, Loops. Review Memory is byte-addressable, but lw and sw access one word at a time. These instructions transfer the contents of.
CS61C L8 MIPS Procedures (1) Beamer, Summer 2007 © UCB Scott Beamer, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #8 – MIPS.
ECE 15B Computer Organization Spring 2010 Dmitri Strukov Lecture 7: Procedures I Partially adapted from Computer Organization and Design, 4 th edition,
Lecture 6: Procedures (cont.). Procedures Review Called with a jal instruction, returns with a jr $ra Accepts up to 4 arguments in $a0, $a1, $a2 and $a3.
CS61C L7 MIPS Decisions (1) Garcia, Fall 2005 © UCB Lecturer PSOE, new dad Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L10 Introduction to MIPS : Decisions II (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
Decisions in C/Assembly Language Jen-Chang Liu, Spring 2006 Adapted from
Lecture 6: Procedure Call (Part I)
CS61C L7 MIPS Decisions (1) Beamer, Summer 2007 © UCB Scott Beamer, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #7 – MIPS.
CS61C L11 Introduction to MIPS : Procedures I (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
Machine Structures Lecture 4 – Introduction to MIPS Procedures I
CS 61C L07 MIPS Memory (1) A Carle, Summer 2005 © UCB inst.eecs.berkeley.edu/~cs61c/su05 CS61C : Machine Structures Lecture #7: MIPS Memory & Decisions.
Procedures I Fall 2010 Lecture 6: Procedures. Procedures I Fall 2010 Function call book-keeping in C main() { int i,j,k,m;... i = mult(j,k);... m = mult(i,i);...
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 07 Introduction to MIPS : Decisions II Researchers at Microsoft and UW.
Procedures I Fall 2005 C functions main() { int i,j,k,m;... i = mult(j,k);... m = mult(i,i);... } /* really dumb mult function */ int mult (int mcand,
CS61C L11 Introduction to MIPS : Procedures I (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS 61C L08 MIPS Procedures (1) A Carle, Summer 2005 © UCB inst.eecs.berkeley.edu/~cs61c/su05 CS61C : Machine Structures Lecture #8: MIPS Procedures
Lecture 5: Procedures. Function call book-keeping in C main() { int i,j,k,m;... i = mult(j,k);... m = mult(i,i);... } /* really dumb mult function */
CS 61C L10 Introduction to MIPS: Decisions II (1) Garcia, Fall 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS 61C L10 Introduction to MIPS: Decisions II (1) Garcia, Spring 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
Procedure Conventions & The Stack Jen-Chang Liu, Spring 2006 Adapted from
More decisions and logic (1) Fall 2010 Lecture 4: Loads, Logic, Loops.
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 11 – Introduction to MIPS Procedures I Internet2, a non-profit advanced.
CS 61C: Great Ideas in Computer Architecture Lecture 6: More MIPS, MIPS Functions Instructor: Sagar Karandikar
Topic 9: Procedures CSE 30: Computer Organization and Systems Programming Winter 2011 Prof. Ryan Kastner Dept. of Computer Science and Engineering University.
CSCI-365 Computer Organization Lecture Note: Some slides and/or pictures in the following are adapted from: Computer Organization and Design, Patterson.
IT 251 Computer Organization and Architecture More MIPS Control Instructions Chia-Chi Teng.
Procedure (Method) Calls Ellen Spertus MCS 111 September 25, 2003.
CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions 1 Instructors: John Wawrzynek & Vladimir Stojanovic
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 07 Introduction to MIPS : Decisions II Guest Lecturer Alan Christopher.
CS61C L8 MIPS Procedures (1) Garcia, Fall 2005 © UCB Lecturer PSOE, new dad Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
1 CS61C L6 Machine Rep CENG 311 Procedure Conventions & The Stack.
Computer Architecture CSE 3322 Lecture 4 Assignment: 2.4.1, 2.4.4, 2.6.1, , Due 2/10/09
Chapter 2 — Instructions: Language of the Computer — 1 Conditional Operations Branch to a labeled instruction if a condition is true – Otherwise, continue.
IT 251 Computer Organization and Architecture Introduction to MIPS Procedures Chia-Chi Teng.
CS 61C L11 Introduction to MIPS: Procedures I (1) Garcia, Fall 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
Cs 61C L4 Functions.1 Patterson Spring 99 ©UCB CS61C Functions, Procedures in C/Assembly Language Lecture 4 January 29, 1999 Dave Patterson (http.cs.berkeley.edu/~patterson)
Inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 10 – Introduction to MIPS Procedures I Apple took a bold step recently.
1. CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions 2 Instructors: Vladimir Stojanovic & Nicholas Weaver
CSCI-365 Computer Organization Lecture Note: Some slides and/or pictures in the following are adapted from: Computer Organization and Design, Patterson.
CSCI-365 Computer Organization Lecture Note: Some slides and/or pictures in the following are adapted from: Computer Organization and Design, Patterson.
Decisions (cont), Procedures. Review Memory transfer: lw, sw, lb, sb A Decision allows us to decide what to execute at run-time rather than compile-time.
Rocky K. C. Chang Version 0.1, 25 September 2017
RISC Concepts, MIPS ISA Logic Design Tutorial 8.
CS61C : Machine Structures Lecture 2. 2
Procedures and addressing
Reduced Instruction Set Computer (RISC)
Presentation transcript:

CS61C L8 Decisions(2), Procedures(1) (1) Chae, Summer 2008 © UCB Albert Chae, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #8 – Decisions (cont), Procedures

CS61C L8 Decisions(2), Procedures(1) (2) Chae, Summer 2008 © UCB Review Memory transfer: lw, sw, lb, sb A Decision allows us to decide what to execute at run-time rather than compile- time. C Decisions are made using conditional statements within if, while, do while, for. MIPS Decision making instructions are the conditional branches: beq and bne. Unsigned add/sub don’t cause overflow New MIPS Instructions: beq, bne, j, sll, srl addu, addiu, subu,

CS61C L8 Decisions(2), Procedures(1) (3) Chae, Summer 2008 © UCB Loops Review Key Concept: Though there are multiple ways of writing a loop in MIPS, the key to decision making is conditional branch do {g= g + A[i]; i= i + j; } while (i != h); Loop:g = g + A[i]; i = i + j; if (i != h) goto Loop;

CS61C L8 Decisions(2), Procedures(1) (4) Chae, Summer 2008 © UCB Inequalities in MIPS (1/3) Until now, we’ve only tested equalities ( == and != in C). General programs need to test as well. Create a MIPS Inequality Instruction: “Set on Less Than” Syntax: slt reg1,reg2,reg3 Meaning: if (reg2 < reg3) reg1 = 1; else reg1 = 0; In computereeze, “set” means “set to 1”, “reset” means “set to 0”. reg1 = (reg2 < reg3); Same thing…

CS61C L8 Decisions(2), Procedures(1) (5) Chae, Summer 2008 © UCB Inequalities in MIPS (2/3) How do we use this? Compile by hand: if (g < h) goto Less; #g:$s0, h:$s1 Answer: compiled MIPS code… slt $t0,$s0,$s1 # $t0 = 1 if g<h bne $t0,$0,Less # goto Less # if $t0!=0 # (if (g<h)) Less: Branch if $t0 != 0  ( g < h ) Register $0 always contains the value 0, so bne and beq often use it for comparison after an slt instruction. A slt  bne pair means if(… < …)goto…

CS61C L8 Decisions(2), Procedures(1) (6) Chae, Summer 2008 © UCB Inequalities in MIPS (3/3) Now, we can implement, ≤ and ≥ ? We could add 3 more instructions, but: MIPS goal: Simpler is Better Can we implement ≤ in one or more instructions using just slt and the branches? What about > ? What about ≥ ?

CS61C L8 Decisions(2), Procedures(1) (7) Chae, Summer 2008 © UCB Immediates in Inequalities There is also an immediate version of slt to test against constants: slti Helpful in for loops if (g >= 1) goto Loop Loop:... slti $t0,$s0,1 # $t0 = 1 if # $s0 =1)) C MIPSMIPS An slt  beq pair means if(… ≥ …)goto…

CS61C L8 Decisions(2), Procedures(1) (8) Chae, Summer 2008 © UCB What about unsigned numbers? Also unsigned inequality instructions: sltu, sltiu …which sets result to 1 or 0 depending on unsigned comparisons What is value of $t0, $t1 ? ( $s0 = FFFF FFFA hex, $s1 = 0000 FFFA hex ) slt $t0, $s0, $s1 sltu $t1, $s0, $s1

CS61C L8 Decisions(2), Procedures(1) (9) Chae, Summer 2008 © UCB MIPS Signed vs. Unsigned – diff meanings! MIPS Signed v. Unsigned is an “overloaded” term Do/Don't sign extend ( lb, lbu ) Don't overflow ( addu, addiu, subu, multu, divu ) Do signed/unsigned compare ( slt, slti / sltu, sltiu )

CS61C L8 Decisions(2), Procedures(1) (10) Chae, Summer 2008 © UCB Example: The C Switch Statement (1/3) Choose among four alternatives depending on whether k has the value 0, 1, 2 or 3. Compile this C code: switch (k) { case 0: f=i+j; break; /* k=0 */ case 1: f=g+h; break; /* k=1 */ case 2: f=g–h; break; /* k=2 */ case 3: f=i–j; break; /* k=3 */ }

CS61C L8 Decisions(2), Procedures(1) (11) Chae, Summer 2008 © UCB Example: The C Switch Statement (2/3) This is complicated, so simplify. Rewrite it as a chain of if-else statements, which we already know how to compile: if(k==0) f=i+j; else if(k==1) f=g+h; else if(k==2) f=g–h; else if(k==3) f=i–j; Use this mapping: f:$s0, g:$s1, h:$s2, i:$s3, j:$s4, k:$s5

CS61C L8 Decisions(2), Procedures(1) (12) Chae, Summer 2008 © UCB Example: The C Switch Statement (3/3) Final compiled MIPS code: bne $s5,$0,L1 # branch k!=0 add $s0,$s3,$s4 #k==0 so f=i+j j Exit # end of case so Exit L1: addi $t0,$s5,-1 # $t0=k-1 bne $t0,$0,L2 # branch k!=1 add $s0,$s1,$s2 #k==1 so f=g+h j Exit # end of case so Exit L2: addi $t0,$s5,-2 # $t0=k-2 bne $t0,$0,L3 # branch k!=2 sub $s0,$s1,$s2 #k==2 so f=g-h j Exit # end of case so Exit L3: addi $t0,$s5,-3 # $t0=k-3 bne $t0,$0,Exit # branch k!=3 sub $s0,$s3,$s4 #k==3 so f=i-j Exit:

CS61C L8 Decisions(2), Procedures(1) (13) Chae, Summer 2008 © UCB What C code properly fills in the blank in loop below? Peer Instruction do {i--;} while(__); Loop: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 1: j 2 && j 2 || j < i ($s0=i, $s1=j)

CS61C L8 Decisions(2), Procedures(1) (14) Chae, Summer 2008 © UCB Administrivia Extra OH today (12-2pm in 329 Soda) Don’t unplug things or eat in lab. Inst will get angry. Assignments Quiz 3 due 11:59pm Quiz 3 due 11:59pm HW2 due 11:59pm Proj1 due 11:59pm

CS61C L8 Decisions(2), Procedures(1) (15) Chae, Summer 2008 © UCB C functions main() { int i,j,k,m;... i = mult(j,k);... m = mult(i,i);... } /* really dumb mult function */ int mult (int mcand, int mlier){ int product; product = 0; while (mlier > 0) { product = product + mcand; mlier = mlier -1; } return product; } What information must compiler/programmer keep track of? What instructions can accomplish this?

CS61C L8 Decisions(2), Procedures(1) (16) Chae, Summer 2008 © UCB Function Call Bookkeeping Registers play a major role in keeping track of information for function calls. Register conventions: Return address $ra Arguments $a0, $a1, $a2, $a3 Return value $v0, $v1 Local variables $s0, $s1, …, $s7 The stack is also used; more later.

CS61C L8 Decisions(2), Procedures(1) (17) Chae, Summer 2008 © UCB Instruction Support for Functions (1/6)... sum(a,b);... /* a,b:$s0,$s1 */ } int sum(int x, int y) { return x+y; } address C MIPSMIPS In MIPS, all instructions are 4 bytes, and stored in memory just like data. So here we show the addresses of where the programs are stored.

CS61C L8 Decisions(2), Procedures(1) (18) Chae, Summer 2008 © UCB Instruction Support for Functions (2/6)... sum(a,b);... /* a,b:$s0,$s1 */ } int sum(int x, int y) { return x+y; } address 1000 add $a0,$s0,$zero # x = a 1004 add $a1,$s1,$zero # y = b 1008 addi $ra,$zero,1016 #$ra= j sum #jump to sum sum: add $v0,$a0,$a jr $ra# new instruction C MIPSMIPS

CS61C L8 Decisions(2), Procedures(1) (19) Chae, Summer 2008 © UCB Instruction Support for Functions (3/6)... sum(a,b);... /* a,b:$s0,$s1 */ } int sum(int x, int y) { return x+y; } 2000 sum: add $v0,$a0,$a jr $ra# new instruction C MIPSMIPS Question: Why use jr here? Why not simply use j? Answer: sum might be called by many functions, so we can’t return to a fixed place. The calling proc to sum must be able to say “return here” somehow.

CS61C L8 Decisions(2), Procedures(1) (20) Chae, Summer 2008 © UCB Instruction Support for Functions (4/6) Single instruction to jump and save return address: jump and link ( jal ) Before: 1008 addi $ra,$zero,1016 #$ra= j sum #goto sum After: 1008 jal sum # $ra=1012,goto sum Why have a jal ? Make the common case fast: function calls are very common. Also, you don’t have to know where the code is loaded into memory with jal.

CS61C L8 Decisions(2), Procedures(1) (21) Chae, Summer 2008 © UCB Instruction Support for Functions (5/6) Syntax for jal (jump and link) is same as for j (jump): jallabel jal should really be called laj for “link and jump”: Step 1 (link): Save address of next instruction into $ra (Why next instruction? Why not current one?) Step 2 (jump): Jump to the given label

CS61C L8 Decisions(2), Procedures(1) (22) Chae, Summer 2008 © UCB Instruction Support for Functions (6/6) Syntax for jr (jump register): jr register Instead of providing a label to jump to, the jr instruction provides a register which contains an address to jump to. Only useful if we know exact address to jump to. Very useful for function calls: jal stores return address in register ($ra) jr $ra jumps back to that address

CS61C L8 Decisions(2), Procedures(1) (23) Chae, Summer 2008 © UCB Nested Procedures (1/2) int sumSquare(int x, int y) { return mult (x,x)+ y; } Something called sumSquare, now sumSquare is calling mult. So there’s a value in $ra that sumSquare wants to jump back to, but this will be overwritten by the call to mult. Need to save sumSquare return address before call to mult.

CS61C L8 Decisions(2), Procedures(1) (24) Chae, Summer 2008 © UCB Nested Procedures (2/2) In general, may need to save some other info in addition to $ra. When a C program is run, there are 3 important memory areas allocated: Static: Variables declared once per program, cease to exist only after execution completes. E.g., C globals Heap: Variables declared dynamically Stack: Space to be used by procedure during execution; this is where we can save register values

CS61C L8 Decisions(2), Procedures(1) (25) Chae, Summer 2008 © UCB C memory Allocation review 0  Address Code Program Static Variables declared once per program Heap Explicitly created space, e.g., malloc(); C pointers Stack Space for saved procedure information $sp stack pointer

CS61C L8 Decisions(2), Procedures(1) (26) Chae, Summer 2008 © UCB Using the Stack (1/2) So we have a register $sp which always points to the last used space in the stack. To use stack, we decrement this pointer by the amount of space we need and then fill it with info. So, how do we compile this? int sumSquare(int x, int y) { return mult (x,x)+ y; }

CS61C L8 Decisions(2), Procedures(1) (27) Chae, Summer 2008 © UCB Using the Stack (2/2) Hand-compile sumSquare: addi $sp,$sp,-8 # space on stack sw $ra, 4($sp) # save ret addr sw $a1, 0($sp) # save y add $a1,$a0,$zero # prep args jal mult # call mult lw $a1, 0($sp) # restore y add $v0,$v0,$a1 # mult()+y lw $ra, 4($sp) # get ret addr addi $sp,$sp,8 # restore stack jr $ra mult:... int sumSquare(int x, int y) { return mult(x,x)+ y; } “push” “pop”

CS61C L8 Decisions(2), Procedures(1) (28) Chae, Summer 2008 © UCB Steps for Making a Procedure Call 1) Save necessary values onto stack. 2) Assign argument(s), if any. 3) jal call 4) Restore values from stack.

CS61C L8 Decisions(2), Procedures(1) (29) Chae, Summer 2008 © UCB Rules for Procedures Called with a jal instruction, returns with a jr $ra Accepts up to 4 arguments in $a0, $a1, $a2 and $a3 Return value is always in $v0 (and if necessary in $v1 ) Must follow register conventions (even in functions that only you will call)! So what are they? We’ll see these in a few slides…

CS61C L8 Decisions(2), Procedures(1) (30) Chae, Summer 2008 © UCB Basic Structure of a Function entry_label: addi $sp,$sp, -framesize sw $ra, framesize-4($sp) # save $ra save other regs if need be... restore other regs if need be lw $ra, framesize-4($sp) # restore $ra addi $sp,$sp, framesize jr $ra Epilogue Prologue Body (call other functions…) ra memory

CS61C L8 Decisions(2), Procedures(1) (31) Chae, Summer 2008 © UCB MIPS Registers The constant 0$0$zero Reserved for Assembler$1$at Return Values$2-$3$v0-$v1 Arguments$4-$7$a0-$a3 Temporary$8-$15$t0-$t7 Saved$16-$23$s0-$s7 More Temporary$24-$25$t8-$t9 Used by Kernel$26-27$k0-$k1 Global Pointer$28$gp Stack Pointer$29$sp Frame Pointer$30$fp Return Address$31$ra (From COD 3 rd Ed. green insert) Use names for registers -- code is clearer!

CS61C L8 Decisions(2), Procedures(1) (32) Chae, Summer 2008 © UCB Other Registers $at : may be used by the assembler at any time; unsafe to use $k0-$k1 : may be used by the OS at any time; unsafe to use $gp, $fp : don’t worry about them Note: Feel free to read up on $gp and $fp in Appendix A, but you can write perfectly good MIPS code without them.

CS61C L8 Decisions(2), Procedures(1) (33) Chae, Summer 2008 © UCB Peer Instruction When translating this to MIPS… A. We COULD copy $a0 to $a1 (& then not store $a0 or $a1 on the stack) to store n across recursive calls. B. We MUST save $a0 on the stack since it gets changed. C. We MUST save $ra on the stack since we need to know where to return to… ABC 1: FFF 2: FFT 3: FTF 4: FTT 5: TFF 6: TFT 7: TTF 8: TTT int fact(int n){ if(n == 0) return 1; else return(n*fact(n-1));}

CS61C L8 Decisions(2), Procedures(1) (34) Chae, Summer 2008 © UCB “And in Conclusion…” Functions called with jal, return with jr $ra. The stack is your friend: Use it to save anything you need. Just be sure to leave it the way you found it. Instructions we know so far Arithmetic: add, addi, sub, addu, addiu, subu Memory: lw, sw, lb, sb, lbu Decision: beq, bne, slt, slti, sltu, sltiu Unconditional Branches (Jumps): j, jal, jr Registers we know so far All of them!