Most commands for examining the stack and other data in your program work on whichever stack frame is selected at the moment. Here are the commands for selecting a stack frame; all of them finish by printing a brief description of the stack frame just selected.
frame
[ frame-selection-spec ]f
[ frame-selection-spec ]level
nummain
.
As this is the most common method of navigating the frame stack, the string level can be omitted. For example, the following two commands are equivalent:
(gdb) frame 3 (gdb) frame level 3
address
stack-address(gdb) info frame Stack level 1, frame at 0x7fffffffda30: rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5 tail call frame, caller of frame at 0x7fffffffda30 source language c++. Arglist at unknown address. Locals at unknown address, Previous frame's sp is 0x7fffffffda30
The stack-address for this frame is 0x7fffffffda30
as
indicated by the line:
Stack level 1, frame at 0x7fffffffda30:
function
function-nameview
stack-address [ pc-addr ]This is useful mainly if the chaining of stack frames has been damaged by a bug, making it impossible for gdb to assign numbers properly to all frames. In addition, this can be useful when your program has multiple stacks and switches between them.
When viewing a frame outside the current backtrace using frame view then you can always return to the original stack using one of the previous stack frame selection instructions, for example frame level 0.
up
ndown
ndown
as do
.
All of these commands end by printing two lines of output describing the frame. The first line shows the frame number, the function name, the arguments, and the source file and line number of execution in that frame. The second line shows the text of that source line.
For example:
(gdb) up #1 0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc) at env.c:10 10 read_input_file (argv[i]);
After such a printout, the list
command with no arguments
prints ten lines centered on the point of execution in the frame.
You can also edit the program at the point of execution with your favorite
editing program by typing edit
.
See Printing Source Lines,
for details.
select-frame
[ frame-selection-spec ]select-frame
command is a variant of frame
that does
not display the new frame after selecting it. This command is
intended primarily for use in gdb command scripts, where the
output might be unnecessary and distracting. The
frame-selection-spec is as for the frame command
described in Selecting a Frame.
up-silently
ndown-silently
nup
and down
,
respectively; they differ in that they do their work silently, without
causing display of the new frame. They are intended primarily for use
in gdb command scripts, where the output might be unnecessary and
distracting.