Machine Instructions - II. Hwansoo Han

Similar documents
Architecture II. Computer Systems Laboratory Sungkyunkwan University

MIPS R-format Instructions. Representing Instructions. Hexadecimal. R-format Example. MIPS I-format Example. MIPS I-format Instructions

MIPS Instruction Set Architecture (2)

Branch Addressing. Jump Addressing. Target Addressing Example. The University of Adelaide, School of Computer Science 28 September 2015

Chapter 2. Instructions: Language of the Computer. Adapted by Paulo Lopes

COMPUTER ORGANIZATION AND DESIGN

Thomas Polzer Institut für Technische Informatik

Chapter 2. Instructions: Language of the Computer

Chapter 2. Computer Abstractions and Technology. Lesson 4: MIPS (cont )

CS3350B Computer Architecture MIPS Procedures and Compilation

Control Instructions. Computer Organization Architectures for Embedded Computing. Thursday, 26 September Summary

Control Instructions

Computer Organization and Structure. Bing-Yu Chen National Taiwan University

Computer Organization and Structure. Bing-Yu Chen National Taiwan University

Computer Architecture Computer Science & Engineering. Chapter 2. Instructions: Language of the Computer BK TP.HCM

CSCI 402: Computer Architectures. Instructions: Language of the Computer (3) Fengguang Song Department of Computer & Information Science IUPUI.

Procedure Calling. Procedure Calling. Register Usage. 25 September CSE2021 Computer Organization

CSE 2021: Computer Organization

Lecture 2. Instructions: Language of the Computer (Chapter 2 of the textbook)

Chapter 2. Instruction Set. The MIPS Instruction Set. Arithmetic Operations. Instructions: Language of the Computer

Computer Architecture

Chapter 2A Instructions: Language of the Computer

Chapter 2. Instructions: Language of the Computer

Chapter 2. Instructions: Language of the Computer

Procedure Call Instructions

Instruction Set. The MIPS Instruction Set. Chapter 2

COMPUTER ORGANIZATION AND DESIGN. 5 th Edition. The Hardware/Software Interface. Chapter 2. Instructions: Language of the Computer

Rechnerstrukturen. Chapter 2. Instructions: Language of the Computer

Chapter 2. Baback Izadi Division of Engineering Programs

Chapter 2. Instructions: Language of the Computer

Instructions: MIPS ISA. Chapter 2 Instructions: Language of the Computer 1

Computer Architecture

Introduction to the MIPS. Lecture for CPSC 5155 Edward Bosworth, Ph.D. Computer Science Department Columbus State University

Machine Language Instructions Introduction. Instructions Words of a language understood by machine. Instruction set Vocabulary of the machine

Chapter 2. Instructions: Language of the Computer. HW#1: 1.3 all, 1.4 all, 1.6.1, , , , , and Due date: one week.

Chapter 2. Instructions: Language of the Computer. Baback Izadi ECE Department

Two processors sharing an area of memory. P1 writes, then P2 reads Data race if P1 and P2 don t synchronize. Result depends of order of accesses

COMPSCI 313 S Computer Organization. 7 MIPS Instruction Set

Instructions: Language of the Computer. Euiseong Seo Computer Systems Laboratory Sungkyunkwan University

COMPUTER ORGANIZATION AND DESIGN. 5 th Edition. The Hardware/Software Interface. Chapter 2. Instructions: Language of the Computer

Chapter 2. Instructions: Language of the Computer

CENG3420 Lecture 03 Review

Chapter 2. Instructions: Language of the Computer. Jiang Jiang

LECTURE 2: INSTRUCTIONS

CS3350B Computer Architecture MIPS Instruction Representation

Lecture 5: Procedure Calls

CENG3420 L03: Instruction Set Architecture

COMP 303 Computer Architecture Lecture 3. Comp 303 Computer Architecture

Lecture 5: Procedure Calls

ENGN1640: Design of Computing Systems Topic 03: Instruction Set Architecture Design

ELEC / Computer Architecture and Design Fall 2013 Instruction Set Architecture (Chapter 2)

Computer Organization MIPS ISA

ECE260: Fundamentals of Computer Engineering

Lecture 6: Assembly Programs

Computer Architecture

Computer Organization and Design

Chapter 2. Instructions: Language of the Computer

comp 180 Lecture 10 Outline of Lecture Procedure calls Saving and restoring registers Summary of MIPS instructions

Computer Architecture Instruction Set Architecture part 2. Mehran Rezaei

1/26/2014. Previously. CSE 2021: Computer Organization. The Load/Store Family (1) Memory Organization. The Load/Store Family (2)

