Topic 2e High-Level languages and Systems Software

Slides:



Advertisements
Similar presentations
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.
Advertisements

The University of Adelaide, School of Computer Science
MIPS ISA-II: Procedure Calls & Program Assembly. (2) Module Outline Review ISA and understand instruction encodings Arithmetic and Logical Instructions.
MIPS ISA-II: Procedure Calls & Program Assembly. (2) Module Outline Review ISA and understand instruction encodings Arithmetic and Logical Instructions.
1 Procedure Calls, Linking & Launching Applications Lecture 15 Digital Design and Computer Architecture Harris & Harris Morgan Kaufmann / Elsevier, 2007.
ECE 232 L6.Assemb.1 Adapted from Patterson 97 ©UCBCopyright 1998 Morgan Kaufmann Publishers ECE 232 Hardware Organization and Design Lecture 6 MIPS Assembly.
1 Lecture 4: Procedure Calls Today’s topics:  Procedure calls  Large constants  The compilation process Reminder: Assignment 1 is due on Thursday.
Lecture 8 Sept 23 Completion of Ch 2 translating procedure into MIPS role of compilers, assemblers, linking, loading etc. pitfalls, conclusions Chapter.
Lecture 6: MIPS Instruction Set Today’s topic –Control instructions –Procedure call/return 1.
Computer Architecture CSCE 350
1 Nested Procedures Procedures that don't call others are called leaf procedures, procedures that call others are called nested procedures. Problems may.
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
The University of Adelaide, School of Computer Science
CS3350B Computer Architecture Winter 2015 Lecture 4
Procedure call frame: Hold values passed to a procedure as arguments
Computer Organization CS224 Fall 2012 Lesson 12. Synchronization  Two processors or threads sharing an area of memory l P1 writes, then P2 reads l Data.
1 Starting a Program The 4 stages that take a C++ program (or any high-level programming language) and execute it in internal memory are: Compiler - C++
Lec 9Systems Architecture1 Systems Architecture Lecture 9: Assemblers, Linkers, and Loaders Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan Some.
 Procedures (subroutines) allow the programmer to structure programs making them : › easier to understand and debug and › allowing code to be reused.
MIPS Assembler Programming
RISC Concepts, MIPS ISA and the Mini–MIPS project
CS 61C L14Introduction to MIPS: Instruction Representation II (1) Garcia, Spring 2004 © UCB Roy Wang inst.eecs.berkeley.edu/~cs61c-tf inst.eecs.berkeley.edu/~cs61c.
COMPUTER ARCHITECTURE & OPERATIONS I Instructor: Hao Ji.
7/13/20151 Topic 3: Run-Time Environment Memory Model Activation Record Call Convention Storage Allocation Runtime Stack and Heap Garbage Collection.
Software Development and Software Loading in Embedded Systems.
CSCI-365 Computer Organization Lecture Note: Some slides and/or pictures in the following are adapted from: Computer Organization and Design, Patterson.
Memory/Storage Architecture Lab Computer Architecture MIPS Instruction Set Architecture ( Supporting Procedures )
13/02/2009CA&O Lecture 04 by Engr. Umbreen Sabir Computer Architecture & Organization Instructions: Language of Computer Engr. Umbreen Sabir Computer Engineering.
Topic 2d High-Level languages and Systems Software
OCC - CS/CIS CS116-Ch00-Orientation Morgan Kaufmann Publishers ( Augmented & Modified by M.Malaty) 1CS 116 Fall 2003 Not quite finished Creating.
© Janice Regan, CMPT 300, May CMPT 300 Introduction to Operating Systems Memory: Relocation.
April 23, 2001Systems Architecture I1 Systems Architecture I (CS ) Lecture 9: Assemblers, Linkers, and Loaders * Jeremy R. Johnson Mon. April 23,
CPS3340 COMPUTER ARCHITECTURE Fall Semester, /29/2013 Lecture 13: Compile-Link-Load Instructor: Ashraf Yaseen DEPARTMENT OF MATH & COMPUTER SCIENCE.
Lecture 4: MIPS Instruction Set
1 CS503: Operating Systems Spring 2014 Part 0: Program Structure Dongyan Xu Department of Computer Science Purdue University.
1 CS/COE0447 Computer Organization & Assembly Language Chapter 2 Part 3.
LECTURE 3 Translation. PROCESS MEMORY There are four general areas of memory in a process. The text area contains the instructions for the application.
Object Files & Linking. Object Sections Compiled code store as object files – Linux : ELF : Extensible Linking Format – Windows : PE : Portable Execution.
Lecture 3 Translation.
Computer Architecture & Operations I
Assemblers, linkers, loaders
Storage Classes There are three places in memory where data may be placed: In Data section declared with .data in assembly language in C - Static) On the.
Computer Architecture & Operations I
MIPS Assembly Language Programming
Computer Architecture Instruction Set Architecture
The University of Adelaide, School of Computer Science
Lecture 4: MIPS Instruction Set
Software Development with uMPS
RISC Concepts, MIPS ISA Logic Design Tutorial 8.
Procedures (Functions)
Procedures (Functions)
Lecture 4: MIPS Instruction Set
The University of Adelaide, School of Computer Science
ECE232: Hardware Organization and Design
The University of Adelaide, School of Computer Science
Lecture 5: Procedure Calls
Computer Organization and Design Assembly & Compilation
Computer Architecture
Jeremy R. Johnson Anatole D. Ruslanov William M. Mongan
COMS 361 Computer Organization
Program and memory layout
Computer Architecture
10/6: Lecture Topics C Brainteaser More on Procedure Call
Where is all the knowledge we lost with information? T. S. Eliot
Program and memory layout
Program Assembly.
Week 5 Computers are like Old Testament gods; lots of rules and no mercy. Joseph Campbell.
Topic 2b ISA Support for High-Level Languages
Presentation transcript:

