Lecture 10: Program Development versus Execution Environment

Similar documents
ECE 15B COMPUTER ORGANIZATION

ECE 15B COMPUTER ORGANIZATION

Review (1/2) IEEE 754 Floating Point Standard: Kahan pack as much in as could get away with. CS61C - Machine Structures

CS61C : Machine Structures

Assembler. #13 Running a Program II

CS61C : Machine Structures

CS61C Machine Structures. Lecture 18 - Running a Program I. 3/1/2006 John Wawrzynek. www-inst.eecs.berkeley.edu/~cs61c/

CS 110 Computer Architecture Running a Program - CALL (Compiling, Assembling, Linking, and Loading)

ecture 12 From Code to Program: CALL (Compiling, Assembling, Linking, and Loading) Friedland and Weaver Computer Science 61C Spring 2017

CS 61C: Great Ideas in Computer Architecture CALL continued ( Linking and Loading)

From Code to Program: CALL Con'nued (Linking, and Loading)

Review. Disassembly is simple and starts by decoding opcode field. Lecture #13 Compiling, Assembly, Linking, Loader I

UC Berkeley CS61C : Machine Structures

CS 61C: Great Ideas in Computer Architecture Running a Program - CALL (Compiling, Assembling, Linking, and Loading)

EEM 486: Computer Architecture. Lecture 2. MIPS Instruction Set Architecture

CS 61C: Great Ideas in Computer Architecture Running a Program - CALL (Compiling, Assembling, Linking, and Loading)

Lecture 7: Procedures and Program Execution Preview

Administrivia. Midterm Exam - You get to bring. What you don t need to bring. Conflicts? DSP accomodations? Head TA

Review. Lecture 18 Running a Program I aka Compiling, Assembling, Linking, Loading

UCB CS61C : Machine Structures

Review C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o

Review C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o

CS 61c: Great Ideas in Computer Architecture

Administrivia. Translation. Interpretation. Compiler. Steps to Starting a Program (translation)

UCB CS61C : Machine Structures

UCB CS61C : Machine Structures

Where Are We Now? Linker (1/3) Linker (2/3) Four Types of Addresses we ll discuss. Linker (3/3)

CALL (Compiler/Assembler/Linker/ Loader)

UCB CS61C : GREAT IDEAS IN COMPUTER ARCHITECTURE

Orange Coast College. Business Division. Computer Science Department CS 116- Computer Architecture. The Instructions

Administrivia. Midterm Exam - You get to bring. What you don t need to bring. Conflicts? DSP accomodations? Head TA

CS61C : Machine Structures

CS61C : Machine Structures

Review! Lecture 5 C Memory Management !

Outline. Review: RISC-V Instruction Formats

CS 61C: Great Ideas in Computer Architecture Running a Program - CALL (Compiling, Assembling, Linking, and Loading)

CS61C : Machine Structures

MIPS (SPIM) Assembler Syntax

CS 61C: Great Ideas in Computer Architecture Lecture 8: Running a Program (Compiling, Assembling, Linking, and Loading)

Numbers: positional notation. CS61C Machine Structures. Faux Midterm Review Jaein Jeong Cheng Tien Ee. www-inst.eecs.berkeley.

May Saeid Nooshabadi. Overview ELEC2041. Compiler Assembler Linker Loader Example. Microprocessors and Interfacing

September, Saeid Nooshabadi. Overview COMP Compiler Assembler Linker Loader Example

Lectures 13 & 14. memory management

Lecture 7: Examples, MARS, Arithmetic

Lecture 7: Procedures

Lecture 9: Disassembly

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

CS61C : Machine Structures

Assemblers and Linkers

Assemblers and Compilers

In Java we have the keyword null, which is the value of an uninitialized reference type

ECE 15B COMPUTER ORGANIZATION

Slide Set 4. for ENCM 369 Winter 2018 Section 01. Steve Norman, PhD, PEng

CSE 2021: Computer Organization

CS61C L12 MIPS Instruction Rep III, Running a Program I (6) Integer mult, div uses hi, lo regs mfhi and mflo copies out.

Lecture 3: Instruction Set Architecture

Architecture II. Computer Systems Laboratory Sungkyunkwan University

CS 61C: Great Ideas in Computer Architecture More MIPS, MIPS Functions

MIPS Functions and the Runtime Stack

ECE 2035 Programming HW/SW Systems Spring problems, 6 pages Exam Three 10 April 2013

Assembler. Lecture 8 CS301

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

We will study the MIPS assembly language as an exemplar of the concept.

CS 110 Computer Architecture Review for Midterm I