Computer Architecture. Chapter 2-2. Instructions: Language of the Computer

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA

CISC 662 Graduate Computer Architecture. Lecture 4 - ISA MIPS ISA. In a CPU. (vonneumann) Processor Organization

Communicating with People (2.8)

Course Administration

Reduced Instruction Set Computer (RISC)

All instructions have 3 operands Operand order is fixed (destination first)

Instruction Set Architecture part 1 (Introduction) Mehran Rezaei

Reduced Instruction Set Computer (RISC)

Previously. CSE 2021: Computer Organization. Memory Organization. The Load/Store Family (1) 5/26/2011. Used to transfer data to/from DRAM.

Instructions: Language of the Computer

Chapter 2. Instruction Set Architecture (ISA)

Chapter 2: Instructions: Language of the Computer CSCE 212 Introduction to Computer Architecture, Spring

Chapter 2: Instructions:

EEM870 Embedded System and Experiment Lecture 4: ARM Instruction Sets

ECE 331 Hardware Organization and Design. Professor Jay Taneja UMass ECE - Discussion 3 2/8/2018

Instructions: Language of the Computer

ECE232: Hardware Organization and Design

ECE260: Fundamentals of Computer Engineering

Instructions: Assembly Language

Chapter 2. Instructions: Language of the Computer

Stored Program Concept. Instructions: Characteristics of Instruction Set. Architecture Specification. Example of multiple operands

Computer Science and Engineering 331. Midterm Examination #1. Fall Name: Solutions S.S.#:

Instructions: MIPS arithmetic. MIPS arithmetic. Chapter 3 : MIPS Downloaded from:

Assembly Language Programming. CPSC 252 Computer Organization Ellen Walker, Hiram College

Computer Architecture. The Language of the Machine

Overview. Introduction to the MIPS ISA. MIPS ISA Overview. Overview (2)

Chapter 3 MIPS Assembly Language. Ó1998 Morgan Kaufmann Publishers 1

Computer Architecture. MIPS Instruction Set Architecture

Topic Notes: MIPS Instruction Set Architecture

2.7 Supporting Procedures in hardware. Why procedures or functions? Procedure calls

Course Administration

Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: MIPS Instruction Set Architecture

EEC 581 Computer Architecture Lecture 1 Review MIPS

ECE232: Hardware Organization and Design. Computer Organization - Previously covered

CS 61C: Great Ideas in Computer Architecture. MIPS Instruction Formats

ECE369. Chapter 2 ECE369

Character Is a byte quantity (00~FF or 0~255) ASCII (American Standard Code for Information Interchange) Page 91, Fig. 2.21

ECE 30 Introduction to Computer Engineering

EN164: Design of Computing Systems Topic 03: Instruction Set Architecture Design

Transcription:

Machine Instructions - II Hwansoo Han

Conditional Operations Instructions for making decisions Alter the control flow - change the next instruction to be executed Branch to a labeled instruction if a condition is true beq rs, rt, L1 if (rs == rt) branch to instruction labeled L1; bne rs, rt, L1 if (rs!= rt) branch to instruction labeled L1; j L1 unconditional jump to instruction labeled L1 ; 2

Compiling If Statements C code: f, g, h, in $s0, $s1, $s2, MIPS code: if (i==j) f = g+h; else f = g-h; i = j f = g + h bne $s3, $s4, Else add $s0, $s1, $s2 j Exit Else: sub $s0, $s1, $s2 Exit: Assembler calculates addresses Exit: i == j i j Else: f = g - h

Compiling Loop Statements C code: i in $s3, k in $s5, address of save[] in $s6 save[] is an array of integers MIPS code: while (save[i] == k) i += 1; Loop: sll $t1, $s3, 2 add $t1, $t1, $s6 lw $t0, 0($t1) bne $t0, $s5, Exit addi $s3, $s3, 1 j Loop Exit:

Basic Blocks A basic block is a sequence of instructions with No embedded branches (except at the end) No branch targets (except at the beginning) Compilers indentifies basic blocks for optimization An advanced processor can accelerate execution of basic blocks

More Conditional Operations Set result to 1 if a condition is true Otherwise, set to 0 slt rd, rs, rt if (rs < rt) rd = 1; else rd = 0; slti rt, rs, constant if (rs < constant) rt = 1; else rt = 0; Use in combination with beq, bne slt $t0, $s1, $s2 # if ($s1 < $s2) bne $t0, $zero, L # branch to L

Branch Instruction Design Why not blt, bge, etc? Hardware for <,, slower than =, Combining with branch involves more work per instruction, requiring a slower clock All instructions are penalized! (longer pipeline stage) beq and bne are the common case This is a good design compromise

