Presentation is loading. Please wait.

Presentation is loading. Please wait.

CS/COE0447 Computer Organization & Assembly Language

Similar presentations


Presentation on theme: "CS/COE0447 Computer Organization & Assembly Language"— Presentation transcript:

1 CS/COE0447 Computer Organization & Assembly Language
Chapter 2 Part 2

2 Continuing from Chapter 2 Part 1
Starts with modified versions of Part 1’s last 5 slides

3 But first: errors on green card p1.
lbu I 0/24hex  lbu I 24hex lhu I 0/25hex  lbu I 25hex lw I 0/23hex  lw I 23hex EG: machine code for lbu $8,2($7) sll and srl: replace “rs” with “rt” (example later)

4 ANDI and ORI lui $t1, 0x7F40 addi $t2, $t1, 0x777
lui I R[rt] = {immediate,16’b0} andi I R[rt] & ZeroExtImm (3) (3) ZeroExtImm = {16{1’b0},immediate} In Verilog: 16'h704f // a 16-bit hex number 1b‘ // a 1-bit binary number lui $t1, 0x7F40 addi $t2, $t1, 0x777 andi $t3, $t2, 0x5555 Above and ori version in lecture

5 Long Immediates (e.g., memory addresses!)
Sometimes we need a long immediate, e.g., 32 bits MIPS requires that we use two instructions lui $t0, 0xaa55 ori $t0, $t0, 0xcc33 Note: this wouldn’t work if ori used SignExtImm rather than ZeroExtImm! (“or” with 0 == copy; like adding 0 in arithmetic) $t0 $t0

6 Loading a memory address
.data places values in memory starting at 0x bits are needed to specify memory addresses. 1 instruction is impossible: the address would take up the entire instruction!! (no room for the opcode!!) la $t0, 0x is a pseudo instruction – not implemented in the hardware lui $1, la $t0, 0x ori $8, $1, 8 lw $t1, 0($t0) #look at green card to #understand this addr mode

7 A program Get sample1.asm from the schedule Load it into the simulator
Figure out the memory contents, labels Trace through the code

8 .data # sample1.asm a: .word 3,4 c: .word 5,6 .text la $t0,c # address of c la $t1,k # address of k lw $s0,0($t0) # load c[0] lw $s1,4($t1) # load k[1] slt $s3,$s0,$s1 # if c[0] < k[1], $s3 = 1, else $s3 = 0 beq $s3,$0,notless # if c[0] < k[1] swap their values sw $s0,4($t1) sw $s1,0($t0) notless: .data k: word 0xf,0x11,0x12

9 Quick Exercise From A-57: load immediate
li rdest, imm e.g., li $t0,0xffffffff “Move the immediate imm into register rdest” [nothing is said about sign or 0 extension] What type of instruction is this? E.g., is this an R-format instruction? Perhaps an I-format one? … Please explain.

10 Quick Exercise Answer In class

11 Memory Transfer Instructions
To load/store a word from/to memory: LOAD: move data from memory to register lw $t3, 4($t2) # $t3  M[$t2 + 4] STORE: move data from register to memory sw $t4, 16($t1) # M[$t1 + 16]  $t4 Support for other data types than 32-bit word is needed 16-bit half-word “short” type in C 16-bit processing is common in signal processing lhu and sh in MIPS 8-bit byte “char” type in C 8-bit processing is common in controller applications lbu and sb

12 Machine Code Example $a0: pointer to array $a1: k
void swap(int v[], int k) { int temp; temp = v[k]; v[k] = v[k+1]; v[k+1] = temp; } swap: sll $t0, $a1, 2 add $t1, $a0, $t0 lw $t3, 0($t1) lw $t4, 4($t1) sw $t4, 0($t1) sw $t3, 4($t1) jr $ra

13 Memory View Viewed as a large, single-dimensional 8-bit array with an address (“byte address”) A memory address is an index into the array BYTE 5 4 3 2 1

14 Addresses Specify Byte Locations
32-bit Words Half Words Bytes Addr. Addresses Specify Byte Locations Address of first byte Addresses are aligned: addresses are multiples of X, where X is the number of bytes. word (4 bytes) addresses are multiples of 4; half-word (2 bytes) addresses are multiples of 2 0000 0000 Addr = ?? 0001 0002 0000 0002 0003 0004 0004 Addr = ?? 0005 0006 0004 0006 0007 0008 0008 Addr = ?? 0009 000A 0008 000A 000B 000C 000C In Class: match up with format of memory shown by simulator Addr = ?? 000D 000E 000C 000E 000F