Review: C Strings. A string in C is just an array of characters. Lecture #4 C Strings, Arrays, & Malloc

ECE 30 Introduction to Computer Engineering

Lecture 6: Assembly Programs

MIPS Assembly Language Programming

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

MIPS Assembly Language Programming

CS 110 Computer Architecture Lecture 6: More MIPS, MIPS Functions

CENG3420 Lecture 03 Review

CS61C Machine Structures. Lecture 5 C Structs & Memory Mangement. 1/27/2006 John Wawrzynek. www-inst.eecs.berkeley.edu/~cs61c/

ECE 2035 Programming HW/SW Systems Fall problems, 7 pages Exam Two 23 October 2013

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

MIPS Functions and Instruction Formats

MIPS Instruction Set Architecture (2)

CS 61c: Great Ideas in Computer Architecture

CS 61c: Great Ideas in Computer Architecture

M2 Instruction Set Architecture

ECE 15B Computer Organization Spring 2010

EEM 486: Computer Architecture. Lecture 2. MIPS Instruction Set Architecture

CS61C Machine Structures. Lecture 4 C Structs & Memory Management. 9/5/2007 John Wawrzynek. www-inst.eecs.berkeley.edu/~cs61c/

The plot thickens. Some MIPS instructions you can write cannot be translated to a 32-bit number

Lec 10: Assembler. Announcements

CS61C : Machine Structures

Introduction to Computer Architecture

Inequalities in MIPS (2/4) Inequalities in MIPS (1/4) Inequalities in MIPS (4/4) Inequalities in MIPS (3/4) UCB CS61C : Machine Structures

The plot thickens. Some MIPS instructions you can write cannot be translated to a 32-bit number

QtSPIM and MARS : MIPS Simulators

Computer Science 2500 Computer Organization Rensselaer Polytechnic Institute Spring Topic Notes: MIPS Programming

101 Assembly. ENGR 3410 Computer Architecture Mark L. Chang Fall 2009

CS61C : Machine Structures

CS 110 Computer Architecture MIPS Instruction Formats

Course Administration

Systems Architecture I

Computer Architecture I Midterm I

ECE 2035 Programming Hw/Sw Systems Fall problems, 10 pages Final Exam 9 December 2013

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

ENCM 369 Winter 2017 Lab 3 for the Week of January 30

Transcription:

Lecture 10: Program Development versus Execution Environment CSE 30: Computer Organization and Systems Programming Winter 2010 Rajesh Gupta / Ryan Kastner Dept. of Computer Science and Engineering University of California, San Diego

C Memory Management C has 3 pools of memory Static storage: global variable storage, basically permanent, entire program run The Stack: local variable storage, parameters, return address ("stack frame" in C) The Heap (dynamic storage): data lives until deallocated by programmer C requires knowing where objects are in memory, otherwise don't work as expect

Normal C Memory Management A program s address space contains 4 regions: stack: local variables, grows downward heap: space requested for pointers via malloc() ; resizes dynamically, grows upward static data: variables declared outside main, does not grow or shrink code: loaded when program starts, does not change ~ FFFF FFFF hex stack heap static data code ~ 0 hex For now, OS somehow prevents accesses between stack and heap (gray hash lines). Wait for virtual memory

Intel 80x86 C Memory Management A C program s 80x86 address space : heap: space requested for pointers via malloc(); resizes dynamically, grows upward static data: variables declared outside main, does not grow or shrink code: loaded when program starts, does not change stack: local variables, grows downward ~ 08000000 hex heap static data code stack

Memory Management How do we manage memory? Code, Static storage are easy: they never grow or shrink Stack space is also easy: stack frames are created and destroyed in last-in, first-out (LIFO) order Managing the heap is tricky: memory can be allocated / deallocated at any time

Where allocated? int myglobal; main() { int temp; } Structure declaration does not allocate memory Variable declaration does allocate memory If declare outside a procedure, allocated in static storage If declare inside procedure, allocated on the stack and freed when procedure returns

The Stack Stack frame includes: Return address Parameters Space for other local variables SP Stack frames contiguous blocks of memory; stack pointer tells where top stack frame is When procedure ends, stack frame is tossed off the stack; frees memory for future stack frames frame frame frame frame

Stack Last In, First Out (LIFO) memory usage main () { a(0); } void a (int m) { b(1); } void b (int n) { c(2); } void c (int o) { d(3); } void d (int p) { } Stack Pointer Stack Pointer Stack Pointer Stack Pointer Stack Pointer stack