Signed vs. Unsigned Signed comparison: slt, slti Unsigned comparison: sltu, sltui Example $s0 = 1111 1111 1111 1111 1111 1111 1111 1111 $s1 = 0000 0000 0000 0000 0000 0000 0000 0001 slt $t0, $s0, $s1 # signed 1 < +1 $t0 = 1 sltu $t0, $s0, $s1 # unsigned +4,294,967,295 > +1 $t0 = 0

Procedure Calling Steps required for procedure calling 1. Place parameters in registers 2. Transfer control to procedure 3. Acquire storage for procedure 4. Perform procedure s operations 5. Place result in register for caller 6. Return to the place of call

Register Usage [review] Registers Usages $v0 $v1 Result values (reg s 2 3) $a0 $a3 Arguments (reg s 4 7) $t0 $t9 Temporaries (reg s 8 15, 24 25) Can be overwritten by callee $s0 $s7 Saved (reg s 16 23) Must be saved/restored by callee $gp Global pointer for static data (reg 28) $sp Stack pointer (reg 29) $fp Frame pointer (reg 30) $ra Return address (reg 31)

Procedure Call Instructions Procedure call: jump and link jal ProcedureLabel Address of the following instruction is put in $ra Jumps to target address (ProcedreLabel) Procedure return: jump register jr $ra Copies $ra to program counter (PC) Can also be used for computed jumps (indirect jump) e.g., case/switch statements use jump tables

Leaf Procedure Example C code: int leaf_example (int g, h, i, j) { int f; } f = (g + h) - (i + j); return f; Arguments g,, j in $a0,, $a3 f in $s0 hence, the callee needs to save $s0 on stack before the body of function Result in $v0

Leaf Procedure Example (cont d) MIPS code: leaf_example: addi $sp, $sp, -4 sw $s0, 0($sp) add $t0, $a0, $a1 add $t1, $a2, $a3 sub $s0, $t0, $t1 add $v0, $s0, $zero lw $s0, 0($sp) addi $sp, $sp, 4 jr $ra Save $s0 on stack Procedure body Result Restore $s0 Return

Non-Leaf Procedures Procedures that call other procedures For nested call, caller needs to save on the stack: Its return address Any arguments and temporaries needed after the call Restore from the stack after the call Example Argument n in $a0 Result in $v0 int fact (int n) { if (n < 1) return f; else return n * fact(n - 1); }

Non-Leaf Procedure Example MIPS code: fact: addi $sp, $sp, -8 # adjust stack for 2 items sw $ra, 4($sp) # save return address sw $a0, 0($sp) # save argument slti $t0, $a0, 1 # test for n < 1 beq $t0, $zero, L1 addi $v0, $zero, 1 # if so, result is 1 addi $sp, $sp, 8 # pop 2 items from stack jr $ra # and return L1: addi $a0, $a0, -1 # else decrement n jal fact # recursive call lw $a0, 0($sp) # restore original n lw $ra, 4($sp) # and return address addi $sp, $sp, 8 # pop 2 items from stack mul $v0, $a0, $v0 # multiply to get result jr $ra # and return

Local Data on the Stack Local data allocated by callee e.g., C automatic variables Procedure frame (activation record) Used by some compilers to manage stack storage

Memory Layout Text: program code Static data: global variables e.g., static variables in C, constant arrays and strings $gp initialized to a certain address allowing ±offsets into this segment Dynamic data: heap e.g., malloc in C, new in Java Stack: automatic storage

Character Data Byte-encoded character sets ASCII: 128 characters 95 graphic, 33 control Latin-1: 256 characters ASCII, +96 more graphic characters Unicode: 32-bit character set Used in Java, C++ wide characters, Most of the world s alphabets, plus symbols UTF-8, UTF-16: variable-length encodings

Byte/Halfword Operations String processing is a common case Could use bitwise operations to extract from a word But MIPS provides byte/halfword load/store lb rt, offset(rs) lh rt, offset(rs) Load as a signed number: sign extend to 32 bits in rt lbu rt, offset(rs) lhu rt, offset(rs) Load as an unsigned number: zero extend to 32 bits in rt sb rt, offset(rs) sh rt, offset(rs) Store just rightmost byte/halfword into the memory

String Copy Example C code (naïve): Null-terminated string Addresses of x, y in $a0, $a1 i in $s0 void strcpy (char x[], char y[]) { int i; } i = 0; while ((x[i]=y[i])!='\0') i += 1;