15 Example of Memory Allocation
.data b2: .byte 2,3,4 .align 2 .word 5,6,7 .text la $t0,b2 lbu $t2,0($t0) # $t2 = 0x02 lbu $t2,1($t0) # $t2 = 0x03 lbu $t2,3($t0) # $t2 = 0x00 (nothing was stored there) lbu $t2,4($t0) # $t2 = 0x00 (top byte of the 5 word) lbu $t2,7($t0) # $t2 = 0x05 (bottom byte of the 5 word)

16 Byte Ordering How should bytes within multi-byte words be ordered in memory? Conventions “Big Endian” machines (including MIPS machines) Least significant byte has highest address .data .word 3 (0x ; 03 is the least sig. byte) 03 is in “Little Endian” machines Least significant byte has lowest address 03 would be in

17 Byte Ordering Example Big Endian
Least significant byte has highest address Little Endian Least significant byte has lowest address Example Suppose variable x has 4-byte representation 0x Suppose address of x is 0x100 0x100 0x101 0x102 0x103 01 23 45 67 Big Endian Little Endian

18 … Memory Organization 232 bytes with byte addresses from 0 to 232 – 1
WORD 20 16 12 8 4 232 bytes with byte addresses from 0 to 232 – 1 230 words with byte addresses 0, 4, 8, …, 232 – 4 231 half-words with byte addresses 0, 4, 8, …, 232 – 2 Suppose addresses were 5 bits. Bytes: 0…31; Words: 0,4,8,12,14,16,20,24,28, i.e., 0,4,..,2^5 – 4; Half-words: 0,2,4,…, 28, 30, i.e., 0,2,…,2^5-2. Unsigned numbers in n bits: 0 to 2^n - 1 Eg: 3 bits: 0 to 7 4 bits: 0 to 15 5 bits: 0 to 31

19 Misalignment Example … Misaligned accesses (errors!)
lw $t1, 3($zero) lbu $t1, 1($zero) Alignment issue does not exist for byte accesses 1 2 3 4 4 5 6 7 8 8 9 10 11

20 shamt is “shift amount”
Shift Instructions Name Fields Comments R-format op NOT USED rt rd shamt funct shamt is “shift amount” Bit-wise logic operations <op> <rdestination> <rsource> <shamt> Examples sll $t0, $s0, 4 # $t0 = $s0 << 4 srl $s0, $t0, 2 # $s0 = $t0 >> 2 These are the only shift instructions in the core instruction set Green card is wrong for sll and srl; “rs” should be “rt”

21 Shift Instructions Variations in the MIPS-32 instruction set:
Shift amount can be in a register (“shamt” field not used) sllv, srlv, srav Shift right arithmetic (SRA) keeps the sign of a number sra $s0, $t0, 4 Pseudo instructions: Rotate right/left: ror, rol

22 li $t0,0x77 li $t1,-8 li $t2,3 sll $t3,$t0,3 sllv $t3,$t0,$t2
.text li $t0,0x77 li $t1,-8 li $t2,3 sll $t3,$t0,3 sllv $t3,$t0,$t2 srl $t3,$t0,2 srl $t3,$t1,2 sra $t3,$t1,2 li $s0,0x li $s1,1 ror $s0,$s0,$s1

23 Control Decision-making instructions
Alter the control flow, i.e., change the “next” instruction to be executed MIPS conditional branch instructions bne $t0, $t1, LABEL beq $t0, $t1, LABEL Example bne $s0, $s1, LABEL add $s3, $s0, $s1 LABEL: … if (i == h) h =i+j; YES (i == h)? NO h=i+j; LABEL:

24 Control, cont’d MIPS unconditional branch instruction (jump) Example
j LABEL Example f, g, and h are in registers $s3, $s4, and $s5 if (i == h) f=g+h; else f=g–h; bne $s4, $s5, ELSE add $s3, $s4, $s5 j EXIT ELSE: sub $s3, $s4, $s5 EXIT: … (i == h)? f=g+h; YES NO f=g–h EXIT

25 # while (save[i] == k) # i += 1 .data save: .word 5,5,5,5,7,6,6,7 .text li $s3, # $s3 is 1; suppose i is 1 la $s6,save # $s6 is base address of array li $s5, # $s5 is k; suppose k is 5 loop: sll $t1,$s3,2 add $t1,$t1,$s6 #$t1 points to save[i] lw $t0,0($t1) #$t0 = save[i] bne $t0,$s5,exitloop addi $s3,$s3,1 # i += 1 j loop exitloop: add $s6,$s3,$zero