Who cares about stack management? Pointers in C allow access to deallocated memory, leading to hard-to-find bugs! int * ptr () { int y; y = 3; return &y; }; main () { SP main ptr() (y==3) SP main SP int *stackaddr,content; stackaddr = ptr(); content = *stackaddr; printf("%d", content); /* 3 */ content = *stackaddr; printf("%d", content); /*13451514 */ }; main printf() (y==?)

The Heap (Dynamic memory) Large pool of memory, not allocated in contiguous order back-to-back requests for heap memory could result blocks very far apart where C++/Java new command allocates memory In C, specify number of bytes of memory explicitly to allocate item int *ptr; ptr = (int *) malloc(4); /* malloc returns type (void *), so need to cast to right type */ malloc(): Allocates raw, uninitialized memory from heap

Dynamic Memory Allocation C has operator sizeof() which gives size in bytes (of type or variable) Assume size of objects can be misleading & is bad style, so use sizeof(type) Many years ago an intwas 16 bits, and programs assumed it was 2 bytes

Dynamic Memory Allocation To allocate room for something new to point to, use malloc() (with the help of a typecast and sizeof): ptr = (int *) malloc (sizeof(int)); Now, ptr points to a space somewhere in memory of size (sizeof(int)) in bytes. (int *) simply tells the compiler what will go into that space (called a typecast). malloc is almost never used for 1 variable ptr = (int *) malloc (n*sizeof(int)); This allocates an array of n integers.

Dynamic Memory Allocation Once malloc() is called, the memory location might contain anything, so don t use it until you ve set its value. After dynamically allocating space, we must dynamically free it: free(ptr); Use this command to clean up.

Language Continuum Scheme Java bytecode Java C++ C Assembly machine language Easy to program Inefficient to interpret Efficient Difficult to program In general, we interpret a high level language if efficiency is not critical or translated to a lower level language to improve performance

Interpretation vs. Translation How do we run a program written in a source language? Interpreter: Directly executes a program in the source language Translator: Converts a program from the source language to an equivalent program in another language

Interpretation MIPS program: foo.m MARS

Translation Scheme program: foo.c C Compiler (gcc) Executable(mach lang pgm): a.out Hardware C Compiler is a translator from C to machine language

Interpretation Any good reason to interpret machine language in software? MARS useful for learning / debugging Apple Macintosh conversion Switched from Motorola 680x0 instruction architecture to PowerPC. Could require all programs to be re-translated from high level language Instead, let executables contain old and/or new machine code, interpret old code in software if necessary

Interpretation vs. Translation Easier to write interpreter Interpreter closer to high-level, so gives better error messages (e.g., MARS) Translator reaction: add extra information to help debugging (line numbers, names) Interpreter slower (10x?) but code is smaller (1.5X to 2X?) Interpreter provides instruction set independence: run on any machine HP switched to VLIW processor. Instead of retranslating all SW, let executables contain old and/or new machine code, interpret old code in software if necessary

Steps to Running a Program C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o Linker lib.o Executable(mach lang pgm): a.out Loader Memory

Compiler Input: High-Level Language Code (e.g., C, Java such as foo.c, foo.java) Output: Assembly Language Code (e.g., foo.s for MIPS) Note: Output may contain pseudoinstructions Pseudoinstructions: instructions that assembler understands but not in machine For example: mov $s1, $s2 = or $s1, $s2, $zero

Where Are We Now? C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o Linker lib.o Executable(mach lang pgm): a.out Loader Memory

Assembler Input: Assembly Language Code (e.g., foo.s for MIPS) Output: Object Code, information tables (e.g., foo.o for MIPS) Reads and Uses Directives Replace Pseudoinstructions Produce Machine Language Creates Object File

Assembler Directives (p. A-51 to A-53) Give directions to assembler, but do not produce machine instructions.text: Subsequent items put in user text segment.data: Subsequent items put in user data segment.globl sym: declares sym global and can be referenced from other files.asciiz str: Store the string str in memory and null-terminate it.word w1 wn: Store the n 32-bit quantities in successive memory words

Pseudoinstruction Replacement Assembler treats convenient variations of machine language instructions as if real instructions Pseudo: Real: subu $sp,$sp,32 sd $a0, 32($sp) mul $t7,$t6,$t5 addu $t0,$t6,1 ble $t0,100,loop la $a0, str addiu $sp,$sp,-32 sw $a0, 32($sp) sw $a1, 36($sp) mul $t6,$t5 mflo $t7 addiu $t0,$t6,1 slti $at,$t0,101 bne $at,$0,loop lui $at,left(str) ori $a0,$at,right(str)

Producing Machine Language Simple Case Arithmetic, Logical, Shifts, and so on All necessary info is within the instruction already What about Branches? PC-Relative So once pseudoinstructions are replaced by real ones, we know by how many instructions to branch So these can be handled easily

