vote up 0 vote down star

What is this offset hex value?

flag

17% accept rate
What is this AV? – Shog9 Sep 19 '08 at 17:49

1 Answer

vote up 1 vote down

I believe this will be the offset of the instruction from the start of the function.

If you have the assembler (.asm) output for your application, from the compiler, you can map the offset value (once you locate the function) against this to determine what instructions were being executed. If the correct flags in the compiler configuration are set the .asm output will include the high level language constructs (e.g. C/C++ source) that the assembler represents. You will then be able to pinpoint the statement being executed.

If you are using a different language than C/C++ for your application then the above will still apply but you may need to review your platform documentation to achieve the necessary output.

link|flag
How will that help me in debugging. How would I know which variable or parameter that is? – Prache Sep 19 '08 at 18:09
I have edited my original response to include more information. If you need further assistance it would be useful to see an excerpt of the callstack in question. – Henk Sep 19 '08 at 19:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.