Topic 2e High-Level languages and Systems Software (Memory Layout) Introduction to Computer Systems Engineering (CPEG 323) 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Reading List Slides: Topic2e Operating System and Compiler Books Other papers as assigned in class or homeworks 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Several Topics Object File Format GP register and GP area Run-time Stack Virtual / Physical memory 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Object File Format Compiler or assembler translates the program into an object file, which is consequently linked into a executable file. These "object" files and "executable" files have a specific format. Several common formats are: a.out: assembler and linker output format COFF: Common Object File Format ECOFF: Extended Common Object File Format ELF: Executable and Linking Format 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Object File Format(Cont.) a.out: assembler and linker output format A fairly primitive format, lacking some key features to enable easy shared libraries, etc. On UNIX boxes, a.out is the default output format of the system assembler and the linker. The linker makes a.out executable files. A file in a.out format consists of: a header, the program text, program data, text and data relocation information, a symbol table, and a string table (in that order). 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Object File Format(Cont.) Common Object File Format (COFF) binary files COFF is a portable format for binary applications on UNIX System V Extended Common Object File Format (ECOFF) binary files Under Windows, Visual C, C++ and every Windows compiler generates ECOFF files. MIPS 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Object File Format(Cont.) ELF: Executable and Linking Format ELF and COFF formats are very similar but ELF has greater power and flexibility Become the standard in file format ELF representation is platform independent 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Object File Format(Cont.) Three main types of ELF files executable file supplies information necessary for the operating system to create a process image. relocatable file describes how it should be linked with other object files to create an executable file or shared library. shared object file contains information needed in both static and dynamic linking. 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format ELF Format Linking and Execution Views 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format(Cont.) The ELF Header ELF Header is always the first section of the file(The other sections can be in any order) What does the ELF Header describe? ● the type of the object file ● target architecture ● The location of the Program Header table, Section Header table, and String table ● number and size of entries for each table the ELF ● the location of the first executable instruction 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format(Cont.) The Program Header Table only important in executable and shared object files It is an array of entries each entry is a structure describing a segment in the object file The OS copies the segment into memory according to the location and size information 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format(Cont.) The Section Header Table Has pointers to all sections in object files It is similar to the program header Each entry correlates to a section in the file. Each entry provides the name, type, memory image starting address, file offset, the section’s size, alignment, and how the information in the section should be interpreted. 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format(Cont.) The ELF Sections Hold code, data, dynamic linking information, debugging data, symbol tables, relocation information, comments, string tables, and notes. Sections are treated in different ways ● loaded into the process image ● or provide information needed in the building of a process image ● or are used only in linking object files 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

