Assembly III: Procedures. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Similar documents
Assembly III: Procedures. Jo, Heeseung

ASSEMBLY III: PROCEDURES. Jo, Heeseung

CS213. Machine-Level Programming III: Procedures

The course that gives CMU its Zip! Machine-Level Programming III: Procedures Sept. 17, 2002

Machine-Level Programming III: Procedures

Machine-level Programming (3)

Region of memory managed with stack discipline Grows toward lower addresses. Register %esp contains lowest stack address = address of top element

X86 Assembly -Procedure II:1

IA32 Stack. Lecture 5 Machine-Level Programming III: Procedures. IA32 Stack Popping. IA32 Stack Pushing. Topics. Pushing. Popping

Giving credit where credit is due

IA32 Stack The course that gives CMU its Zip! Machine-Level Programming III: Procedures Sept. 17, IA32 Stack Popping. IA32 Stack Pushing

Systems I. Machine-Level Programming V: Procedures

Sungkyunkwan University

Page 1. IA32 Stack CISC 360. Machine-Level Programming III: Procedures Sept. 22, IA32 Stack Popping Stack Bottom. IA32 Stack Pushing

Machine Programming 3: Procedures

IA32 Stack. Stack BoDom. Region of memory managed with stack discipline Grows toward lower addresses. Register %esp contains lowest stack address

Assembly III: Procedures. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

An Experience Like No Other. Stack Discipline Aug. 30, 2006

Stack Discipline Jan. 19, 2018

University of Washington

Machine- Level Programming III: Switch Statements and IA32 Procedures

211: Computer Architecture Summer 2016

Procedure Calls. Young W. Lim Sat. Young W. Lim Procedure Calls Sat 1 / 27

Assembly I: Basic Operations. Computer Systems Laboratory Sungkyunkwan University

Procedure Calls. Young W. Lim Mon. Young W. Lim Procedure Calls Mon 1 / 29

Assembly Language: Function Calls

hnp://

Assembly Language: Function Calls" Goals of this Lecture"

Assembly Language: Function Calls" Goals of this Lecture"

Machine- Level Programming III: Switch Statements and IA32 Procedures

Assembly Language: Function Calls. Goals of this Lecture. Function Call Problems

Mechanisms in Procedures. CS429: Computer Organization and Architecture. x86-64 Stack. x86-64 Stack Pushing

CS429: Computer Organization and Architecture

Function Calls COS 217. Reading: Chapter 4 of Programming From the Ground Up (available online from the course Web site)

Assembly I: Basic Operations. Jo, Heeseung

ASSEMBLY I: BASIC OPERATIONS. Jo, Heeseung

CS241 Computer Organization Spring 2015 IA

Turning C into Object Code Code in files p1.c p2.c Compile with command: gcc -O p1.c p2.c -o p Use optimizations (-O) Put resulting binary in file p

Machine-level Programs Procedure

CS 31: Intro to Systems Functions and the Stack. Martin Gagne Swarthmore College February 23, 2016

CS241 Computer Organization Spring Addresses & Pointers

1 /* file cpuid2.s */ 4.asciz "The processor Vendor ID is %s \n" 5.section.bss. 6.lcomm buffer, section.text. 8.globl _start.

This is a medical robot, guided by a skilled surgeon and designed to get to places doctors are unable to reach without opening a pacent up.

Assembly Programmer s View Lecture 4A Machine-Level Programming I: Introduction

Machine-Level Programming III: Procedures

Machine-Level Programming I: Introduction Jan. 30, 2001

Machine Program: Procedure. Zhaoguo Wang

Data Representa/ons: IA32 + x86-64

Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition. Carnegie Mellon

CISC 360. Machine-Level Programming I: Introduction Sept. 18, 2008

Machine-Level Programming II: Control and Arithmetic

CSE 351: Week 4. Tom Bergan, TA

Question 4.2 2: (Solution, p 5) Suppose that the HYMN CPU begins with the following in memory. addr data (translation) LOAD 11110

X86 Stack Calling Function POV

The course that gives CMU its Zip! Machine-Level Programming I: Introduction Sept. 10, 2002

Systems Programming and Computer Architecture ( )

