View Single Post

   
  #4 (permalink)  
Old 01-16-2008, 06:48 PM
Tammy Morford
 
Posts: n/a
Default 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.
Reply With Quote