Tagged Questions
The callstack tag has no wiki summary.
52
votes
7answers
33k views
How do you find out the caller function in JavaScript?
function main()
{
Hello();
}
function Hello()
{
// How do you find out the caller function is 'main'?
}
Is there a way to find out the call stack at all?
31
votes
11answers
26k views
How can one grab a stack trace in C?
I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.)
Thanks for ...
20
votes
5answers
4k views
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 a current position in a Perl script?
I need to make changes to some Perl modules (.pm's). ...
11
votes
6answers
4k views
print call stack in C or C++
Is there any way to dump the call stack in a running process in C or C++ every time a certain function is called? What I have in mind is something like this:
void foo()
{
print_stack_trace();
...
11
votes
2answers
893 views
How can I rethrow an exception in Javascript, but preserve the stack?
In Javascript, suppose I want to perform some cleanup when an exception happens, but let the exception continue to propagate up the stack, eg:
try {
enterAwesomeMode();
doRiskyStuff(); // might ...
11
votes
6answers
1k views
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 current function's name to the exception and throw it again, so that in the upmost catch ...
11
votes
6answers
236 views
How are exceptions allocated on the stack caught beyond their scope?
In the following code, the stack-based variable 'ex' is thrown and caught in a function beyond the scope in which ex was declared. This seems a bit strange to me, since (AFAIK) stack-based variables ...
9
votes
4answers
191 views
Complex JavaScript. What called me?
Project I'm working on uses jQuery.
I have a series of Ajax calls being made that load() other HTML fragments which in turn load() other fragments. The whole thing is confusing. I didn't write the ...
8
votes
3answers
657 views
How to detect the point of a stack overflow
I have the following problem with my C program: Somewhere is a stack overflow. Despite compiling without optimization and with debugger symbols, the program exits with this output (within or outside ...
8
votes
9answers
4k views
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 later on (see my article [Post Mortem Debugging][1]).
EDIT:: Problem solved - see my own ...
7
votes
5answers
276 views
CallStack determines where you are going next?
In a previous question ( Get object call hierarchy ) , I got this interesting answer:
The call stack is not there to tell
you where you came from. It is to tell
you where you are going next.
...
7
votes
4answers
584 views
How do I debug a difficult-to-reproduce crash with no useful call stack?
I am encountering an odd crash in our software and I'm having a lot of trouble debugging it, and so I am seeking SO's advice on how to tackle it.
The crash is an access violation reading a NULL ...
7
votes
3answers
637 views
How do I pass arguments to C++ functions when I call them from inline assembly
So, I would like to be able to call functions from a c++ dll.
For certain reasons, I would like to call them from an __asm block in my C++ code.
My question is this: I know that before I call the ...
7
votes
3answers
3k views
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 also if possible what the line number was)
try
{
// etc...
}
catch ...
7
votes
3answers
2k views
6
votes
4answers
146 views
How do I print functions as they are called
In debugging a Python script, I'd really like to know the entire call stack for my entire program. An ideal situation would be if there were a command-line flag for python that would cause Python to ...
6
votes
2answers
118 views
Argument forwarding in LLVM
I need some advice on "forwarding" arguments to a callee (in the LLVM-IR).
Suppose I have a function F that is called at the beginning of all other functions in the module. From F I need to access ...
6
votes
2answers
305 views
For C# logging, how to obtain call stack depth with minimal overhead?
I have created a wrapper for log4net (which I may be dropping in favor of NLog, haven't decided yet), and I indent the logged messages result to give an idea of calling structure. For example:
...
6
votes
3answers
205 views
Stack Walking a debugged process
I'm opened opening a process (with C++/Windows) using
if( CreateProcessA( NULL, // No module name (use command line)
(LPSTR)path, //argv[1], // Command line
NULL, // ...
6
votes
2answers
2k views
c++ stack trace from unhandled exception?
This question has been asked before and there have been windows-specific answers but no satisfactory gcc answer. I can use set_terminate() to set a function that will be called (in place of ...
6
votes
6answers
1k views
Need a way to periodically log the call stack/stack trace for EVERY method/procedure/function called
I'm working on a very large application where periodically I'd like to log the ENTIRE call stack up until the current execution point (not on an exception). The idea here is that I want a map of the ...
5
votes
1answer
65 views
Walking a .NET callstack using native C++
Is there a way to walk a .NET callstack using native c++?
I read the dbgHelp only handles native frames.
Also, I tried finding information about how the .NET callstack is built but didn't find ...
5
votes
2answers
328 views
How To Loop Through All Active Thread in iPad app
In the iPad app that I'm creating, I'm trying to handle the uncaught Exceptions by outputting the callStackSymbols of the exception. This can be done with [NSException callStackSymbols]
However, I'd ...
5
votes
1answer
629 views
How to filter call stack in Eclipse debug view for Java
While debugging, the Debug view in Eclipse shows the call stack. Which is great. But I'd love to be able to filter out all the call that I definitely don't care about, such as Spring and the JUnit ...
5
votes
2answers
145 views
Inheritance in Java
recently I went through the inheritance concept.
As we all know, in inheritance, superclass objects are created/initialized prior to subclass objects. So if we create an object of subclass, it ...
5
votes
4answers
149 views
Is there a way to know the invoking method?
I know the class method tells what is the name of the class of an object, how could I know the name of the invoking method? Is there a way to know that?
5
votes
5answers
253 views
How can I detect recursing package calls in Perl?
I have a Perl project were I just had a problem by making a circular package call. The code below demonstrates the problem.
When this is executed, each package will call the other until all of the ...
5
votes
4answers
3k views
Is it possible to retrieve the call stack programmatically in VB6?
When an error occurs in a function, I'd like to know the sequence of events that lead up to it, especially when that function is called from a dozen different places. Is there any way to retrieve the ...
4
votes
1answer
95 views
confusion about function call stack
According to Wiki:
the caller pushes the return address onto the stack, and the called
subroutine, when it finishes, pops the return address off the call
stack and transfers control to that ...
4
votes
3answers
123 views
Trouble debugging minidump in VS 2010
I'm calling MiniDumpWriteDump from .NET to generate a minidump, and that works fine. However, when I load the resulting dump into VS 2010, I don't see any useful info. In particular, the Call Stack ...
4
votes
5answers
108 views
How is validating a parameter “high up” on the callstack done?
I've been reading the Framework Design Guidelines book, a book on designing frameworks in .NET, with excerpts from the framework designers on the decisions they made regarding each section (E.g. ...
4
votes
1answer
314 views
Obtain a callstack in Clojure
When I run my Clojure programs and get an error during execution, I notice that the message printed by the REPL only contains the top level line number from the script I executed. Can I get it to ...
4
votes
3answers
481 views
faster than Stackwalk
Does anybody know of a better/ faster way to get the call stack than "StackWalk"?
I also think that stackwalk can also be slower on methods with a lot of variables...
(I wonder what commercial ...
4
votes
3answers
120 views
conceptual “stacks” and code layers in programming
I have been thinking a lot lately about how code gets organized in a layered way. I have been thinking of four different ways:
Instantiation -- specifically objects are instances of classes. ...
4
votes
2answers
121 views
If the call stack gets corrupted, would that crash only the current thread, or my entire application?
I'm a noob when it comes to threading in C#, and I'm not sure if each thread is supposed to have its own call stack? Basically, if I get a "Run-Time Check Failure #0 - The value of ESP was not ...
4
votes
4answers
587 views
How can I monitor the Perl call stack?
I'm using ActivePerl 5.8 on Windows XP.
use strict;
use warnings;
use Data::Dumper;
There are three subroutines used in my script.
To detect the call stack, I can only insert some print "some ...
4
votes
6answers
891 views
If the program counter points to the address of the next instruction to be executed, what do frame pointers do?
If the program counter points to the address of the next instruction to be executed, what do frame pointers do?
4
votes
2answers
472 views
Web Based Stack Dump Tool for ASP.NET Using Mdbg?
There is a great presentation by Dan Farino, Chief Systems Architect at MySpace.com, showcasing a web-based stack dump tool that catalogues all threads running in a given process (what they're doing, ...
4
votes
14answers
1k views
What can modify the frame pointer?
I have a very strange bug cropping up right now in a fairly massive C++ application at work (massive in terms of CPU and RAM usage as well as code length - in excess of 100,000 lines). This is running ...
4
votes
3answers
2k views
How to get a full call stack in Visual Studio 2005?
How can I get a full call stack for a c++ application developed with Visual Studio 2005? I would like to have a full call stack including the code in the system libraries.
Do I have to change some ...
3
votes
5answers
154 views
Can an excessively deep C++ class hierarchy cause a stack overflow?
Suppose I have a C++ program that has excessively deep inheritance as follows:
using namespace std;
class AbstractParentGeneration0 {
private:
...
protected:
...
public:
...
3
votes
1answer
158 views
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 GCC. I know vaguely that the .cfi directives are involved in call frames and stack ...
3
votes
3answers
75 views
How do Inner blocks in Java access local variables which are supposed to be out-of-scope? (How the JVM treats final local variables in Java)
In the following code:
public class Main
{
Emp globalEmp;
public void aMethod()
{
final int stackVar = 10;
globalEmp = new Emp()
{
public void ...
3
votes
3answers
130 views
What is the difference between Call Stack and Stack Trace?
What is the difference between the terms "Call Stack" and "Stack Trace" ?
3
votes
2answers
76 views
What happens when a method is called? Where are the arguments pushed?
When you call an method, for example, [objectA message:arg1 argument:arg2], what happens to the arguments?
For example, when you call a method, the address of that method is pushed to the call ...
3
votes
2answers
75 views
In C# (or .NET in general) can you mask the call stack level where an exception was thrown via attributes?
The title may be a little confusing so I'll explain. Say you had this call chain...
public DoWork(index) >> private DoWorkHelper(index) >> private CheckIndex(index)
Now if you call ...
3
votes
8answers
266 views
why doesn't my program crash when I write past the end of an array?
Why the below code works without any crash @ runtime ?
And also the size is completely dependent on machine/platform/compiler!!. I can even give upto 200 in a 64-bit machine. how would a segmentation ...
3
votes
1answer
237 views
c++ stacktrace from the function an exception is thrown?
I can make use of gcc's backtrace to obtain a stack trace at any given point of a program, but I would like to obtain the trace from whatever frame the stack was in at the time an exception is thrown, ...
3
votes
2answers
5k views
Maximum call stack size exceeded error
I am using a Direct Web Remoting (DWR) Javascript library file and am getting an error only in Safari (desktop and iPad)
It says "Maximum call stack size exceeded."
What exactly does this error mean ...
3
votes
1answer
317 views
How can I log the callstack with JCL without using raise exception
Background
We have a problem that sometimes the grid in Devexpress raise exception
"Raised EConvertError: Cannot assign a nil to a TFont".
But to trace the real cause of this we have changed Font ...