Definitions for "Call stack"
The current state of all active subprograms that AdaDebug displays in a Stack Trace window during debugging.
a series of program counter addresses (PCs) representing instructions from within the program
A software stack of functions and routines used by the running program. The functions and routines are listed in the reverse order, from top to bottom, in which they were called. If function is immediately below function in the stack, then was called by . The function at the bottom of the stack is the one currently executing.
the part of memory containing the bindings of formal parameters to actual values for procedure calls