String Copy Example (cont d) MIPS code: strcpy: addi $sp, $sp, -4 # adjust stack for 1 item sw $s0, 0($sp) # save $s0 add $s0, $zero, $zero # i = 0 L1: add $t1, $s0, $a1 # addr of y[i] in $t1 lbu $t2, 0($t1) # $t2 = y[i] add $t3, $s0, $a0 # addr of x[i] in $t3 sb $t2, 0($t3) # x[i] = y[i] beq $t2, $zero, L2 # exit loop if y[i] == 0 addi $s0, $s0, 1 # i = i + 1 j L1 # next iteration of loop L2: lw $s0, 0($sp) # restore saved $s0 addi $sp, $sp, 4 # pop 1 item from stack jr $ra # and return

32-bit Constants Most constants are small 16-bit immediate is sufficient If big, use memory or a special instruction (lui) For the occasional 32-bit constant, use lui lui rt, constant # load-upper-immediate Copies 16-bit constant to left 16 bits of rt Clears right 16 bits of rt to 0 lui $s0, 61 ori $s0, $s0, 2304 0000 0000 0111 1101 0000 0000 0000 0000 0000 0000 0111 1101 0000 1001 0000 0000

Branch Addressing (I-format) Branch instructions specify Opcode, two registers, target address Most branch targets are near branch Forward or backward op rs rt constant or address 6 bits 5 bits 5 bits 16 bits PC-relative addressing Target address = PC + offset x 4 Offset is specified in 16-bit constant PC already incremented by 4 by this time

Jump Addressing (J-format) Jump targets could be anywhere in text segment Encode full address in instruction j jal target target op address 6 bits 26 bits (Pseudo) Direct jump addressing Target address = PC 31 28 : (address x 4) The left 4 bits of the full address is copied from PC

Target Addressing Example Loop code from earlier example Assume Loop at location 80000 Loop: sll $t1, $s3, 2 80000 0 0 19 9 4 0 add $t1, $t1, $s6 80004 0 9 22 9 0 32 lw $t0, 0($t1) 80008 35 9 8 0 bne $t0, $s5, Exit 80012 5 8 21 2 addi $s3, $s3, 1 80016 8 19 19 1 j Loop 80020 2 20000 Exit: 80024

Branching Far Away If branch target is too far to encode with 16-bit offset Assembler rewrites the code to use jump instruction Example beq $s0,$s1, L1 bne $s0,$s1, L2 j L1 L2:

Addressing Mode Summary

Review of MIPS Instruction Formats Simple instructions all 32 bits wide Very structured, no unnecessary baggage Only three instruction formats R-format I-format 6 bits 5 bits 5 bits 5 bits 5 bits 6 bits op rs rt rd shamt funct op rs rt 16 bit constant or address J-format op 26 bit address Rely on compiler to achieve performance What are the compiler's goals? Help compiler where we can 28

