debugging - Debugger that can visualise the stack with a block diagram -
i debugging tool able visualise current stack frame (bytes between rsp , rbp) block diagram.
something this, real execution values in cells: http://abrickshort.files.wordpress.com/2006/11/stackframe.jpg
does such software exist? i'm using unix system.
ps.
aware of gdb's "examine bytes" function. that's use now, pretty diagrams show supervisor.
cheers
gdb won't able give diagram off-the-shelf, info frame n
gives need:
(gdb) info frame 2 stack frame @ 0x7ffff7fe3fe0: rip = 0x3cbd806ccb in start_thread (pthread_create.c:301); saved rip 0x3cbd0e0c2d called frame @ 0x0, caller of frame @ 0x7ffff7fe3ed0 source language c. arglist @ 0x7ffff7fe3ec8, args: arg=0x7ffff7fe4700 locals @ 0x7ffff7fe3ec8, previous frame's sp 0x7ffff7fe3fe0 saved registers: rbx @ 0x7ffff7fe3fd0, rip @ 0x7ffff7fe3fd8
Comments
Post a Comment