SlideShare a Scribd company logo
1 of 23
Download to read offline
The Stack
 Frame

An Ivaylo Marinkov presentation
        ivaylo@tsarstva.bg
Call Stack
A stack data structure storing
information of a computer program's
active subroutines.
Whilst important for the software's
proper functioning, its details are
usually hidden and usage is automated
in high-level programming languages.
Call Stack Purpose


Keeping record of the point to which
each active subroutine should return
control when finished.
Active Subroutine
A routine that has been called but
has not finished execution yet.
Afterwords, control should be
returned to the point where the call
has been made.
Routines may be nested to any level
and recursion is possibe – hence the
stack structure.
For example, the DrawSquare
subroutine calls the DrawLine
subroutine from four different
places. DrawLine must know where
to return once completed.
This is accomplished by pushing the
address following the call
instruction – the return address –
onto the stack with each call.
Call Stack Inner Workings
 The caller pushes the return address onto
 the stack (winding).
 The called subroutine, when it finishes,
 pops the return address off the stack and
 transfers control to it (unwinding).
 If a called subroutine calls on yet another
 subroutine, it will push another address
 onto the stack, and so on, with the
 information stacking up and unstacking as
 the program dictates.
Should pushing consume all the
space allocated for the call stack, an
error called stack overflow will
occur.
There is usually a single call stack
associated with each process thread.
However, the program may create
additional call stacks for tasks such as
signal-hadling or cooperative
multitasking.
Additional Call Stack Functions
Local data storage – keeping local-scope
variable values.
Parameter passing – storage for values
passed by calling code.
Evalution stack – in some cases
operands for logical and
arithmetic operations may be
stored in the call stack.
Current instance pointer –
for this pointer in
object-oriented languages.
Structure
       A call stack is
       composed of
       stack frames,
       machine and
       application banary
       interface-
       dependant data
       structures
       containing
       subroutine state
       information.
The Stack Frame

Generally speaking, a
procedure's stack frame contains
all the information necessary to
save and restore the state of the
procedure.
Strictly speaking, it is only necessary
for the calling program and the
called procedure to agree on the
structure of the stack frame for each
procedure call.
However, the specification of a
calling convention facilitates the use
of procedure libraries by defining
the structure of the stack frame
uniformly for all procedure calls.
The frame pointer is
                                 stored in register $30,
                                 also known as $fp. A
                                 stack frame consists of
                                 the memory on the
                                 stack between the
                                 frame pointer and the
                                 stack pointer.

                                 Three steps are
                                 necessary to call a
Calling convention used in the
MIPS architecture stack frame    procedure.
1. Pass the arguments. The first
four arguments are passed in
registers $a0-$a3. The remaining
arguments are pushed onto the
stack.

2. Save the caller-saved registers.
This includes registers $t0-$t9, if
they contain live values at the call
site.

                                       The endless MIPS
3. Execute a jal instruction.          cycle
1. Pass the arguments. The first
four arguments are passed in
registers $a0-$a3. The remaining
arguments are pushed onto the
stack.

2. Save the caller-saved registers.
This includes registers $t0-$t9, if
they contain live values at the call
site.

                                       The endless MIPS
3. Execute a jal instruction.          cycle
Within the called routine, the following steps
are necessary:
1. Establish the stack frame by subtracting
the frame size from the stack pointer.
2. Save the callee-saved registers in the
frame. Register $fp is always saved. Register
$ra and registers $a0-$a3 need to be saved if
they are in use and the routine itself makes
calls. Any of the registers $s0- $s7 that are
used by the callee need to be saved.
3. Establish the frame pointer by adding the
stack frame size to the address in $sp.
To return from a call, a function places the
returned value into $v0 and executes the
following steps:
1. Restore any callee-saved registers that
were saved upon entry.
2. Pop the stack frame by subtracting the
frame size from $sp.
3. Return by jumping to the address in
register $ra.
Debugging
The purpose of a debugger such
as GDB (gnu.org/software/gdb) is
to allow you to see what is going
on “inside” another program
while it executes--or what
another program was doing at
the moment it crashed.
In Practice
        An illustration to
        viewing the call
        stack using GDB.

        1. Compile your
        program with the
        -g option, like
        cc -g -o p1 p1.c
2. Navigate to your program's directory
and run GDB: gdb your_program




If all went fine, you will land on a
command prompt.
3. Then install some breakpoints using the
break command:
break function_name




4. Now run. The program will proceed
until the first breakpoint.
You can select a frame using the frame n
command and view frame information
using the info frame n command.




Some of the details this command
displays are the addresses of the frame,
the next frame down (called by this
frame) and the next frame up (caller of
this frame).
View the call stack using the backtrace
command. A backtrace is a summary of
how your program got where it is. It
shows one line per frame, for many
frames, starting with the one currently
in execution (frame zero), followed by its
caller (frame one), and on up the stack.
Resources
https://en.wikipedia.org/wiki/Call_stack
http://www.cs.uaf.edu/~cs301/notes/Chapter9/node11.html
http://chortle.ccsu.edu/assemblytutorial/Chapter-26/ass26_4.html
http://www.chemie.fu-berlin.de/chemnet/use/info/gdb/
http://www.freebsd.org/doc/en/books/developers-handbook/debugging.html
https://www.gnu.org/software/gdb/
Background images from various sources.


   This presentation was created using only free and open
    source software including the Ubuntu Linux operating
     system, LibreOffice, Mozilla Firefox, Geany, GDB and
                        KolourPaint.

