Re: Dumping stacktrace on HPUX itanium using gdb Siva Kodiganti (siva.kodiganti@oracle.com) wrote:
: This program is not compiled with -g options. I would
: like to dump raw arguments(like register contents, current instruction
: pointer, register values etc., debug at assembly level).
If you want to do it at the assembly level, use the frame command to
walk the stack and then use "info reg". Or print out $gr32 .. $gr39.
The current PC for each frame is on the bt stack trace. |