26 # sum = 0 # for (i = 0; i < n; i++) # sum += i addi $s0,$zero, # $s0 sum = 0 addi $s1,$zero, # $s1 n = 5; arbitrary value addi $t0,$zero, # $t0 i = 0 loop: slt $t1,$t0,$s # i < n? beq $t1,$zero,exitloop # if not, exit add $s0,$s0,$t # sum += i addi $t0,$t0, # i++ j loop exitloop: add $v0,$zero,$s # $v0 has the sum

27 # sum = 0 # for (i = 0; i < n; i++) # sum += i addi $s0,$zero,0 # $s0 sum = 0 addi $s1,$zero,5 # $s1 n = 5; a random value addi $t0,$zero,0 # $t0 i = 0 loop: bge $t0,$s1,exitloop # i < n? PSEUDO OP! add $s0,$s0,$t0 # sum += i addi $t0,$t0,1 # i++ j loop exitloop: add $v0,$zero,$s0 # $v0 has the sum

28 Instruction Format Branch/ Immediate op rs rt 16-bit immediate Address in the instruction is not a 32-bit number – it’s only 16-bit The 16-bit immediate value is in signed, 2’s complement form Addressing in branch instructions The 16-bit number in the instruction specifies the number of “instructions” to skip Memory address is obtained by adding this number to the PC Next address = PC sign_extend(16-bit immediate << 2) Example beq $s1, $s2, 100 4 17 18 25

29 0x 0x 0x c 0x bne $t0,$s5,exitloop addi $s3,$s3,1 j loop exitloop: add $s6,$s3,$zero

30 Instruction Format, cont’d
Jump op 26-bit immediate The address of next instruction is obtained by concatenating with PC Next address = {PC[31:28],IMM[25:0],00} Address boundaries of 256MB Example j 10000 2 2500

31 MIPS Addressing Modes Immediate addressing (I-format)
Register addressing (R-/I-format) Base addressing (load/store) [register + offset] PC-relative addressing (beq/bne) [PC offset] Pseudo-direct addressing (j) [concatenation w/ PC] op rs rt immediate op rs rt rd shamt funct op rs rt immediate op rs rt offset op rs rt offset op 26-bit address

32 Summary

33 Register Usage Convention
NAME REG. NUMBER USAGE $zero zero $at 1 reserved for assembler usage $v0~$v1 2~3 values for results and expression eval. $a0~$a3 4~7 arguments $t0~$t7 8~15 temporaries $s0~$s7 16~23 temporaries, saved $t8~$t9 24~25 more temporaries $k0~$k1 26~27 reserved for OS kernel $gp 28 global pointer $sp 29 stack pointer $fp 30 frame pointer $ra 31 return address

34 Stack and Frame Pointers
Stack pointer ($sp) Keeps the address to the top of the stack $29 is reserved for this purpose Stack grows from high address to low Typical stack operations are push/pop Procedure frame Contains saved registers and local variables “Activation record” Frame pointer ($fp) Points to the first word of a frame Offers a stable reference pointer $30 is reserved for this Some compilers don’t use $fp

35 “C Program” Down to “Numbers”
void swap(int v[], int k) { int temp; temp = v[k]; v[k] = v[k+1]; v[k+1] = temp; } swap: muli $2, $5, 4 add $2, $4, $2 lw $15, 0($2) lw $16, 4($2) sw $16, 0($2) sw $15, 4($2) jr $31 compiler assembler

36 To Produce an Executable
source file .asm/.s object file .obj/.o assembler source file .asm/.s object file .obj/.o executable .exe assembler linker source file .asm/.s object file .obj/.o library .lib/.a assembler

37 An Assembler Expands macros
Macro is a sequence of operations conveniently defined by a user A single macro can expand to many instructions Determines addresses and translates source into binary numbers Start from address 0 Record in “symbol table” addresses of labels Resolve branch targets and complete branch instructions’ encoding Record instructions that need be fixed after linkage Packs everything in an object file “Two-pass assembler” To handle forward references

38 An Object File Header Text segment Data segment Relocation information
Size and position of other pieces of the file Text segment Machine codes Data segment Binary representation of the data in the source Relocation information Identifies instructions and data words that depend on absolute addresses Symbol table Keeps addresses of global labels Lists unresolved references Debugging information Contains a concise description of the way in which the program was compiled