Producing Machine Language What about jumps (j and jal)? Jumps require absolute address What about references to data? la gets broken up into lui and ori These will require the full 32-bit address of the data These can t be determined yet, so we create two tables

Symbol Table List of items in this file that may be used by other files What are they? Labels: function calling Data: anything in the.data section; variables which may be accessed across files First Pass: record label-address pairs Second Pass: produce machine code Result: can jump to a later label without first declaring it

Relocation Table List of items for which this file needs the address What are they? Any label jumped to: j or jal internal external (including lib files) Any piece of data such as the la instruction

Object File Format object file header: size and position of the other pieces of the object file text segment: the machine code data segment: binary representation of the data in the source file relocation information: identifies lines of code that need to be handled symbol table: list of this file s labels and data that can be referenced debugging information

Where Are We Now? C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o Linker lib.o Executable(mach lang pgm): a.out Loader Memory

Link Editor/Linker Input: Object Code, information tables (e.g., foo.o for MIPS) Output: Executable Code (e.g., a.out for MIPS) Combines several object (.o) files into a single executable ( linking ) Enable Separate Compilation of files Changes to one file do not require recompilation of whole program Red Hat Linux 7.1 source is ~30 M lines of code! Link Editor name from editing the links in jump and link instructions

Link Editor/Linker.o file 1 text 1 data 1 info 1.o file 2 text 2 data 2 info 2 Linker a.out Relocated text 1 Relocated text 2 Relocated data 1 Relocated data 2

Link Editor/Linker Step 1: Take text segment from each.o file and put them together. Step 2: Take data segment from each.o file, put them together, and concatenate this onto end of text segments. Step 3: Resolve References Go through Relocation Table and handle each entry That is, fill in all absolute addresses

Four Types of Addresses PC-Relative Addressing (beq, bne): never relocate Absolute Address (j, jal): always relocate External Reference (usually jal): always relocate Data Reference (often lui and ori): always (??) relocate

Resolving References Linker assumes first word of first text segment is at address 0x00000000 Linker knows: length of each text and data segment ordering of text and data segments Linker calculates: absolute address of each label to be jumped to (internal or external) and each piece of data being referenced

Resolving References To resolve references: search for reference (data or label) in all symbol tables if not found, search library files (for example, for printf) once absolute address is determined, fill in the machine code appropriately Output of linker: executable file containing text and data (plus header)

Where Are We Now? C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o Linker lib.o Executable(mach lang pgm): a.out Loader Memory

Loader Input: Executable Code (e.g., a.out for MIPS) Output: (program is run) Executable files are stored on disk When one is run, loader s job is to load it into memory and start it running In reality, loader is the operating system (OS) loading is one of the OS tasks

Loader So what does a loader do? Reads executable file s header to determine size of text and data segments Creates new address space for program large enough to hold text and data segments, along with a stack segment Copies instructions and data from executable file into the new address space (this may be anywhere in memory)

Loader Copies arguments passed to the program onto the stack Initializes machine registers Most registers cleared, but stack pointer assigned address of 1st free stack location Jumps to start-up routine that copies program s arguments from stack to registers and sets the PC If main routine returns, start-up routine terminates program with the exit system call

Example: C Asm Obj Exe Run #include <stdio.h> int main (int argc, char *argv[]) { int i; int sum = 0; } for (i = 0; i <= 100; i = i + 1) sum = sum + i * i; printf ("The sum of squares from 0.. 100 is %d\n", sum);

Example: C Asm Obj Exe Run.text.align 2.globl main main: subu $sp,$sp,32 sw $ra, 20($sp) sd $a0, 32($sp) sw $0, 24($sp) sw $0, 28($sp) loop: lw $t6, 28($sp) mul $t7, $t6, $t6 lw $t8, 24($sp) addu $t9,$t8,$t7 sw $t9, 24($sp) addu $t0, $t6, 1 sw $t0, 28($sp) ble $t0, 100, loop la $a0, str lw $a1, 24($sp) jal printf move $v0, $0 lw $ra, 20($sp) addiu $sp,$sp,32 jr $ra.data.align 0 Where are 7 pseudoinstructions? str:.asciiz "The sum from 0.. 100 is %d\n"

Example: C Asm Obj Exe Run.text.align 2.globl main main: subu $sp,$sp,32 sw $ra, 20($sp) sd $a0, 32($sp) sw $0, 24($sp) sw $0, 28($sp) loop: lw $t6, 28($sp) mul $t7, $t6, $t6 lw $t8, 24($sp) addu $t9,$t8,$t7 sw $t9, 24($sp) addu $t0, $t6, 1 sw $t0, 28($sp) ble $t0, 100, loop la $a0, str lw $a1, 24($sp) jal printf move $v0, $0 lw $ra, 20($sp) addiu $sp,$sp,32 jr $ra.data.align 0 7 pseudoinstructions underlined str:.asciiz "The sum from 0.. 100 is %d\n"