ELF Object File Format(Cont.) The ELF Segments Group related sections ● text segment groups executable code, ● data segment groups the program data, ● dynamic segment groups information relevant to dynamic loading. Each segment consists of one or more sections. A process image is created by loading and interpreting segments. The OS logically copies a file’s segment to a virtual memory segment according to the information provided in the program header table. 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

GP Register and GP Area Stack Heap BSS positive offset 0xEFFFFFFF Stack Heap BSS positive offset Global data area 64k GP 0x10008000 negative offset Data Text 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

GP Register and GP Area(Cont.) Why Global Data Area ? Load variable x to r10 Without GP: 3 instructions Li r9, x -- low 16-bit of x Addiu r9, x -- high 16-bit of x Lw r10, 0(r9) -- load With GP: 1 – instruction LW r10, 24(GP) -- load 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

What should be put into Global Data Area ? GP Register and GP Area(Cont.) What should be put into Global Data Area ? Most Frequently Access Data How to Use Global Data Area ? • Global Data Area requires linker support • $gp register must be correctly initialized (by the startup routine) • assembly code must not modify the $gp register 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Runtime Stack Stack organization High memory argumentn …… argument1 Virtual frame Pointer($fp) argument1 Frame offset Local & temporaries Saved registers (including returnreg) framesize Procedure call Argument area static Pointer($sp) …… low memory 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame Example 1: int total; int sum_all(int a1, int a2, int a3, int a4,int a5, int a6, int a7, int a8) { return a1+a2+a3+a4+a5+a6+a7+a8; } Main() total=sum_all(1,2,3,4,5,6,7,8); printf(“total = %d\n”, total); 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – enter main() $fp=0 0x7fffffff subu $sp, $sp, 40 ? sw $31, 36($sp) sw $fp, 32($sp) move $fp, $sp ? li $2, 0x5 ? sw $2, 16($sp) li $2, 0x6 ? sw $2, 20($sp) li $2, 0x7 sw $2, 24($sp) li $2, 0x8 sw $2, 28($sp) li $4, 0x1 li $5, 0x2 li $6, 0x3 li $7, 0x4 jal sum_all … $sp=0x7ffff7fe8 $31 ($ra) $30 ($fp) 8 7 6 5 $sp=0x7ffff7fc0 $fp=$sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – enter sum_all() 0x7fffffff subu $sp, $sp, 8 sw $fp, 0($sp) move $fp, $sp sw $4, 8($sp) sw $5, 12($sp) sw $6, 16($sp) sw $7, 20($sp) … move $sp, $fp lw $fp, 0($sp) addu $sp, $sp, 8 j $31 0x7ffff7fe8 $31 ($ra) $30 ($fp) 8 7 6 5 4 3 2 $sp=0x7ffff7fc0 1 $fp=$sp $30 ($fp) $sp=0x7ffff7fb0 $fp=$sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – exit sum_all() 0x7fffffff subu $sp, $sp, 8 sw $fp, 0($sp) move $fp, $sp sw $4, 8($sp) sw $5, 12($sp) sw $6, 16($sp) sw $7, 20($sp) … move $sp, $fp lw $fp, 0($sp) addu $sp, $sp, 8 j $31 0x7ffff7fe8 $31 ($ra) $30 ($fp) 8 7 6 5 4 3 2 1 $fp $sp $30 ($fp) $sp=0x7ffff7fb0 $fp=$sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – exit main() 0x7fffffff … move $sp, $fp lw $31, 36($sp) lw $fp, 32($sp) addu $sp, $sp, 40 j $31 $sp $fp =0 $31 ($ra) $30 ($fp) 8 7 6 5 4 3 2 1 $fp $sp $30 ($fp) 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame Do we really need store $4 to $7 onto stack? An optimized version sum_all: lw $3, 16($sp) lw $8, 20($sp) lw $9, 24($sp) lw $2, 28($sp) addu $4, $4, $5 addu $4, $4, $6, addu $4, $4, $7 addu $4, $4, $3, addu $4, $4, $8 addu $4, $4, $9, addu $2, $4, $2 j $31 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame Example 2: where are the local variables (automatic variable) int sum_all(int a1, int a2, int a3, int a4,int a5, int a6, int a7, int a8) { int total; total=a1+a2+a3+a4+a5+a6+a7+a8; return total; } int test() return sum_all(1,2,3,4,5,6,7,8); main() total=test(); printf(“total = %d\n”, total); 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – main() 0x7fffffff $sp total $31 ($ra) $30 ($fp) r7 r6 r5 r4 $fp $sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – test() 0x7fffffff total $31 ($ra) $30 ($fp) r7 r6 r5 r4 $fp $sp $31 $fp 8 7 6 5 $fp $sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Stack and Frame – sum_all() 0x7fffffff total $31 ($ra) $30 ($fp) main r7 r6 r5 r4 $31 $fp 8 7 6 test 5 $fp sum_all total $fp $sp 0x00000000 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Run-time Stack Fib(3) SP Fib(2) ret1 ret2 Fib(1) $s1 - unknown sub $sp, $sp, 12 sw $s0, 4($sp) sw $s1, 8($sp) sw $ra, 0($sp) beq $a0, $0, L1 mov $t0, 1 beq $a0, $t0, L1 mov $s0, $a0 sub $a0, $a0, 1 jal fib mov $s1, $v0 subi $a0, $s0, 2 jal fib add $v0, $v0, $s1 j L2 L1: addi $v0, $0, 1 L2: lw $s1, 8($sp) lw $s0, 4($sp) lw $ra, 0($sp) add $sp, $sp, 12 j $ra Fib(3) SP $s1 - unknown $s0 - unknown $ra – return to main Fib(2) $s1 - unknown ret1 $s0 - unknown $ra – ret1 ret2 Fib(1) 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Virtual / Physical memory User memory space OS memory space 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

