Top "Callstack" questions

A stack that stores details of the functions called by a program in sequence, so that each function can return on completion to the code that called it.

How can I get a call stack listing in Perl?

Is there a way I can access (for printout) a list of sub + module to arbitrary depth of sub-calls preceding …

perl stack-trace callstack
List of all function calls made in an application

How can we list all the functions being called in an application. I tried using GDB but its backtrace list …

gdb callstack gprof
Does Chrome have a built-in Call Stack?

From Visual Studio, I'm accustomed to a call stack showing up at any breakpoint. Does Chrome have a call stack …

javascript google-chrome browser google-chrome-devtools callstack
Why does the stack address grow towards decreasing memory addresses?

I read in text books that the stack grows by decreasing memory address; that is, from higher address to lower …

memory-management stack virtual-memory callstack
How to Log Stack Frames with Windows x64

I am using Stackdumps with Win32, to write all return adresses into my logfile. I match these with a mapfile …

c++ c winapi 64-bit callstack
JavaScript exception handling - displaying the line number

When catching / handling exceptions in JavaScript, how can I determine what the call stack was when the exception occurred? (and …

javascript exception-handling callstack
Call-stack for exceptions in C++

Today, in my C++ multi-platform code, I have a try-catch around every function. In every catch block I add the …

c++ exception callstack try-catch
How to print call stack in Swift?

In Objective-C, you can print the call stack by doing the following: NSLog(@"%@", [NSThread callStackSymbols]); How do you do this …

swift debugging callstack
GAS: Explanation of .cfi_def_cfa_offset

I would like an explanation for the values used with the .cfi_def_cfa_offset directives in assembly generated by …

assembly callstack gnu-assembler dwarf
How exactly does the callstack work?

I'm trying to get a deeper understanding of how the low level operations of programming languages work and especially how …

assembly cpu callstack low-level calling-convention