MIPS ISA Summary M IP S o p e r a n d s N a m e E x a m p le C o m m e n ts $s0-$s7, $t0-$t9, $zero, F a s t lo c a tio n s fo r d a ta. In M IP S, d a ta m u s t b e in re g is te rs to p e rfo rm 3 2 re g is te rs $a0-$a3, $v0-$v1, $gp, a rith m e tic. M IP S re g is te r $ z e ro a lw a y s e q u a ls 0. R e g is te r $ a t is $fp, $sp, $ra, $at re s e rv e d fo r th e a s s e m b le r to h a n d le la rg e c o n s ta n ts. M e m o ry [0 ], A c c e s s e d o n ly b y d a ta tra n s fe r in s tru c tio n s. M IP S u s e s b y te a d d re s s e s, s o 2 30 m e m o ry M e m o ry [4 ],..., s e q u e n tia l w o rd s d iffe r b y 4. M e m o ry h o ld s d a ta s tru c tu re s, s u c h a s a rra y s, w o rd s M e m o ry [4 2 9 4 9 6 7 2 9 2 ] a n d s p ille d re g is te rs, s u c h a s th o s e s a v e d o n p ro c e d u re c a lls. M IP S a s s e m b ly la n g u a g e C a te g o ry In s tru c tio n E x a m p le M e a n in g C o m m e n ts add add $s1, $s2, $s3 $s1 = $s2 + $s3 T h re e o p e ra n d s ; d a ta in re g is te rs A rith m e tic s u b tra c t sub $s1, $s2, $s3 $s1 = $s2 - $s3 T h re e o p e ra n d s ; d a ta in re g is te rs a d d im m e d ia te addi $s1, $s2, 100 $s1 = $s2 + 100 U s e d to a d d c o n s ta n ts lo a d w o rd lw $s1, 100($s2) $s1 = M e m o ry [$s2 + 1 0 0 ] W o rd fro m m e m o ry to re g is te r s to re w o rd sw $s1, 100($s2) M e m o ry [$s2 + 1 0 0 ] = $ s 1 W o rd fro m re g is te r to m e m o ry D a ta tra n s fe r lo a d b y te lb $s1, 100($s2) $s1 = M e m o ry [$s2 + 1 0 0 ] B y te fro m m e m o ry to re g is te r s to re b y te sb $s1, 100($s2) M e m o ry [$s2 + 1 0 0 ] = $ s 1 B y te fro m re g is te r to m e m o ry lo a d u p p e r im m e d ia te lui $s1, 100 $ s 1 = 1 0 0 * 2 16 L o a d s c o n s ta n t in u p p e r 1 6 b its b ra n c h o n e q u a l beq $s1, $s2, 25 if ($s1 == $s2) g o to P C + 4 + 1 0 0 b ra n c h o n n o t e q u a l bne $s1, $s2, 25 if ($s1!= $s2) g o to P C + 4 + 1 0 0 C o n d itio n a l b ra n c h s e t o n le s s th a n slt $s1, $s2, $s3 if ($s2 < $s3) $s1 = 1 ; e ls e $s1 = 0 E q u a l te s t; P C -re la tiv e b ra n c h N o t e q u a l te s t; P C -re la tiv e C o m p a re le s s th a n ; fo r b e q, b n e s e t le s s th a n im m e d ia te slti $s1, $s2, 100 if ($s2 < 100) $s1 = 1 ; e ls e $s1 = 0 C o m p a re le s s th a n c o n s ta n t ju m p j 2500 g o to 1 0 0 0 0 J u m p to ta rg e t a d d re s s 29 U n c o n d i- ju m p re g is te r jr $ra g o to $ra F o r s w itc h, p ro c e d u re re tu rn tio n a l ju m p ju m p a n d lin k jal 2500 $ra = P C + 4 ; g o to 1 0 0 0 0 F o r p ro c e d u re c a ll

Synchronization Two processors sharing an area of memory P1 writes, then P2 reads Data race if P1 and P2 don t synchronize Result depends of order of accesses Hardware support required Atomic read/write memory operation No other access to the location allowed between read and write Could be a single instruction e.g., atomic swap of register memory or an atomic pair of instructions

Synchronization in MIPS Load linked: ll rt, offset(rs) Store conditional: sc rt, offset(rs) Succeeds if location not changed since the ll Returns 1 in rt Fails if location is changed Returns 0 in rt Example: atomic swap of $s4 and 0($s1) to test/set lock variable try: add $t0,$zero,$s4 # copy exchange value ll $t1,0($s1) # load linked sc $t0,0($s1) # store conditional beq $t0,$zero,try # branch store fails add $s4,$zero,$t1 # put load value in $s4

Translation and Startup Many compilers produce object modules directly Static linking

Assembler Pseudoinstructions Most assembler instructions represent machine instructions one-to-one Pseudoinstructions Figments of the assembler s imagination $at (register 1): assembler temporary register move $t0, $t1 add $t0, $zero, $t1 blt $t0, $t1, L slt $at, $t0, $t1 bne $at, $zero, L

Producing an Object Module Assembler (or compiler) translates program into machine instructions Provides information for building a complete program from the pieces Contents Header Text segment Static data segment Relocation info. Symbol table Debug info. Description Describes the contents of object module Translated instructions (machine code) Data allocated for the life of the program Identifies instructions and data that depend on absolute addresses when loaded in memory Global definitions and external references Associates machine instructions with source code

Linking Object Modules Produces an executable image 1. Merges segments 2. Resolve labels (determine their addresses) 3. Patch location-dependent and external refs Could leave location dependencies for fixing by a relocating loader But with virtual memory, no need to do this Program can be loaded into absolute location in virtual memory space

Loading a Program Load from image file on disk into memory 1. Read header to determine segment sizes 2. Create virtual address space 3. Copy text and initialized data into memory Or set page table entries so they can be faulted in 4. Set up arguments (if any) on stack for the entry function 5. Initialize registers (including $sp, $fp, $gp) 6. Jump to startup routine Copies arguments to $a0, and calls main When main returns, do exit syscall

Dynamic Linking Only link/load library procedure when it is called Requires procedure code to be relocatable Avoids image bloat caused by static linking of all (transitively) referenced libraries Automatically picks up new library versions

Lazy Linkage Indirection table Stub: Loads routine ID, Jump to linker/loader Linker/loader code Dynamically mapped code

Starting Java Applications Simple portable instruction set for the JVM Compiles bytecodes of hot methods into native code for host machine Interprets bytecodes