39 Assembler Directives Guides the assembler to properly handle following codes with certain considerations .text Tells assembler that codes follow .data Tells assembler that data follow .align Directs aligning the following items .global Tells to treat the following symbol as global .asciiz Tells to handle the following as a “string”

40 Code Example .text .align 2 .globl main main: subu $sp, $sp, 32 …
loop: lw $t6, 28($sp) la $a0, str lw $a1, 24($sp) jal printf jr $ra .data .align 0 str: .asciiz “The sum from 0 … 100 is %d\n”

41 Macro Example .data int_str: .asciiz “%d” .text .macro print_int($arg)
la $a0, int_str mov $a1, $arg jal printf .end_macro print_int($7) la $a0, int_str mov $a1, $7 jal printf

42 Linker

43 Procedure Calls Argument passing Result passing
First 4 arguments are passed through $a0~$a3 More arguments are passed through stack Result passing First 2 results are passed through $v0~$v1 More results can be passed through stack Stack manipulations can be tricky and error-prone More will be discussed in recitations

44 SPIM

45 High-Level Lang. vs. Assembly
High-level language Assembly Example C, Fortran, Java, … - + High productivity – Short description & readability Portability Low productivity – Long description & low readability Not portable Limited optimization capability in certain cases With proper knowledge and experiences, fully optimized codes can be written

46 Interpreter vs. Compiler
Concept Line-by-line translation and execution Whole program translation and native execution Example Java, BASIC, … C, Fortran, … + Interactive Portable (e.g., Java Virtual Machine) High performance Low performance Binary not portable to other machines or generations

47 Compiler Structure Compiler is a software with a variety of functions implemented inside it Front-end Deals with high-level language constructs and translates them into more relevant tree-like or list-format internal representation (IR) Symbols (e.g., a[i+8*j]) are still available Back-end Back-end IR that more or less correspond to machine instructions With more steps, IR becomes machine instructions

48 Compiler Structure, cont’d
Front-end Scanning Takes the input source program and chops the programs into recognizable “tokens” Also known as “lexical analysis” and “LEX” tool is used Parsing Takes the token stream, checks the syntax, and produces abstract syntax trees “YACC” or “BISON” tools are used Semantic analysis Takes the abstract syntax trees, performs type checking, and builds a symbol table IR generation Similar to assembly language program, but assumes unlimited registers, etc.

49 Compiler Structure, cont’d
Back-end Local optimization Optimizations within a basic block Common Sub-expression Elimination (CSE), copy propagation, constant propagation, dead code elimination, … Global optimization Optimizations that deal with multiple basic blocks Loop optimizations Loops are so important that many compiler and architecture optimizations target them Induction variable removal, loop invariant removal, strength reduction, … Register allocation Try to keep as many variables in registers as possible Machine-dependent optimizations Utilize any useful instructions provided by the target machine

50 Code Example (AST) while (save[i] == k) i+=1;

51 Code Example (IR)

52 Code Example (CFG)

53 Code Example (CFG), cont’d

54 Code Example (Reg. Alloc.)

55 Compiler Example gcc (GNU open-source C Compiler) cpp: C pre-processor
Macro expansion (#define) File expansion (#include) Handles other directives (#if, #else, #pragma) cc1: C compiler (front-end & back-end) Compiles your C program gas: assembler Assembles compiler-generated assembly codes ld: linker Links all the object files and library files to generate an executable

56 Optimization and Compile Time
Optimizations are a must Code quality is much improved - 2 ~ 10 times improvement is not uncommon Turning on optimizations can incur a significant compile time overhead For a big, complex software project, compile time is an issue Not that serious in many cases as compiling is a rare event compared to program execution Considering the resulting code quality, you pay this fee Now, computers became fast!

57 Building a Compiler A modern compiler is a very complex software tool
Need a very careful design of data structures All good software engineering techniques applied Traditional tools to create a compiler LEX YACC/BISON Start from existing open-source compilers LCC GCC There are many other research prototypes! If you are interested in compiler technologies CS1621 – Structure of Programming Languages CS1622 – Introduction to Compiler Design

58 Summary Operations and operands In MIPS assembly language Some lessons
Registers replace C variables One instruction (simple operation) per line Some lessons Simpler is better e.g., A few instruction formats vs. many complex instruction formats Smaller is faster e.g., 32 GPRs vs. 128 GPRs Instructions Arithmetic Logic Memory transfer


Download ppt "CS/COE0447 Computer Organization & Assembly Language"

Similar presentations


Ads by Google