Symbol Table Entries Symbol Table Label Address main: loop: str: printf:? Relocation Table Address Instr. TypeDependency

Example: C Asm Obj Exe Run Remove pseudoinstructions, assign addresses 00 addiu $29,$29,-32 30 addiu $8,$14, 1 04 sw $31,20($29) 34 sw $8,28($29) 08 sw $4, 32($29) 38 slti $1,$8, 101 0c sw $5, 36($29) 3c bne $1,$0, loop 10 sw $0, 24($29) 40 lui $4, l.str 14 sw $0, 28($29) 44 ori $4,$4,r.str 18 lw $14, 28($29) 48 lw $5,24($29) 1c multu $14, $14 4c jal printf 20 mflo $15 50 add $2, $0, $0 24 lw $24, 24($29) 54 lw $31,20($29) 28 addu $25,$24,$15 58 addiu $29,$29,32 2c sw $25, 24($29) 5c jr $31

Symbol Table Symbol Table Entries Label Address main: 0x00000000 loop: 0x00000018 str: 0x10000430 printf: 0x000003b0 Relocation Information Address Instr. TypeDependency 0x00000040 lui l.str 0x00000044 ori r.str 0x0000004c jal printf

Example: C Asm Obj Exe Run Addresses start at 0x00000000 00 addiu $29,$29,-32 30 addiu $8,$14, 1 04 sw $31,20($29) 34 sw $8,28($29) 08 sw $4, 32($29) 38 slti $1,$8, 101 0c sw $5, 36($29) 3c bne $1,$0, -10 10 sw $0, 24($29) 40 lui $4, 4096 14 sw $0, 28($29) 44 ori $4,$4,1072 18 lw $14, 28($29) 48 lw $5,24($29) 1c multu $14, $14 4c jal 236 20 mflo $15 50 add $2, $0, $0 24 lw $24, 24($29) 54 lw $31,20($29) 28 addu $25,$24,$15 58 addiu $29,$29,32 2c sw $25, 24($29) 5c jr $31

Example: C Asm Obj Exe Run 0x0000000000100111101111011111111111100000 0x0000000410101111101111110000000000010100 0x0000000810101111101001000000000000100000 0x0000000c10101111101001010000000000100100 0x0000001010101111101000000000000000011000 0x0000001410101111101000000000000000011100 0x0000001810001111101011100000000000011100 0x0000001c10001111101110000000000000011000 0x0000002000000001110011100000000000011001 0x0000002400100101110010000000000000000001 0x0000002800101001000000010000000001100101 0x0000002c10101111101010000000000000011100 0x0000003000000000000000000111100000010010 0x0000003400000011000011111100100000100001 0x0000003800010100001000001111111111110111 0x0000003c10101111101110010000000000011000 0x0000004000111100000001000001000000000000 0x0000004410001111101001010000000000011000 0x0000004800001100000100000000000011101100 0x0000004c00100100100001000000010000110000 0x0000005010001111101111110000000000010100 0x0000005400100111101111010000000000100000 0x0000005800000011111000000000000000001000 0x0000005c00000000000000000001000000100001

Things to Remember C program: foo.c Compiler Assembly program: foo.s Assembler Object(mach lang module): foo.o Linker lib.o Executable(mach lang pgm): a.out Loader Memory

Things to Remember Compiler converts a single HLL file into a single assembly language file. Assembler removes pseudoinstructions, converts what it can to machine language, and creates a checklist for the linker (relocation/symbol table). This changes each.s file into a.o file. Linker combines several.o files and resolves absolute addresses. Loader loads executable into memory and begins execution.

Things to Remember Stored Program concept mean instructions just like data, so can take data from storage, and keep transforming it until load registers and jump to routine to begin execution Compiler Assembler Linker ( Loader ) Assembler does 2 passes to resolve addresses, handling internal forward references Linker enables separate compilation, libraries that need not be compiled, and resolves remaining addresses

Conclusion C has 3 pools of memory Static storage: global variable storage, basically permanent, entire program run The Stack: local variable storage, parameters, return address The Heap (dynamic storage): malloc() grabs space from here, free() returns it. malloc() handles free space with freelist. Three different ways to find free space when given a request: First fit (find first one that s free) Next fit (same as first, but remembers where left off) Best fit (finds most snug free space)