The commands described in this chapter allow you to inquire about the symbols (names of variables, functions and types) defined in your program. This information is inherent in the text of your program and does not change as your program executes. gdb finds it in your program's symbol table, in the file indicated when you started gdb (see Choosing Files), or by one of the file-management commands (see Commands to Specify Files).
Occasionally, you may need to refer to symbols that contain unusual characters, which gdb ordinarily treats as word delimiters. The most frequent case is in referring to static variables in other source files (see Program Variables). File names are recorded in object files as debugging symbols, but gdb would ordinarily parse a typical file name, like foo.c, as the three words `foo' `.' `c'. To allow gdb to recognize `foo.c' as a single symbol, enclose it in single quotes; for example,
p 'foo.c'::x
looks up the value of x
in the scope of the file foo.c.
set case-sensitive on
set case-sensitive off
set case-sensitive auto
set
case-sensitive
lets you do that by specifying on
for
case-sensitive matches or off
for case-insensitive ones. If
you specify auto
, case sensitivity is reset to the default
suitable for the source language. The default is case-sensitive
matches for all languages except for Fortran, for which the default is
case-insensitive matches.
show case-sensitive
info address
symbolNote the contrast with `print &symbol', which does not work at all for a register variable, and for a stack local variable prints the exact address of the current instantiation of the variable.
info symbol
addr(gdb) info symbol 0x54320 _initialize_vx + 396 in section .text
This is the opposite of the info address
command. You can use
it to find out the name of a variable or a function given its address.
For dynamically linked executables, the name of executable or shared library containing the symbol is also printed:
(gdb) info symbol 0x400225 _start + 5 in section .text of /tmp/a.out (gdb) info symbol 0x2aaaac2811cf __read_nocancel + 6 in section .text of /usr/lib64/libc.so.6
whatis [
arg]
$
, the last value in the value history.
If arg is an expression (see Expressions), it is not actually evaluated, and any side-effecting operations (such as assignments or function calls) inside it do not take place.
If arg is a variable or an expression, whatis
prints its
literal type as it is used in the source code. If the type was
defined using a typedef
, whatis
will not print
the data type underlying the typedef
. If the type of the
variable or the expression is a compound data type, such as
struct
or class
, whatis
never prints their
fields or methods. It just prints the struct
/class
name (a.k.a. its tag). If you want to see the members of
such a compound data type, use ptype
.
If arg is a type name that was defined using typedef
,
whatis
unrolls only one level of that typedef
.
Unrolling means that whatis
will show the underlying type used
in the typedef
declaration of arg. However, if that
underlying type is also a typedef
, whatis
will not
unroll it.
For C code, the type names may also have the form `class class-name', `struct struct-tag', `union union-tag' or `enum enum-tag'.
ptype [
arg]
ptype
accepts the same arguments as whatis
, but prints a
detailed description of the type, instead of just the name of the type.
See Expressions.
Contrary to whatis
, ptype
always unrolls any
typedef
s in its argument declaration, whether the argument is
a variable, expression, or a data type. This means that ptype
of a variable or an expression will not print literally its type as
present in the source code—use whatis
for that. typedef
s at
the pointer or reference targets are also unrolled. Only typedef
s of
fields, methods and inner class typedef
s of struct
s,
class
es and union
s are not unrolled even with ptype
.
For example, for this variable declaration:
typedef double real_t; struct complex { real_t real; double imag; }; typedef struct complex complex_t; complex_t var; real_t *real_pointer_var;
the two commands give this output:
(gdb) whatis var type = complex_t (gdb) ptype var type = struct complex { real_t real; double imag; } (gdb) whatis complex_t type = struct complex (gdb) whatis struct complex type = struct complex (gdb) ptype struct complex type = struct complex { real_t real; double imag; } (gdb) whatis real_pointer_var type = real_t * (gdb) ptype real_pointer_var type = double *
As with whatis
, using ptype
without an argument refers to
the type of $
, the last value in the value history.
Sometimes, programs use opaque data types or incomplete specifications of complex data structure. If the debug information included in the program does not allow gdb to display a full declaration of the data type, it will say `<incomplete type>'. For example, given these declarations:
struct foo; struct foo *fooptr;
but no definition for struct foo
itself, gdb will say:
(gdb) ptype foo $1 = <incomplete type>
“Incomplete type” is C terminology for data types that are not completely specified.
info types
regexpinfo types
value
, but
`i type ^value$' gives information only on types whose complete
name is value
.
This command differs from ptype
in two ways: first, like
whatis
, it does not print a detailed description; second, it
lists all source files where a type is defined.
info scope
location(gdb) info scope command_line_handler Scope for command_line_handler: Symbol rl is an argument at stack/frame offset 8, length 4. Symbol linebuffer is in static storage at address 0x150a18, length 4. Symbol linelength is in static storage at address 0x150a1c, length 4. Symbol p is a local variable in register $esi, length 4. Symbol p1 is a local variable in register $ebx, length 4. Symbol nline is a local variable in register $edx, length 4. Symbol repeat is a local variable at frame offset -8, length 4.
This command is especially useful for determining what data to collect during a trace experiment, see collect.
info source
info sources
info functions
info functions
regexpstep
; `info fun ^step' finds those whose names
start with step
. If a function name contains characters
that conflict with the regular expression language (e.g.
`operator*()'), they may be quoted with a backslash.
info variables
info variables
regexpinfo classes
info classes
regexpinfo selectors
info selectors
regexpset opaque-type-resolution on
struct
, class
, or
union
—for example, struct MyType *
—that is used in one
source file although the full declaration of struct MyType
is in
another source file. The default is on.
A change in the setting of this subcommand will not take effect until
the next time symbols for a file are loaded.
set opaque-type-resolution off
{<no data fields>}
show opaque-type-resolution
maint print symbols
filenamemaint print psymbols
filenamemaint print msymbols
filenameinfo sources
to find out which files these are. If you
use `maint print psymbols' instead, the dump shows information about
symbols that gdb only knows partially—that is, symbols defined in
files that gdb has skimmed, but not yet read completely. Finally,
`maint print msymbols' dumps just the minimal symbol information
required for each object file from which gdb has read some symbols.
See Commands to Specify Files, for a discussion of how
gdb reads symbols (in the description of symbol-file
).
maint info symtabs
[ regexp ]maint info psymtabs
[ regexp ]struct symtab
or struct partial_symtab
structures whose names match regexp. If regexp is not
given, list them all. The output includes expressions which you can
copy into a gdb debugging this one to examine a particular
structure in more detail. For example:
(gdb) maint info psymtabs dwarf2read { objfile /home/gnu/build/gdb/gdb ((struct objfile *) 0x82e69d0) { psymtab /home/gnu/src/gdb/dwarf2read.c ((struct partial_symtab *) 0x8474b10) readin no fullname (null) text addresses 0x814d3c8 -- 0x8158074 globals (* (struct partial_symbol **) 0x8507a08 @ 9) statics (* (struct partial_symbol **) 0x40e95b78 @ 2882) dependencies (none) } } (gdb) maint info symtabs (gdb)
We see that there is one partial symbol table whose filename contains the string `dwarf2read', belonging to the `gdb' executable; and we see that gdb has not read in any symtabs yet at all. If we set a breakpoint on a function, that will cause gdb to read the symtab for the compilation unit containing that function:
(gdb) break dwarf2_psymtab_to_symtab Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c, line 1574. (gdb) maint info symtabs { objfile /home/gnu/build/gdb/gdb ((struct objfile *) 0x82e69d0) { symtab /home/gnu/src/gdb/dwarf2read.c ((struct symtab *) 0x86c1f38) dirname (null) fullname (null) blockvector ((struct blockvector *) 0x86c1bd0) (primary) linetable ((struct linetable *) 0x8370fa0) debugformat DWARF 2 } } (gdb)