CS 33: Week 3 Discussion. x86 Assembly (v1.0) Section 1G

CSC 2400: Computing Systems. X86 Assembly: Function Calls"

University*of*Washington*

Machine Programming 1: Introduction

Lecture #16: Introduction to Runtime Organization. Last modified: Fri Mar 19 00:17: CS164: Lecture #16 1

Instruction Set Architecture

Instruction Set Architecture

Machine-Level Programming Introduction

Process Layout and Function Calls

Machine-Level Programming II: Arithmetic & Control /18-243: Introduction to Computer Systems 6th Lecture, 5 June 2012

CPSC W Term 2 Problem Set #3 - Solution

CSC 2400: Computing Systems. X86 Assembly: Function Calls

CPEG421/621 Tutorial

Assembly II: Control Flow. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Page # CISC 360. Machine-Level Programming I: Introduction Sept. 18, IA32 Processors. X86 Evolution: Programmerʼs View.

CMSC 313 Lecture 12. Project 3 Questions. How C functions pass parameters. UMBC, CMSC313, Richard Chang

CMSC 313 Fall2009 Midterm Exam 2 Section 01 Nov 11, 2009

Sungkyunkwan University

CMSC 313 Lecture 12 [draft] How C functions pass parameters

Credits to Randy Bryant & Dave O Hallaron

COMP 210 Example Question Exam 2 (Solutions at the bottom)

W4118: PC Hardware and x86. Junfeng Yang

Process Layout, Function Calls, and the Heap

CISC 360 Instruction Set Architecture

Assembly I: Basic Operations. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Instruction Set Architecture

IA32 Processors The course that gives CMU its Zip! Machine-Level Programming I: Introduction Sept. 10, X86 Evolution: Programmer s View

CSE351 Autumn 2012 Midterm Exam (5 Nov 2012)

AS08-C++ and Assembly Calling and Returning. CS220 Logic Design AS08-C++ and Assembly. AS08-C++ and Assembly Calling Conventions

x86 assembly CS449 Fall 2017

Meet & Greet! Come hang out with your TAs and Fellow Students (& eat free insomnia cookies) When : TODAY!! 5-6 pm Where : 3rd Floor Atrium, CIT

Machine-Level Programming Introduction

Questions about last homework? (Would more feedback be useful?) New reading assignment up: due next Monday

X86 Assembly -Data II:1

Assembly level Programming. 198:211 Computer Architecture. (recall) Von Neumann Architecture. Simplified hardware view. Lecture 10 Fall 2012

THEORY OF COMPILATION

Machine- level Programming

CIT Week13 Lecture

Machine-Level Programming II: Arithmetic & Control. Complete Memory Addressing Modes

! Starting in 1978 with ! Added more features as time goes on. ! Still support old features, although obsolete

4) C = 96 * B 5) 1 and 3 only 6) 2 and 4 only

Lab 10: Introduction to x86 Assembly

The Hardware/Software Interface CSE351 Spring 2015

Machine Level Programming II: Arithmetic &Control

Transcription:

Assembly III: Procedures Jin-Soo Kim (jinsookim@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu

IA-32 (1) Characteristics Region of memory managed with stack discipline Grows toward lower addresses Register indicates lowest stack address address of top element Bottom Increasing Addresses Grows Down Top 2

IA-32 (2) Pushing pushl Src Fetch operand at Src Decrement by 4 Write operand at address given by Bottom Increasing Addresses -4 Grows Down Top 3

IA-32 (3) Popping popl Dest Read operand at address given by Increment by 4 Write to Dest Bottom Increasing Addresses +4 Grows Down Top 4

IA-32 (4) operation examples pushl %eax popl %edx 0x110 0x110 0x110 0x10c 0x10c 0x10c 0x108 123 0x108 123 0x108 123 0x104 213 0x104 213 %eax 213 %eax 213 %eax 213 %edx 555 %edx 555 %edx 555 213 0x108 0x108 0x104 0x104 0x108 5

Procedure Control Flow Use stack to support procedure call and return Procedure call call label Push return address on stack Jump to label Return address value Address of instruction beyond call Procedure return ret Pop address from stack Jump to address 6

Procedure Call Example 804854e: e8 3d 06 00 00 call 8048b90 <main> 8048553: 50 pushl %eax call 8048b90 0x08048553 +0x0000063d =0x08048b90 0x110 0x10c 0x108 123 0x110 0x10c 0x108 123 0x104 0x8048553 0x108 0x108 0x104 %eip 0x804854e %eip 0x804854e 0x8048b90 %eip is program counter 7

Procedure Return Example 8048591: c3 ret ret 0x110 0x10c 0x108 0x104 0x110 0x10c 123 0x108 0x8048553 123 0x8048553 0x104 0x104 0x108 %eip 0x8048591 %eip 0x8048591 0x8048553 %eip is program counter 8

-based Languages Languages that support recursion e.g., C, Pascal, Java, etc. Code must be Reentrant Multiple simultaneous instantiations of single procedure Need some place to store state of each instantiation Arguments, local variables, return pointer discipline State for given procedure needed for limited time From when called to when return Callee returns before caller does allocated in frames State for single procedure instantiation 9

Frames (1) Code Structure ( ) { who(); } who( ) { (); (); } Procedure recursive ( ) { (); } Call Chain who 10

Frames (2) Contents Return information Arguments Local variables & temp space Management Space allocated when enter procedure set-up code Deallocated when return finish code s pointer indicates stack top Frame pointer indicates start of current frame Frame who proc Top 11

Frames (3) ( ) { who(); } Call Chain Frame 12

Frames (4) who( ) { (); (); } Call Chain who Frame who 13

Frames (5) ( ) { (); } Call Chain who Frame who 14

Frames (6) ( ) { (); } Call Chain who Frame who 15

Frames (7) ( ) { (); } Call Chain who who Frame 16

Frames (8) ( ) { (); } Call Chain who Frame who 17

Frames (9) ( ) { (); } Call Chain who Frame who 18

Frames (10) who( ) { (); (); } Call Chain who Frame who 19

Frames (11) ( ) { } Call Chain who Frame who 20

Frames (12) who( ) { (); (); } Call Chain who Frame who 21

Frames (13) ( ) { who(); } Call Chain who Frame 22

IA-32/Linux Frame Current stack frame ( Top to Bottom) Parameters for function about to call Argument build Local variables If can t keep in registers Saved register context Old frame pointer Caller stack frame Return address Pushed by call instruction Arguments for this call Caller Frame Frame () () Arguments Return Addr Old Saved Registers + Local Variables Argument Build 23

Revisiting swap (1) int zip1 = 15213; int zip2 = 91125; void call_swap() { swap(&zip1, &zip2); } Calling swap from call_swap call_swap: pushl $zip2 pushl $zip1 call swap # Global Var # Global Var void swap(int *xp, int *yp) { int t0 = *xp; int t1 = *yp; *xp = t1; *yp = t0; } &zip2 &zip1 Resulting 24

Revisiting swap (2) void swap(int *xp, int *yp) { int t0 = *xp; int t1 = *yp; *xp = t1; *yp = t0; } swap: pushl movl, pushl %ebx movl 12(),%ecx movl 8(),%edx movl (%ecx),%eax movl (%edx),%ebx movl %eax,(%edx) movl %ebx,(%ecx) movl -4(),%ebx movl, popl ret Setup Body Finish 25

Swap Setup (1) Entering Resulting &zip2 &zip1 swap: pushl movl, pushl %ebx yp xp Old 26

Swap Setup (2) Entering Resulting &zip2 &zip1 swap: pushl movl, pushl %ebx yp xp Old 27

Swap Setup (3) Entering Resulting &zip2 &zip1 swap: pushl movl, pushl %ebx yp xp Old Old %ebx 28

Effect of swap Setup Entering Resulting &zip2 12 yp &zip1 8 xp 4 0 Old movl 12(),%ecx movl 8(),%edx... # get yp # get xp Old %ebx Body 29

swap Finish (1) swap s Offset Offset 12 yp 12 yp 8 xp 8 xp 4 4 0-4 Old Old %ebx 0-4 Old Old %ebx Observation Saved & restored register %ebx movl 4(),%ebx movl, popl ret 30

swap Finish (2) swap s Offset Offset 12 yp 12 yp 8 xp 8 xp 4 4 0 Old 0 Old -4 Old %ebx -4 Old %ebx movl 4(),%ebx movl, popl ret 31

swap Finish (3) swap s Offset Offset 12 yp 12 yp 8 xp 8 xp 4 4 0 Old 0 Old -4 Old %ebx -4 Old %ebx movl 4(),%ebx movl, popl ret 32

swap Finish (4) swap s Exiting Offset Offset 12 8 4 0-4 yp xp Old Old %ebx 12 8 4 0-4 yp xp Old Old %ebx Observation Saved & restored register %ebx Didn t do so for %eax, %ecx, or %edx movl 4(),%ebx movl, popl ret 33

Register Saving Conventions (1) When procedure () calls who(): is the caller, who is the callee Can register be used for temporary storage? : movl $15213, %edx call who addl %edx, %eax ret who: movl 8(), %edx addl $91125, %edx ret Contents of register %edx overwritten by who 34

Register Saving Conventions (2) Conventions Caller save Caller saves temporary in its frame before calling Callee save Callee saves temporary in its frame before using 35

IA-32/Linux Register Usage Integer registers Two have special uses:, Three managed as callee-save: %ebx, %esi, %edi Old values saved on stack prior to using Three managed as caller-save: %eax, %edx, %ecx Do what you please, but expect any callee to do so, as well Register %eax also stores returned value Caller-Save Temporaries Callee-Save Temporaries Special %eax %edx %ecx %ebx %esi %edi 36

Recursive Factorial: rfact Registers %eax used without first saving %ebx used, but save at beginning & restore at end int rfact(int x) { int rval; if (x <= 1) return 1; rval = rfact(x-1); return rval * x; } rfact: pushl movl, pushl %ebx movl 8(),%ebx cmpl $1,%ebx jle.l78 leal -1(%ebx),%eax pushl %eax call rfact imull %ebx,%eax jmp.l79.align 4.L78: movl $1,%eax.L79: movl -4(),%ebx movl, popl ret 37

rfact Setup Entering Caller pre pre %ebx x Caller 8 pre pre %ebx x 4 rfact: pushl movl, pushl %ebx 0 Callee -4 Old Old %ebx 38

rfact Body Registers %ebx: stored value of x %eax Temporary value of x-1 Returned value from rfact(x-1) Returned value from this call Recursion int rfact(int x) { int rval; if (x <= 1) return 1; rval = rfact(x-1); return rval * x; } movl 8(),%ebx # ebx = x cmpl $1,%ebx # Compare x : 1 jle.l78 # If <= goto Term leal -1(%ebx),%eax # eax = x-1 pushl %eax # Push x-1 call rfact # rfact(x-1) imull %ebx,%eax # rval * x jmp.l79 # Goto done.l78: # Term: movl $1,%eax # return val = 1.L79: # Done: 39

rfact Recursion leal -1(%ebx),%eax x pushl %eax Old Old %ebx x Old Old %ebx x-1 call rfact x Old Old %ebx %eax %ebx x-1 x %eax x-1 x-1 %ebx x %eax x-1 %ebx x 40

rfact Result Return from Call imull %ebx,%eax x x Old Old Old %ebx Old %ebx x-1 x-1 %eax (x-1)! %eax (x-1)! x! %ebx x %ebx x Assume that rfact(x-1) returns (x-1)! in register %eax 41

rfact Completion 8 pre pre %ebx x movl 4(),%ebx movl, popl ret 4 0-4 -8 %eax Old Old %ebx x-1 x! 8 4 0 pre pre %ebx x Old pre pre %ebx x %ebx Old x %ebx %eax x! %ebx Old %ebx %eax x! %ebx Old %ebx 42

Summary The stack makes recursion work Private storage for each instance of procedure call Instantiations don t clobber each other Addressing of locals + arguments can be relative to stack positions Can be managed by stack discipline Procedures return in inverse order of calls Procedures = Instructions + Conventions Call / Ret instructions Register usage conventions Caller / Callee save and frame organization conventions 43