More Related Content

What's hot

What's hot (20)

Linked list
Linked listLinked list
Linked list
 
Lecture Notes-Finite State Automata for NLP.pdf
Lecture Notes-Finite State Automata for NLP.pdfLecture Notes-Finite State Automata for NLP.pdf
Lecture Notes-Finite State Automata for NLP.pdf
 
File Management in C
File Management in CFile Management in C
File Management in C
 
Syntax analyzer
Syntax analyzerSyntax analyzer
Syntax analyzer
 
ARRAY
ARRAYARRAY
ARRAY
 
Suffix Tree and Suffix Array
Suffix Tree and Suffix ArraySuffix Tree and Suffix Array
Suffix Tree and Suffix Array
 
Chapter1 Formal Language and Automata Theory
Chapter1 Formal Language and Automata TheoryChapter1 Formal Language and Automata Theory
Chapter1 Formal Language and Automata Theory
 
UNIT II LINEAR DATA STRUCTURES – STACKS, QUEUES
UNIT II 	LINEAR DATA STRUCTURES – STACKS, QUEUES	UNIT II 	LINEAR DATA STRUCTURES – STACKS, QUEUES
UNIT II LINEAR DATA STRUCTURES – STACKS, QUEUES
 
Context free grammar
Context free grammar Context free grammar
Context free grammar
 
Function in C Programming
Function in C ProgrammingFunction in C Programming
Function in C Programming
 
queue & its applications
queue & its applicationsqueue & its applications
queue & its applications
 
Introduction to Array ppt
Introduction to Array pptIntroduction to Array ppt
Introduction to Array ppt
 
Input output streams
Input output streamsInput output streams
Input output streams
 
Bfs and Dfs
Bfs and DfsBfs and Dfs
Bfs and Dfs
 
linked list in data structure
linked list in data structure linked list in data structure
linked list in data structure
 
Introduction to design and analysis of algorithm
Introduction to design and analysis of algorithmIntroduction to design and analysis of algorithm
Introduction to design and analysis of algorithm
 
NFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition DiagramNFA Converted to DFA , Minimization of DFA , Transition Diagram
NFA Converted to DFA , Minimization of DFA , Transition Diagram
 
Three Address code
Three Address code Three Address code
Three Address code
 
Complexity Analysis
Complexity Analysis Complexity Analysis
Complexity Analysis
 
Looping in C
Looping in CLooping in C
Looping in C
 

Similar to The Stack Frame

Chapter Seven(1)
Chapter Seven(1)Chapter Seven(1)
Chapter Seven(1)
bolovv
 
Buffer overflow tutorial
Buffer overflow tutorialBuffer overflow tutorial
Buffer overflow tutorial
hughpearse
 

Similar to The Stack Frame (20)

Chapter Seven(1)
Chapter Seven(1)Chapter Seven(1)
Chapter Seven(1)
 
Intermediate code optimization Unit-4.pdf
Intermediate code optimization Unit-4.pdfIntermediate code optimization Unit-4.pdf
Intermediate code optimization Unit-4.pdf
 
Buffer overflow tutorial
Buffer overflow tutorialBuffer overflow tutorial
Buffer overflow tutorial
 
C++ Memory Management
C++ Memory ManagementC++ Memory Management
C++ Memory Management
 
Chapter 5 notes
Chapter 5 notesChapter 5 notes
Chapter 5 notes
 
Buffer overflow attack
Buffer overflow attackBuffer overflow attack
Buffer overflow attack
 
Co&al lecture-07
Co&al lecture-07Co&al lecture-07
Co&al lecture-07
 
002 hbase clientapi
002 hbase clientapi002 hbase clientapi
002 hbase clientapi
 
Chapter 6 notes
Chapter 6 notesChapter 6 notes
Chapter 6 notes
 
Introduction to c
Introduction to cIntroduction to c
Introduction to c
 
Chapter 5 notes new
Chapter 5 notes newChapter 5 notes new
Chapter 5 notes new
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial
 
CD CLASS NOTES- UNIT-4.docx
CD CLASS NOTES- UNIT-4.docxCD CLASS NOTES- UNIT-4.docx
CD CLASS NOTES- UNIT-4.docx
 
Run time storage
Run time storageRun time storage
Run time storage
 
systemverilog-interview-questions.docx
systemverilog-interview-questions.docxsystemverilog-interview-questions.docx
systemverilog-interview-questions.docx
 
Chap6 procedures & macros
Chap6 procedures & macrosChap6 procedures & macros
Chap6 procedures & macros
 
C Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpointC Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpoint
 
