Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
384 views

Is the gcc insane optimisation level (-O3) not insane enough?

As part of answering another question, I wanted to show that the insane level of optimisation of gcc (-O3) would basically strip out any variables that weren't used in main. The code was: #include ...
5
votes
4answers
521 views

Determining which code line threw the exception

In dotNet a line throws an exception and is caught, how can I figure out which line in which file threw the exception? Seems relatively straightforward, but I can't figure it out...
4
votes
2answers
386 views

Spring insight crashes with “Imbalanced frame stack”

I want to use spring insight to trace my spring mvc webapp. When starting up the tc server 2.5 developer edition, my application comes up but I see following message in the console: 20.10.2011 ...
4
votes
2answers
329 views

Is there a simple way to obtain all the local variables in the current stack frame in C# (or CIL)

Following my previous question, in which I wanted to dump all the variables in the stack (from the current and all the previous frame) that can be seen here: Is there a way to examine the Stack ...
4
votes
2answers
688 views

GetEntryAssembly for web applications

Assembly.GetEntryAssembly() does not work for web applications. But... I really need something like that. I work with some deeply-nested code that is used in both web and non-web applications. My ...
3
votes
2answers
65 views

Get the name of the first argument in an extension method?

string thing = "etc"; thing = thing.GetName(); //now thing == "thing" Is this even possible? public static string GetName(this object obj) { return ... POOF! //should == "thing" }
3
votes
1answer
362 views

exception call stack truncated without any re-throwing

I have an unusual case where I have a very simple Exception getting thrown and caught in the same method. It isn’t re-thrown (the usual kind of problem naïve programmers have). And yet its ...
2
votes
1answer
79 views

push return values in stack frame

I'm wondering if it makes sense to push the return value of a function in its the stack-frame. I know return values are mostly stored in registers (eax for gcc), but is it for performance only? ...
2
votes
2answers
177 views

Logging filename, line number in logs. Do I need to pass the StackFrame?

Currently, I pass the StackFrame to grab the current file/line number: Log.Message(new StackFrame(0, true), "FAILED to start cooling."); Where in the Log class is: public void Message(StackFrame ...
2
votes
2answers
138 views

Getting The Method That A Method Was Called From?

Is it possible to determine the calling method name "Eat Pizza" in PostError? I guess I could pass "EatPizza" as one of the arguments, but that would require changes each time the method name changes ...
2
votes
2answers
141 views

Identifying a function call in a python script line in runtime

I have a python script that I run with 'exec'. When a function is called by the script, I would like it to know the line number and offset in line for that call. Here is an example. If my script is: ...
2
votes
2answers
955 views

How do I get the executing object for a stackframe?

When using reflection it is possible to obtain the call stack (apart from that it can be a crude approximation due to JIT optimizations) using System.Diagnostics.StackTrace and examine the StackFrame ...
1
vote
1answer
87 views

Reflect up 5 levels for a Property?

I have implemented a CustomTraceListener for use with Enterprise Library 5. From the TraceData method, I need to crawl the stack up 6 levels to my class that had the actual logging call, I need a ...
1
vote
1answer
49 views

Retrieve FormatException Argument

I'm using a closed-source third-party library like this: object val = SomeClass.ExtractValue( someObject ); Now somewhere further down the road, the third-party library tries to parse a DateTime ...
1
vote
1answer
236 views

Is Powershell's stack trace broken?

I am writing a simple unit test harness in powershell I designed the harness such that its assert functions takes a script-block as a parameter to allow the harness to run the code from within the ...
1
vote
3answers
213 views

c/c++ passing argument by pointer/argument by reference stack frame layout

Will the compiler produce the same code for both of these statements? foo1(int* val){(*val)++;} foo2(int &val){val++;} Will it simply write a pointer into the parameter part of foo's stack ...
1
vote
2answers
184 views

Obtaining references to function objects on the execution stack from the frame object?

Given the output of inspect.stack(), is it possible to get the function objects from anywhere from the stack frame and call these? If so, how? (I already know how to get the names of the functions.) ...
0
votes
0answers
44 views

Is this how stack frame is implemented in MIPS?

I am trying to write a simple MIPS program manually to illustrate the stack frame. The full assembly code is here: http://pastebin.com/EGRikr5K I want to illustrate stack creation when we enter ...
0
votes
0answers
145 views

StackWalk64() under the hood

I already read a few articles on how to use StackWalk64 and related problems but I still didnt make it to run properly and primarily I still got some understanding problem of what the StalkWalk64() ...
0
votes
2answers
72 views

C# get caller class type (Not in Static)

How do I get the caller class type in the base? this is the parent, here I want to print the child type without sending it public abstract class Parent: ISomeInterface { public void ...
0
votes
1answer
85 views

.net StackFrame and current line/column

I wrote a method Assert(): [System.Diagnostics.Conditional("DEBUG")] internal static void Assert(bool condition) { if (!condition) { var message = "Line:" + (new ...
0
votes
2answers
127 views

Get Class Name with extension in C#?

I am trying to get class name with the extension (e.g. Employee.cs or Employee.aspx.cs) in my code. I was able to get the name of the class without the extension but does anybody know how can i also ...
0
votes
1answer
147 views

StackFrame.GetFileLineNumber() behaviour varies based on assembly Platform and Optimisation flags

i'm trying to understand a problem and although I've read a lot, I can't seem to find any resources explaining this odd combination. After a bit of experimentation I've found that combinations of ...
0
votes
3answers
221 views

Does -fomit-frame-pointer *always* omit the fp?

Does -fomit-frame-pointer always omit the frame pointer? Is there ever a situation where both the pc and fp need to be setup? Does dynamic stack growth force the fp to be setup? Asking specifically ...
0
votes
1answer
65 views

Debugger that can visualise the stack with a block diagram

I would really like a debugging tool that is able to visualise the current stack frame (bytes between RSP and RBP) as a block diagram. Something like this, but with real execution values in the ...