(virtual memory - user) 0x7FFF EFFF Stack Heap BSS Text: instructions Data: variables with initial value BSS: variables without initial value HEAP: for malloc/free STACK: for function call Global Data Data Text 0x0040 0000 Layout of Memory (virtual memory - user) 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Layout of Memory ( OS memory space) Reserved for kernel 800000016 Stack segment Dynamic data Data segment Static data Text segment 40 000016 Reserved For Interrupt vector Firmware Layout of Memory ( OS memory space) 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Virtual Memory / Physical Memory Why Virtual Memory Limited physical memory size 64MB to 1GB Unlimited virtual memory size Each process may have 2GB Many processes in the system 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Virtual Memory/Physical Memory Physical memory as cache of virtual memory (disk) Physical memory and virtual memory broke into fixed size pages; Each physical page holds a virtual page (may come from different processes) Only the active pages of each process reside in physical memory, physical memory works as cache of virtual memory (disk) Other pages stay on disk P1: pagek P2: pagen Pn: pagem Physical pagei Page table Physical address Virtual address v rwx Physical page Start address Virtual page Disk address Present bit Protection bits 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Virtual and Physical Memory Process 1 Process 2 OS Page 0 U1/P0 U2/P0 OS U1/P1 U2/P1 Page 1 U1/P0 U1/P2 U2/P2 Page 2 U2/P3 U1/P3 U2/P3 Page 3 U1/P3 U1/P4 U2/P4 Page 4 U1/P7 U1/P5 U2/P5 Page 5 U1/P6 U1/P6 U2/P6 Page 6 U2/P1 U1/P7 U2/P7 Page 7 On Disk 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Virtual Memory / Physical Memory Why Segmentation Fault ? main() { int *p; *p=12; } Invalid pointer – p points to arbitrary address (address 0?) Page protection will assign “readable/executable” to the pages in this section 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt

Physical / Virtual Memory #include <malloc.h> main() { int *p; p=(int *)malloc(sizeof(int)); *p=12; } 9/20/2018 \course\cpeg323-05F\Topic2e-323.ppt