Compiler 2011-8-re1
Compiler 2011-8-re1Compiler 2011-8-re1
Compiler 2011-8-re1
 
Compiler 2011-8-re1
Compiler 2011-8-re1Compiler 2011-8-re1
Compiler 2011-8-re1
 
Mitigating overflows using defense in-depth. What can your compiler do for you?
Mitigating overflows using defense in-depth. What can your compiler do for you?Mitigating overflows using defense in-depth. What can your compiler do for you?
Mitigating overflows using defense in-depth. What can your compiler do for you?
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 

The Stack Frame

  • 1. The Stack Frame An Ivaylo Marinkov presentation ivaylo@tsarstva.bg
  • 2. Call Stack A stack data structure storing information of a computer program's active subroutines. Whilst important for the software's proper functioning, its details are usually hidden and usage is automated in high-level programming languages.
  • 3. Call Stack Purpose Keeping record of the point to which each active subroutine should return control when finished.
  • 4. Active Subroutine A routine that has been called but has not finished execution yet. Afterwords, control should be returned to the point where the call has been made. Routines may be nested to any level and recursion is possibe – hence the stack structure.
  • 5. For example, the DrawSquare subroutine calls the DrawLine subroutine from four different places. DrawLine must know where to return once completed. This is accomplished by pushing the address following the call instruction – the return address – onto the stack with each call.
  • 6. Call Stack Inner Workings The caller pushes the return address onto the stack (winding). The called subroutine, when it finishes, pops the return address off the stack and transfers control to it (unwinding). If a called subroutine calls on yet another subroutine, it will push another address onto the stack, and so on, with the information stacking up and unstacking as the program dictates.
  • 7. Should pushing consume all the space allocated for the call stack, an error called stack overflow will occur. There is usually a single call stack associated with each process thread. However, the program may create additional call stacks for tasks such as signal-hadling or cooperative multitasking.
  • 8. Additional Call Stack Functions Local data storage – keeping local-scope variable values. Parameter passing – storage for values passed by calling code. Evalution stack – in some cases operands for logical and arithmetic operations may be stored in the call stack. Current instance pointer – for this pointer in object-oriented languages.
  • 9. Structure A call stack is composed of stack frames, machine and application banary interface- dependant data structures containing subroutine state information.
  • 10. The Stack Frame Generally speaking, a procedure's stack frame contains all the information necessary to save and restore the state of the procedure.
  • 11. Strictly speaking, it is only necessary for the calling program and the called procedure to agree on the structure of the stack frame for each procedure call. However, the specification of a calling convention facilitates the use of procedure libraries by defining the structure of the stack frame uniformly for all procedure calls.
  • 12. The frame pointer is stored in register $30, also known as $fp. A stack frame consists of the memory on the stack between the frame pointer and the stack pointer. Three steps are necessary to call a Calling convention used in the MIPS architecture stack frame procedure.
  • 13. 1. Pass the arguments. The first four arguments are passed in registers $a0-$a3. The remaining arguments are pushed onto the stack. 2. Save the caller-saved registers. This includes registers $t0-$t9, if they contain live values at the call site. The endless MIPS 3. Execute a jal instruction. cycle
  • 14. 1. Pass the arguments. The first four arguments are passed in registers $a0-$a3. The remaining arguments are pushed onto the stack. 2. Save the caller-saved registers. This includes registers $t0-$t9, if they contain live values at the call site. The endless MIPS 3. Execute a jal instruction. cycle
  • 15. Within the called routine, the following steps are necessary: 1. Establish the stack frame by subtracting the frame size from the stack pointer. 2. Save the callee-saved registers in the frame. Register $fp is always saved. Register $ra and registers $a0-$a3 need to be saved if they are in use and the routine itself makes calls. Any of the registers $s0- $s7 that are used by the callee need to be saved. 3. Establish the frame pointer by adding the stack frame size to the address in $sp.
  • 16. To return from a call, a function places the returned value into $v0 and executes the following steps: 1. Restore any callee-saved registers that were saved upon entry. 2. Pop the stack frame by subtracting the frame size from $sp. 3. Return by jumping to the address in register $ra.
  • 17. Debugging The purpose of a debugger such as GDB (gnu.org/software/gdb) is to allow you to see what is going on “inside” another program while it executes--or what another program was doing at the moment it crashed.
  • 18. In Practice An illustration to viewing the call stack using GDB. 1. Compile your program with the -g option, like cc -g -o p1 p1.c
  • 19. 2. Navigate to your program's directory and run GDB: gdb your_program If all went fine, you will land on a command prompt.
  • 20. 3. Then install some breakpoints using the break command: break function_name 4. Now run. The program will proceed until the first breakpoint.
  • 21. You can select a frame using the frame n command and view frame information using the info frame n command. Some of the details this command displays are the addresses of the frame, the next frame down (called by this frame) and the next frame up (caller of this frame).
  • 22. View the call stack using the backtrace command. A backtrace is a summary of how your program got where it is. It shows one line per frame, for many frames, starting with the one currently in execution (frame zero), followed by its caller (frame one), and on up the stack.