Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8753095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:21:40+00:00 2026-06-13T13:21:40+00:00

I want to understand how to build a call stack as gdb does on

  • 0

I want to understand how to build a call stack as gdb does on running backtrace command. This was asked in an interview and I answered it based on my knowledge of call stack and stack frames. I think this is done using the stack pointer, the return address/instruction of the caller and mapping it to the executable / assembly instructions. I have been looking for how it is actually done or a good explanation of this stack walk. All the information I found on googling was related to microsoft API to this walk programmatically and I am looking for a generic explanation of how to approach building a call stack.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:21:41+00:00Added an answer on June 13, 2026 at 1:21 pm

    A google search led me here.

    Consider the very simple ix86 calling convention with frame pointers. Every time you call a routine, the address of the next instruction is pushed onto the stack. Called routine immediately upon entry executes push %ebp; mov %esp,%ebp instructions. You then end up exactly with the layout from the page above.

    Let’s say you are stopped in routine foo, called from bar, called from baz, called from main.

    You examine two words pointed to by %ebp. The first word is the previous value of %ebp (let’s call it prev_ebp, the second is the return address — instruction pointer somewhere inside bar.

    You now examine two words pointed to by prev_ebp. The first one will be prev_prev_ebp, the second will be a return address — instruction pointer somewhere inside baz.

    Repeat until you reach main, and you have executed roughly the procedure that GDB uses.

    There are many practical complications, such as frames that don’t use frame pointer, but you are not expected to understand that 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to understand the role interface plays in inheritance between two classes. My
I want to understand the actual theory behind types rather than just learning about
I want to understand in which order are the elements of h_addr_list sorted when
I want to understand if code snippets are what I am looking for here.
I want to understand the use of xargs man in Rampion's code : screen
I want to understand the external linkage and internal linkage and their difference. I
I want to understand how a C++ program that was given to me works,
I want to understand how the mechanism of Shadowing and Nested function work. For
I want to understand why the following is happening. My guess is that a
I want to understand more about the system and DB architecture of MongoDB. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.