Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / doc / gdb.texinfo
blob686799829193308bf6bc87672d4bd80d1dffeafb
1 \input texinfo      @c -*-texinfo-*-
2 @c Copyright (C) 1988--2022 Free Software Foundation, Inc.
3 @c
4 @c %**start of header
5 @c makeinfo ignores cmds prev to setfilename, so its arg cannot make use
6 @c of @set vars.  However, you can override filename with makeinfo -o.
7 @setfilename gdb.info
8 @c
9 @c man begin INCLUDE
10 @include gdb-cfg.texi
11 @c man end
13 @settitle Debugging with @value{GDBN}
14 @setchapternewpage odd
15 @c %**end of header
17 @iftex
18 @c @smallbook
19 @c @cropmarks
20 @end iftex
22 @finalout
23 @c To avoid file-name clashes between index.html and Index.html, when
24 @c the manual is produced on a Posix host and then moved to a
25 @c case-insensitive filesystem (e.g., MS-Windows), we separate the
26 @c indices into two: Concept Index and all the rest.
27 @syncodeindex ky fn
28 @syncodeindex tp fn
30 @c readline appendices use @vindex, @findex and @ftable,
31 @c annotate.texi and gdbmi use @findex.
32 @syncodeindex vr fn
34 @c !!set GDB manual's edition---not the same as GDB version!
35 @c This is updated by GNU Press.
36 @set EDITION Tenth
38 @c !!set GDB edit command default editor
39 @set EDITOR /bin/ex
41 @c THIS MANUAL REQUIRES TEXINFO 4.0 OR LATER.
43 @c This is a dir.info fragment to support semi-automated addition of
44 @c manuals to an info tree.
45 @dircategory Software development
46 @direntry
47 * Gdb: (gdb).                     The GNU debugger.
48 * gdbserver: (gdb) Server.        The GNU debugging server.
49 @end direntry
51 @copying
52 @c man begin COPYRIGHT
53 Copyright @copyright{} 1988-2022 Free Software Foundation, Inc.
55 Permission is granted to copy, distribute and/or modify this document
56 under the terms of the GNU Free Documentation License, Version 1.3 or
57 any later version published by the Free Software Foundation; with the
58 Invariant Sections being ``Free Software'' and ``Free Software Needs
59 Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
60 and with the Back-Cover Texts as in (a) below.
62 (a) The FSF's Back-Cover Text is: ``You are free to copy and modify
63 this GNU Manual.  Buying copies from GNU Press supports the FSF in
64 developing GNU and promoting software freedom.''
65 @c man end
66 @end copying
68 @ifnottex
69 This file documents the @sc{gnu} debugger @value{GDBN}.
71 This is the @value{EDITION} Edition, of @cite{Debugging with
72 @value{GDBN}: the @sc{gnu} Source-Level Debugger} for @value{GDBN}
73 @ifset VERSION_PACKAGE
74 @value{VERSION_PACKAGE}
75 @end ifset
76 Version @value{GDBVN}.
78 @insertcopying
79 @end ifnottex
81 @titlepage
82 @title Debugging with @value{GDBN}
83 @subtitle The @sc{gnu} Source-Level Debugger
84 @sp 1
85 @subtitle @value{EDITION} Edition, for @value{GDBN} version @value{GDBVN}
86 @ifset VERSION_PACKAGE
87 @sp 1
88 @subtitle @value{VERSION_PACKAGE}
89 @end ifset
90 @author Richard Stallman, Roland Pesch, Stan Shebs, et al.
91 @page
92 @tex
93 {\parskip=0pt
94 \hfill (Send bugs and comments on @value{GDBN} to @value{BUGURL}.)\par
95 \hfill {\it Debugging with @value{GDBN}}\par
96 \hfill \TeX{}info \texinfoversion\par
98 @end tex
100 @vskip 0pt plus 1filll
101 Published by the Free Software Foundation @*
102 51 Franklin Street, Fifth Floor,
103 Boston, MA 02110-1301, USA@*
104 ISBN 978-0-9831592-3-0 @*
106 @insertcopying
107 @end titlepage
108 @page
110 @ifnottex
111 @node Top, Summary
113 @top Debugging with @value{GDBN}
115 This file describes @value{GDBN}, the @sc{gnu} symbolic debugger.
117 This is the @value{EDITION} Edition, for @value{GDBN}
118 @ifset VERSION_PACKAGE
119 @value{VERSION_PACKAGE}
120 @end ifset
121 Version @value{GDBVN}.
123 Copyright (C) 1988-2022 Free Software Foundation, Inc.
125 This edition of the GDB manual is dedicated to the memory of Fred
126 Fish.  Fred was a long-standing contributor to GDB and to Free
127 software in general.  We will miss him.
129 @menu
130 * Summary::                     Summary of @value{GDBN}
131 * Sample Session::              A sample @value{GDBN} session
133 * Invocation::                  Getting in and out of @value{GDBN}
134 * Commands::                    @value{GDBN} commands
135 * Running::                     Running programs under @value{GDBN}
136 * Stopping::                    Stopping and continuing
137 * Reverse Execution::           Running programs backward
138 * Process Record and Replay::   Recording inferior's execution and replaying it
139 * Stack::                       Examining the stack
140 * Source::                      Examining source files
141 * Data::                        Examining data
142 * Optimized Code::              Debugging optimized code
143 * Macros::                      Preprocessor Macros
144 * Tracepoints::                 Debugging remote targets non-intrusively
145 * Overlays::                    Debugging programs that use overlays
147 * Languages::                   Using @value{GDBN} with different languages
149 * Symbols::                     Examining the symbol table
150 * Altering::                    Altering execution
151 * GDB Files::                   @value{GDBN} files
152 * Targets::                     Specifying a debugging target
153 * Remote Debugging::            Debugging remote programs
154 * Configurations::              Configuration-specific information
155 * Controlling GDB::             Controlling @value{GDBN}
156 * Extending GDB::               Extending @value{GDBN}
157 * Interpreters::                Command Interpreters
158 * TUI::                         @value{GDBN} Text User Interface
159 * Emacs::                       Using @value{GDBN} under @sc{gnu} Emacs
160 * GDB/MI::                      @value{GDBN}'s Machine Interface.
161 * Annotations::                 @value{GDBN}'s annotation interface.
162 * JIT Interface::               Using the JIT debugging interface.
163 * In-Process Agent::            In-Process Agent
165 * GDB Bugs::                    Reporting bugs in @value{GDBN}
167 @ifset SYSTEM_READLINE
168 * Command Line Editing: (rluserman).         Command Line Editing
169 * Using History Interactively: (history).    Using History Interactively
170 @end ifset
171 @ifclear SYSTEM_READLINE
172 * Command Line Editing::        Command Line Editing
173 * Using History Interactively:: Using History Interactively
174 @end ifclear
175 * In Memoriam::                 In Memoriam
176 * Formatting Documentation::    How to format and print @value{GDBN} documentation
177 * Installing GDB::              Installing GDB
178 * Maintenance Commands::        Maintenance Commands
179 * Remote Protocol::             GDB Remote Serial Protocol
180 * Agent Expressions::           The GDB Agent Expression Mechanism
181 * Target Descriptions::         How targets can describe themselves to
182                                 @value{GDBN}
183 * Operating System Information:: Getting additional information from
184                                  the operating system
185 * Trace File Format::           GDB trace file format
186 * Index Section Format::        .gdb_index section format
187 * Debuginfod::                  Download debugging resources with @code{debuginfod}
188 * Man Pages::                   Manual pages
189 * Copying::                     GNU General Public License says
190                                 how you can copy and share GDB
191 * GNU Free Documentation License::  The license for this documentation
192 * Concept Index::               Index of @value{GDBN} concepts
193 * Command and Variable Index::  Index of @value{GDBN} commands, variables,
194                                   functions, and Python data types
195 @end menu
197 @end ifnottex
199 @contents
201 @node Summary
202 @unnumbered Summary of @value{GDBN}
204 The purpose of a debugger such as @value{GDBN} is to allow you to see what is
205 going on ``inside'' another program while it executes---or what another
206 program was doing at the moment it crashed.
208 @value{GDBN} can do four main kinds of things (plus other things in support of
209 these) to help you catch bugs in the act:
211 @itemize @bullet
212 @item
213 Start your program, specifying anything that might affect its behavior.
215 @item
216 Make your program stop on specified conditions.
218 @item
219 Examine what has happened, when your program has stopped.
221 @item
222 Change things in your program, so you can experiment with correcting the
223 effects of one bug and go on to learn about another.
224 @end itemize
226 You can use @value{GDBN} to debug programs written in C and C@t{++}.
227 For more information, see @ref{Supported Languages,,Supported Languages}.
228 For more information, see @ref{C,,C and C++}.
230 Support for D is partial.  For information on D, see
231 @ref{D,,D}.
233 @cindex Modula-2
234 Support for Modula-2 is partial.  For information on Modula-2, see
235 @ref{Modula-2,,Modula-2}.
237 Support for OpenCL C is partial.  For information on OpenCL C, see
238 @ref{OpenCL C,,OpenCL C}.
240 @cindex Pascal
241 Debugging Pascal programs which use sets, subranges, file variables, or
242 nested functions does not currently work.  @value{GDBN} does not support
243 entering expressions, printing values, or similar features using Pascal
244 syntax.
246 @cindex Fortran
247 @value{GDBN} can be used to debug programs written in Fortran, although
248 it may be necessary to refer to some variables with a trailing
249 underscore.
251 @value{GDBN} can be used to debug programs written in Objective-C,
252 using either the Apple/NeXT or the GNU Objective-C runtime.
254 @menu
255 * Free Software::               Freely redistributable software
256 * Free Documentation::          Free Software Needs Free Documentation
257 * Contributors::                Contributors to GDB
258 @end menu
260 @node Free Software
261 @unnumberedsec Free Software
263 @value{GDBN} is @dfn{free software}, protected by the @sc{gnu}
264 General Public License
265 (GPL).  The GPL gives you the freedom to copy or adapt a licensed
266 program---but every person getting a copy also gets with it the
267 freedom to modify that copy (which means that they must get access to
268 the source code), and the freedom to distribute further copies.
269 Typical software companies use copyrights to limit your freedoms; the
270 Free Software Foundation uses the GPL to preserve these freedoms.
272 Fundamentally, the General Public License is a license which says that
273 you have these freedoms and that you cannot take these freedoms away
274 from anyone else.
276 @node Free Documentation
277 @unnumberedsec Free Software Needs Free Documentation
279 The biggest deficiency in the free software community today is not in
280 the software---it is the lack of good free documentation that we can
281 include with the free software.  Many of our most important
282 programs do not come with free reference manuals and free introductory
283 texts.  Documentation is an essential part of any software package;
284 when an important free software package does not come with a free
285 manual and a free tutorial, that is a major gap.  We have many such
286 gaps today.
288 Consider Perl, for instance.  The tutorial manuals that people
289 normally use are non-free.  How did this come about?  Because the
290 authors of those manuals published them with restrictive terms---no
291 copying, no modification, source files not available---which exclude
292 them from the free software world.
294 That wasn't the first time this sort of thing happened, and it was far
295 from the last.  Many times we have heard a GNU user eagerly describe a
296 manual that he is writing, his intended contribution to the community,
297 only to learn that he had ruined everything by signing a publication
298 contract to make it non-free.
300 Free documentation, like free software, is a matter of freedom, not
301 price.  The problem with the non-free manual is not that publishers
302 charge a price for printed copies---that in itself is fine.  (The Free
303 Software Foundation sells printed copies of manuals, too.)  The
304 problem is the restrictions on the use of the manual.  Free manuals
305 are available in source code form, and give you permission to copy and
306 modify.  Non-free manuals do not allow this.
308 The criteria of freedom for a free manual are roughly the same as for
309 free software.  Redistribution (including the normal kinds of
310 commercial redistribution) must be permitted, so that the manual can
311 accompany every copy of the program, both on-line and on paper.
313 Permission for modification of the technical content is crucial too.
314 When people modify the software, adding or changing features, if they
315 are conscientious they will change the manual too---so they can
316 provide accurate and clear documentation for the modified program.  A
317 manual that leaves you no choice but to write a new manual to document
318 a changed version of the program is not really available to our
319 community.
321 Some kinds of limits on the way modification is handled are
322 acceptable.  For example, requirements to preserve the original
323 author's copyright notice, the distribution terms, or the list of
324 authors, are ok.  It is also no problem to require modified versions
325 to include notice that they were modified.  Even entire sections that
326 may not be deleted or changed are acceptable, as long as they deal
327 with nontechnical topics (like this one).  These kinds of restrictions
328 are acceptable because they don't obstruct the community's normal use
329 of the manual.
331 However, it must be possible to modify all the @emph{technical}
332 content of the manual, and then distribute the result in all the usual
333 media, through all the usual channels.  Otherwise, the restrictions
334 obstruct the use of the manual, it is not free, and we need another
335 manual to replace it.
337 Please spread the word about this issue.  Our community continues to
338 lose manuals to proprietary publishing.  If we spread the word that
339 free software needs free reference manuals and free tutorials, perhaps
340 the next person who wants to contribute by writing documentation will
341 realize, before it is too late, that only free manuals contribute to
342 the free software community.
344 If you are writing documentation, please insist on publishing it under
345 the GNU Free Documentation License or another free documentation
346 license.  Remember that this decision requires your approval---you
347 don't have to let the publisher decide.  Some commercial publishers
348 will use a free license if you insist, but they will not propose the
349 option; it is up to you to raise the issue and say firmly that this is
350 what you want.  If the publisher you are dealing with refuses, please
351 try other publishers.  If you're not sure whether a proposed license
352 is free, write to @email{licensing@@gnu.org}.
354 You can encourage commercial publishers to sell more free, copylefted
355 manuals and tutorials by buying them, and particularly by buying
356 copies from the publishers that paid for their writing or for major
357 improvements.  Meanwhile, try to avoid buying non-free documentation
358 at all.  Check the distribution terms of a manual before you buy it,
359 and insist that whoever seeks your business must respect your freedom.
360 Check the history of the book, and try to reward the publishers that
361 have paid or pay the authors to work on it.
363 The Free Software Foundation maintains a list of free documentation
364 published by other publishers, at
365 @url{http://www.fsf.org/doc/other-free-books.html}.
367 @node Contributors
368 @unnumberedsec Contributors to @value{GDBN}
370 Richard Stallman was the original author of @value{GDBN}, and of many
371 other @sc{gnu} programs.  Many others have contributed to its
372 development.  This section attempts to credit major contributors.  One
373 of the virtues of free software is that everyone is free to contribute
374 to it; with regret, we cannot actually acknowledge everyone here.  The
375 file @file{ChangeLog} in the @value{GDBN} distribution approximates a
376 blow-by-blow account.
378 Changes much prior to version 2.0 are lost in the mists of time.
380 @quotation
381 @emph{Plea:} Additions to this section are particularly welcome.  If you
382 or your friends (or enemies, to be evenhanded) have been unfairly
383 omitted from this list, we would like to add your names!
384 @end quotation
386 So that they may not regard their many labors as thankless, we
387 particularly thank those who shepherded @value{GDBN} through major
388 releases:
389 Andrew Cagney (releases 6.3, 6.2, 6.1, 6.0, 5.3, 5.2, 5.1 and 5.0);
390 Jim Blandy (release 4.18);
391 Jason Molenda (release 4.17);
392 Stan Shebs (release 4.14);
393 Fred Fish (releases 4.16, 4.15, 4.13, 4.12, 4.11, 4.10, and 4.9);
394 Stu Grossman and John Gilmore (releases 4.8, 4.7, 4.6, 4.5, and 4.4);
395 John Gilmore (releases 4.3, 4.2, 4.1, 4.0, and 3.9);
396 Jim Kingdon (releases 3.5, 3.4, and 3.3);
397 and Randy Smith (releases 3.2, 3.1, and 3.0).
399 Richard Stallman, assisted at various times by Peter TerMaat, Chris
400 Hanson, and Richard Mlynarik, handled releases through 2.8.
402 Michael Tiemann is the author of most of the @sc{gnu} C@t{++} support
403 in @value{GDBN}, with significant additional contributions from Per
404 Bothner and Daniel Berlin.  James Clark wrote the @sc{gnu} C@t{++}
405 demangler.  Early work on C@t{++} was by Peter TerMaat (who also did
406 much general update work leading to release 3.0).
408 @value{GDBN} uses the BFD subroutine library to examine multiple
409 object-file formats; BFD was a joint project of David V.
410 Henkel-Wallace, Rich Pixley, Steve Chamberlain, and John Gilmore.
412 David Johnson wrote the original COFF support; Pace Willison did
413 the original support for encapsulated COFF.
415 Brent Benson of Harris Computer Systems contributed DWARF 2 support.
417 Adam de Boor and Bradley Davis contributed the ISI Optimum V support.
418 Per Bothner, Noboyuki Hikichi, and Alessandro Forin contributed MIPS
419 support.
420 Jean-Daniel Fekete contributed Sun 386i support.
421 Chris Hanson improved the HP9000 support.
422 Noboyuki Hikichi and Tomoyuki Hasei contributed Sony/News OS 3 support.
423 David Johnson contributed Encore Umax support.
424 Jyrki Kuoppala contributed Altos 3068 support.
425 Jeff Law contributed HP PA and SOM support.
426 Keith Packard contributed NS32K support.
427 Doug Rabson contributed Acorn Risc Machine support.
428 Bob Rusk contributed Harris Nighthawk CX-UX support.
429 Chris Smith contributed Convex support (and Fortran debugging).
430 Jonathan Stone contributed Pyramid support.
431 Michael Tiemann contributed SPARC support.
432 Tim Tucker contributed support for the Gould NP1 and Gould Powernode.
433 Pace Willison contributed Intel 386 support.
434 Jay Vosburgh contributed Symmetry support.
435 Marko Mlinar contributed OpenRISC 1000 support.
437 Andreas Schwab contributed M68K @sc{gnu}/Linux support.
439 Rich Schaefer and Peter Schauer helped with support of SunOS shared
440 libraries.
442 Jay Fenlason and Roland McGrath ensured that @value{GDBN} and GAS agree
443 about several machine instruction sets.
445 Patrick Duval, Ted Goldstein, Vikram Koka and Glenn Engel helped develop
446 remote debugging.  Intel Corporation, Wind River Systems, AMD, and ARM
447 contributed remote debugging modules for the i960, VxWorks, A29K UDI,
448 and RDI targets, respectively.
450 Brian Fox is the author of the readline libraries providing
451 command-line editing and command history.
453 Andrew Beers of SUNY Buffalo wrote the language-switching code, the
454 Modula-2 support, and contributed the Languages chapter of this manual.
456 Fred Fish wrote most of the support for Unix System Vr4.
457 He also enhanced the command-completion support to cover C@t{++} overloaded
458 symbols.
460 Hitachi America (now Renesas America), Ltd. sponsored the support for
461 H8/300, H8/500, and Super-H processors.
463 NEC sponsored the support for the v850, Vr4xxx, and Vr5xxx processors.
465 Mitsubishi (now Renesas) sponsored the support for D10V, D30V, and M32R/D
466 processors.
468 Toshiba sponsored the support for the TX39 Mips processor.
470 Matsushita sponsored the support for the MN10200 and MN10300 processors.
472 Fujitsu sponsored the support for SPARClite and FR30 processors.
474 Kung Hsu, Jeff Law, and Rick Sladkey added support for hardware
475 watchpoints.
477 Michael Snyder added support for tracepoints.
479 Stu Grossman wrote gdbserver.
481 Jim Kingdon, Peter Schauer, Ian Taylor, and Stu Grossman made
482 nearly innumerable bug fixes and cleanups throughout @value{GDBN}.
484 The following people at the Hewlett-Packard Company contributed
485 support for the PA-RISC 2.0 architecture, HP-UX 10.20, 10.30, and 11.0
486 (narrow mode), HP's implementation of kernel threads, HP's aC@t{++}
487 compiler, and the Text User Interface (nee Terminal User Interface):
488 Ben Krepp, Richard Title, John Bishop, Susan Macchia, Kathy Mann,
489 Satish Pai, India Paul, Steve Rehrauer, and Elena Zannoni.  Kim Haase
490 provided HP-specific information in this manual.
492 DJ Delorie ported @value{GDBN} to MS-DOS, for the DJGPP project.
493 Robert Hoehne made significant contributions to the DJGPP port.
495 Cygnus Solutions has sponsored @value{GDBN} maintenance and much of its
496 development since 1991.  Cygnus engineers who have worked on @value{GDBN}
497 fulltime include Mark Alexander, Jim Blandy, Per Bothner, Kevin
498 Buettner, Edith Epstein, Chris Faylor, Fred Fish, Martin Hunt, Jim
499 Ingham, John Gilmore, Stu Grossman, Kung Hsu, Jim Kingdon, John Metzler,
500 Fernando Nasser, Geoffrey Noer, Dawn Perchik, Rich Pixley, Zdenek
501 Radouch, Keith Seitz, Stan Shebs, David Taylor, and Elena Zannoni.  In
502 addition, Dave Brolley, Ian Carmichael, Steve Chamberlain, Nick Clifton,
503 JT Conklin, Stan Cox, DJ Delorie, Ulrich Drepper, Frank Eigler, Doug
504 Evans, Sean Fagan, David Henkel-Wallace, Richard Henderson, Jeff
505 Holcomb, Jeff Law, Jim Lemke, Tom Lord, Bob Manson, Michael Meissner,
506 Jason Merrill, Catherine Moore, Drew Moseley, Ken Raeburn, Gavin
507 Romig-Koch, Rob Savoye, Jamie Smith, Mike Stump, Ian Taylor, Angela
508 Thomas, Michael Tiemann, Tom Tromey, Ron Unrau, Jim Wilson, and David
509 Zuhn have made contributions both large and small.
511 Andrew Cagney, Fernando Nasser, and Elena Zannoni, while working for
512 Cygnus Solutions, implemented the original @sc{gdb/mi} interface.
514 Jim Blandy added support for preprocessor macros, while working for Red
515 Hat.
517 Andrew Cagney designed @value{GDBN}'s architecture vector.  Many
518 people including Andrew Cagney, Stephane Carrez, Randolph Chung, Nick
519 Duffek, Richard Henderson, Mark Kettenis, Grace Sainsbury, Kei
520 Sakamoto, Yoshinori Sato, Michael Snyder, Andreas Schwab, Jason
521 Thorpe, Corinna Vinschen, Ulrich Weigand, and Elena Zannoni, helped
522 with the migration of old architectures to this new framework.
524 Andrew Cagney completely re-designed and re-implemented @value{GDBN}'s
525 unwinder framework, this consisting of a fresh new design featuring
526 frame IDs, independent frame sniffers, and the sentinel frame.  Mark
527 Kettenis implemented the @sc{dwarf 2} unwinder, Jeff Johnston the
528 libunwind unwinder, and Andrew Cagney the dummy, sentinel, tramp, and
529 trad unwinders.  The architecture-specific changes, each involving a
530 complete rewrite of the architecture's frame code, were carried out by
531 Jim Blandy, Joel Brobecker, Kevin Buettner, Andrew Cagney, Stephane
532 Carrez, Randolph Chung, Orjan Friberg, Richard Henderson, Daniel
533 Jacobowitz, Jeff Johnston, Mark Kettenis, Theodore A. Roth, Kei
534 Sakamoto, Yoshinori Sato, Michael Snyder, Corinna Vinschen, and Ulrich
535 Weigand.
537 Christian Zankel, Ross Morley, Bob Wilson, and Maxim Grigoriev from
538 Tensilica, Inc.@: contributed support for Xtensa processors.  Others
539 who have worked on the Xtensa port of @value{GDBN} in the past include
540 Steve Tjiang, John Newlin, and Scott Foehner.
542 Michael Eager and staff of Xilinx, Inc., contributed support for the
543 Xilinx MicroBlaze architecture.
545 Initial support for the FreeBSD/mips target and native configuration
546 was developed by SRI International and the University of Cambridge
547 Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237
548 ("CTSRD"), as part of the DARPA CRASH research programme.
550 Initial support for the FreeBSD/riscv target and native configuration
551 was developed by SRI International and the University of Cambridge
552 Computer Laboratory (Department of Computer Science and Technology)
553 under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the DARPA
554 SSITH research programme.
556 The original port to the OpenRISC 1000 is believed to be due to
557 Alessandro Forin and Per Bothner.  More recent ports have been the work
558 of Jeremy Bennett, Franck Jullien, Stefan Wallentowitz and
559 Stafford Horne.
561 Weimin Pan, David Faust and Jose E. Marchesi contributed support for
562 the Linux kernel BPF virtual architecture.  This work was sponsored by
563 Oracle.
565 @node Sample Session
566 @chapter A Sample @value{GDBN} Session
568 You can use this manual at your leisure to read all about @value{GDBN}.
569 However, a handful of commands are enough to get started using the
570 debugger.  This chapter illustrates those commands.
572 @iftex
573 In this sample session, we emphasize user input like this: @b{input},
574 to make it easier to pick out from the surrounding output.
575 @end iftex
577 @c FIXME: this example may not be appropriate for some configs, where
578 @c FIXME...primary interest is in remote use.
580 One of the preliminary versions of @sc{gnu} @code{m4} (a generic macro
581 processor) exhibits the following bug: sometimes, when we change its
582 quote strings from the default, the commands used to capture one macro
583 definition within another stop working.  In the following short @code{m4}
584 session, we define a macro @code{foo} which expands to @code{0000}; we
585 then use the @code{m4} built-in @code{defn} to define @code{bar} as the
586 same thing.  However, when we change the open quote string to
587 @code{<QUOTE>} and the close quote string to @code{<UNQUOTE>}, the same
588 procedure fails to define a new synonym @code{baz}:
590 @smallexample
591 $ @b{cd gnu/m4}
592 $ @b{./m4}
593 @b{define(foo,0000)}
595 @b{foo}
596 0000
597 @b{define(bar,defn(`foo'))}
599 @b{bar}
600 0000
601 @b{changequote(<QUOTE>,<UNQUOTE>)}
603 @b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
604 @b{baz}
605 @b{Ctrl-d}
606 m4: End of input: 0: fatal error: EOF in string
607 @end smallexample
609 @noindent
610 Let us use @value{GDBN} to try to see what is going on.
612 @smallexample
613 $ @b{@value{GDBP} m4}
614 @c FIXME: this falsifies the exact text played out, to permit smallbook
615 @c FIXME... format to come out better.
616 @value{GDBN} is free software and you are welcome to distribute copies
617  of it under certain conditions; type "show copying" to see
618  the conditions.
619 There is absolutely no warranty for @value{GDBN}; type "show warranty"
620  for details.
622 @value{GDBN} @value{GDBVN}, Copyright 1999 Free Software Foundation, Inc...
623 (@value{GDBP})
624 @end smallexample
626 @noindent
627 @value{GDBN} reads only enough symbol data to know where to find the
628 rest when needed; as a result, the first prompt comes up very quickly.
629 We now tell @value{GDBN} to use a narrower display width than usual, so
630 that examples fit in this manual.
632 @smallexample
633 (@value{GDBP}) @b{set width 70}
634 @end smallexample
636 @noindent
637 We need to see how the @code{m4} built-in @code{changequote} works.
638 Having looked at the source, we know the relevant subroutine is
639 @code{m4_changequote}, so we set a breakpoint there with the @value{GDBN}
640 @code{break} command.
642 @smallexample
643 (@value{GDBP}) @b{break m4_changequote}
644 Breakpoint 1 at 0x62f4: file builtin.c, line 879.
645 @end smallexample
647 @noindent
648 Using the @code{run} command, we start @code{m4} running under @value{GDBN}
649 control; as long as control does not reach the @code{m4_changequote}
650 subroutine, the program runs as usual:
652 @smallexample
653 (@value{GDBP}) @b{run}
654 Starting program: /work/Editorial/gdb/gnu/m4/m4
655 @b{define(foo,0000)}
657 @b{foo}
658 0000
659 @end smallexample
661 @noindent
662 To trigger the breakpoint, we call @code{changequote}.  @value{GDBN}
663 suspends execution of @code{m4}, displaying information about the
664 context where it stops.
666 @smallexample
667 @b{changequote(<QUOTE>,<UNQUOTE>)}
669 Breakpoint 1, m4_changequote (argc=3, argv=0x33c70)
670     at builtin.c:879
671 879         if (bad_argc(TOKEN_DATA_TEXT(argv[0]),argc,1,3))
672 @end smallexample
674 @noindent
675 Now we use the command @code{n} (@code{next}) to advance execution to
676 the next line of the current function.
678 @smallexample
679 (@value{GDBP}) @b{n}
680 882         set_quotes((argc >= 2) ? TOKEN_DATA_TEXT(argv[1])\
681  : nil,
682 @end smallexample
684 @noindent
685 @code{set_quotes} looks like a promising subroutine.  We can go into it
686 by using the command @code{s} (@code{step}) instead of @code{next}.
687 @code{step} goes to the next line to be executed in @emph{any}
688 subroutine, so it steps into @code{set_quotes}.
690 @smallexample
691 (@value{GDBP}) @b{s}
692 set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
693     at input.c:530
694 530         if (lquote != def_lquote)
695 @end smallexample
697 @noindent
698 The display that shows the subroutine where @code{m4} is now
699 suspended (and its arguments) is called a stack frame display.  It
700 shows a summary of the stack.  We can use the @code{backtrace}
701 command (which can also be spelled @code{bt}), to see where we are
702 in the stack as a whole: the @code{backtrace} command displays a
703 stack frame for each active subroutine.
705 @smallexample
706 (@value{GDBP}) @b{bt}
707 #0  set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
708     at input.c:530
709 #1  0x6344 in m4_changequote (argc=3, argv=0x33c70)
710     at builtin.c:882
711 #2  0x8174 in expand_macro (sym=0x33320) at macro.c:242
712 #3  0x7a88 in expand_token (obs=0x0, t=209696, td=0xf7fffa30)
713     at macro.c:71
714 #4  0x79dc in expand_input () at macro.c:40
715 #5  0x2930 in main (argc=0, argv=0xf7fffb20) at m4.c:195
716 @end smallexample
718 @noindent
719 We step through a few more lines to see what happens.  The first two
720 times, we can use @samp{s}; the next two times we use @code{n} to avoid
721 falling into the @code{xstrdup} subroutine.
723 @smallexample
724 (@value{GDBP}) @b{s}
725 0x3b5c  532         if (rquote != def_rquote)
726 (@value{GDBP}) @b{s}
727 0x3b80  535         lquote = (lq == nil || *lq == '\0') ?  \
728 def_lquote : xstrdup(lq);
729 (@value{GDBP}) @b{n}
730 536         rquote = (rq == nil || *rq == '\0') ? def_rquote\
731  : xstrdup(rq);
732 (@value{GDBP}) @b{n}
733 538         len_lquote = strlen(rquote);
734 @end smallexample
736 @noindent
737 The last line displayed looks a little odd; we can examine the variables
738 @code{lquote} and @code{rquote} to see if they are in fact the new left
739 and right quotes we specified.  We use the command @code{p}
740 (@code{print}) to see their values.
742 @smallexample
743 (@value{GDBP}) @b{p lquote}
744 $1 = 0x35d40 "<QUOTE>"
745 (@value{GDBP}) @b{p rquote}
746 $2 = 0x35d50 "<UNQUOTE>"
747 @end smallexample
749 @noindent
750 @code{lquote} and @code{rquote} are indeed the new left and right quotes.
751 To look at some context, we can display ten lines of source
752 surrounding the current line with the @code{l} (@code{list}) command.
754 @smallexample
755 (@value{GDBP}) @b{l}
756 533             xfree(rquote);
758 535         lquote = (lq == nil || *lq == '\0') ? def_lquote\
759  : xstrdup (lq);
760 536         rquote = (rq == nil || *rq == '\0') ? def_rquote\
761  : xstrdup (rq);
763 538         len_lquote = strlen(rquote);
764 539         len_rquote = strlen(lquote);
765 540     @}
767 542     void
768 @end smallexample
770 @noindent
771 Let us step past the two lines that set @code{len_lquote} and
772 @code{len_rquote}, and then examine the values of those variables.
774 @smallexample
775 (@value{GDBP}) @b{n}
776 539         len_rquote = strlen(lquote);
777 (@value{GDBP}) @b{n}
778 540     @}
779 (@value{GDBP}) @b{p len_lquote}
780 $3 = 9
781 (@value{GDBP}) @b{p len_rquote}
782 $4 = 7
783 @end smallexample
785 @noindent
786 That certainly looks wrong, assuming @code{len_lquote} and
787 @code{len_rquote} are meant to be the lengths of @code{lquote} and
788 @code{rquote} respectively.  We can set them to better values using
789 the @code{p} command, since it can print the value of
790 any expression---and that expression can include subroutine calls and
791 assignments.
793 @smallexample
794 (@value{GDBP}) @b{p len_lquote=strlen(lquote)}
795 $5 = 7
796 (@value{GDBP}) @b{p len_rquote=strlen(rquote)}
797 $6 = 9
798 @end smallexample
800 @noindent
801 Is that enough to fix the problem of using the new quotes with the
802 @code{m4} built-in @code{defn}?  We can allow @code{m4} to continue
803 executing with the @code{c} (@code{continue}) command, and then try the
804 example that caused trouble initially:
806 @smallexample
807 (@value{GDBP}) @b{c}
808 Continuing.
810 @b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
813 0000
814 @end smallexample
816 @noindent
817 Success!  The new quotes now work just as well as the default ones.  The
818 problem seems to have been just the two typos defining the wrong
819 lengths.  We allow @code{m4} exit by giving it an EOF as input:
821 @smallexample
822 @b{Ctrl-d}
823 Program exited normally.
824 @end smallexample
826 @noindent
827 The message @samp{Program exited normally.} is from @value{GDBN}; it
828 indicates @code{m4} has finished executing.  We can end our @value{GDBN}
829 session with the @value{GDBN} @code{quit} command.
831 @smallexample
832 (@value{GDBP}) @b{quit}
833 @end smallexample
835 @node Invocation
836 @chapter Getting In and Out of @value{GDBN}
838 This chapter discusses how to start @value{GDBN}, and how to get out of it.
839 The essentials are:
840 @itemize @bullet
841 @item
842 type @samp{@value{GDBP}} to start @value{GDBN}.
843 @item
844 type @kbd{quit}, @kbd{exit} or @kbd{Ctrl-d} to exit.
845 @end itemize
847 @menu
848 * Invoking GDB::                How to start @value{GDBN}
849 * Quitting GDB::                How to quit @value{GDBN}
850 * Shell Commands::              How to use shell commands inside @value{GDBN}
851 * Logging Output::              How to log @value{GDBN}'s output to a file
852 @end menu
854 @node Invoking GDB
855 @section Invoking @value{GDBN}
857 Invoke @value{GDBN} by running the program @code{@value{GDBP}}.  Once started,
858 @value{GDBN} reads commands from the terminal until you tell it to exit.
860 You can also run @code{@value{GDBP}} with a variety of arguments and options,
861 to specify more of your debugging environment at the outset.
863 The command-line options described here are designed
864 to cover a variety of situations; in some environments, some of these
865 options may effectively be unavailable.
867 The most usual way to start @value{GDBN} is with one argument,
868 specifying an executable program:
870 @smallexample
871 @value{GDBP} @var{program}
872 @end smallexample
874 @noindent
875 You can also start with both an executable program and a core file
876 specified:
878 @smallexample
879 @value{GDBP} @var{program} @var{core}
880 @end smallexample
882 You can, instead, specify a process ID as a second argument or use option
883 @code{-p}, if you want to debug a running process:
885 @smallexample
886 @value{GDBP} @var{program} 1234
887 @value{GDBP} -p 1234
888 @end smallexample
890 @noindent
891 would attach @value{GDBN} to process @code{1234}.  With option @option{-p} you
892 can omit the @var{program} filename.
894 Taking advantage of the second command-line argument requires a fairly
895 complete operating system; when you use @value{GDBN} as a remote
896 debugger attached to a bare board, there may not be any notion of
897 ``process'', and there is often no way to get a core dump.  @value{GDBN}
898 will warn you if it is unable to attach or to read core dumps.
900 You can optionally have @code{@value{GDBP}} pass any arguments after the
901 executable file to the inferior using @code{--args}.  This option stops
902 option processing.
903 @smallexample
904 @value{GDBP} --args gcc -O2 -c foo.c
905 @end smallexample
906 This will cause @code{@value{GDBP}} to debug @code{gcc}, and to set
907 @code{gcc}'s command-line arguments (@pxref{Arguments}) to @samp{-O2 -c foo.c}.
909 You can run @code{@value{GDBP}} without printing the front material, which describes
910 @value{GDBN}'s non-warranty, by specifying @code{--silent}
911 (or @code{-q}/@code{--quiet}):
913 @smallexample
914 @value{GDBP} --silent
915 @end smallexample
917 @noindent
918 You can further control how @value{GDBN} starts up by using command-line
919 options.  @value{GDBN} itself can remind you of the options available.
921 @noindent
922 Type
924 @smallexample
925 @value{GDBP} -help
926 @end smallexample
928 @noindent
929 to display all available options and briefly describe their use
930 (@samp{@value{GDBP} -h} is a shorter equivalent).
932 All options and command line arguments you give are processed
933 in sequential order.  The order makes a difference when the
934 @samp{-x} option is used.
937 @menu
938 * File Options::                Choosing files
939 * Mode Options::                Choosing modes
940 * Startup::                     What @value{GDBN} does during startup
941 * Initialization Files::        Initialization Files
942 @end menu
944 @node File Options
945 @subsection Choosing Files
947 When @value{GDBN} starts, it reads any arguments other than options as
948 specifying an executable file and core file (or process ID).  This is
949 the same as if the arguments were specified by the @samp{-se} and
950 @samp{-c} (or @samp{-p}) options respectively.  (@value{GDBN} reads the
951 first argument that does not have an associated option flag as
952 equivalent to the @samp{-se} option followed by that argument; and the
953 second argument that does not have an associated option flag, if any, as
954 equivalent to the @samp{-c}/@samp{-p} option followed by that argument.)
955 If the second argument begins with a decimal digit, @value{GDBN} will
956 first attempt to attach to it as a process, and if that fails, attempt
957 to open it as a corefile.  If you have a corefile whose name begins with
958 a digit, you can prevent @value{GDBN} from treating it as a pid by
959 prefixing it with @file{./}, e.g.@: @file{./12345}.
961 If @value{GDBN} has not been configured to included core file support,
962 such as for most embedded targets, then it will complain about a second
963 argument and ignore it.
965 Many options have both long and short forms; both are shown in the
966 following list.  @value{GDBN} also recognizes the long forms if you truncate
967 them, so long as enough of the option is present to be unambiguous.
968 (If you prefer, you can flag option arguments with @samp{--} rather
969 than @samp{-}, though we illustrate the more usual convention.)
971 @c NOTE: the @cindex entries here use double dashes ON PURPOSE.  This
972 @c way, both those who look for -foo and --foo in the index, will find
973 @c it.
975 @table @code
976 @item -symbols @var{file}
977 @itemx -s @var{file}
978 @cindex @code{--symbols}
979 @cindex @code{-s}
980 Read symbol table from file @var{file}.
982 @item -exec @var{file}
983 @itemx -e @var{file}
984 @cindex @code{--exec}
985 @cindex @code{-e}
986 Use file @var{file} as the executable file to execute when appropriate,
987 and for examining pure data in conjunction with a core dump.
989 @item -se @var{file}
990 @cindex @code{--se}
991 Read symbol table from file @var{file} and use it as the executable
992 file.
994 @item -core @var{file}
995 @itemx -c @var{file}
996 @cindex @code{--core}
997 @cindex @code{-c}
998 Use file @var{file} as a core dump to examine.
1000 @item -pid @var{number}
1001 @itemx -p @var{number}
1002 @cindex @code{--pid}
1003 @cindex @code{-p}
1004 Connect to process ID @var{number}, as with the @code{attach} command.
1006 @item -command @var{file}
1007 @itemx -x @var{file}
1008 @cindex @code{--command}
1009 @cindex @code{-x}
1010 Execute commands from file @var{file}.  The contents of this file is
1011 evaluated exactly as the @code{source} command would.
1012 @xref{Command Files,, Command files}.
1014 @item -eval-command @var{command}
1015 @itemx -ex @var{command}
1016 @cindex @code{--eval-command}
1017 @cindex @code{-ex}
1018 Execute a single @value{GDBN} command.
1020 This option may be used multiple times to call multiple commands.  It may
1021 also be interleaved with @samp{-command} as required.
1023 @smallexample
1024 @value{GDBP} -ex 'target sim' -ex 'load' \
1025    -x setbreakpoints -ex 'run' a.out
1026 @end smallexample
1028 @item -init-command @var{file}
1029 @itemx -ix @var{file}
1030 @cindex @code{--init-command}
1031 @cindex @code{-ix}
1032 Execute commands from file @var{file} before loading the inferior (but
1033 after loading gdbinit files).
1034 @xref{Startup}.
1036 @item -init-eval-command @var{command}
1037 @itemx -iex @var{command}
1038 @cindex @code{--init-eval-command}
1039 @cindex @code{-iex}
1040 Execute a single @value{GDBN} command before loading the inferior (but
1041 after loading gdbinit files).
1042 @xref{Startup}.
1044 @item -early-init-command @var{file}
1045 @itemx -eix @var{file}
1046 @cindex @code{--early-init-command}
1047 @cindex @code{-eix}
1048 Execute commands from @var{file} very early in the initialization
1049 process, before any output is produced.  @xref{Startup}.
1051 @item -early-init-eval-command @var{command}
1052 @itemx -eiex @var{command}
1053 @cindex @code{--early-init-eval-command}
1054 @cindex @code{-eiex}
1055 Execute a single @value{GDBN} command very early in the initialization
1056 process, before any output is produced.
1058 @item -directory @var{directory}
1059 @itemx -d @var{directory}
1060 @cindex @code{--directory}
1061 @cindex @code{-d}
1062 Add @var{directory} to the path to search for source and script files.
1064 @item -r
1065 @itemx -readnow
1066 @cindex @code{--readnow}
1067 @cindex @code{-r}
1068 Read each symbol file's entire symbol table immediately, rather than
1069 the default, which is to read it incrementally as it is needed.
1070 This makes startup slower, but makes future operations faster.
1072 @item --readnever
1073 @anchor{--readnever}
1074 @cindex @code{--readnever}, command-line option
1075 Do not read each symbol file's symbolic debug information.  This makes
1076 startup faster but at the expense of not being able to perform
1077 symbolic debugging.  DWARF unwind information is also not read,
1078 meaning backtraces may become incomplete or inaccurate.  One use of
1079 this is when a user simply wants to do the following sequence: attach,
1080 dump core, detach.  Loading the debugging information in this case is
1081 an unnecessary cause of delay.
1082 @end table
1084 @node Mode Options
1085 @subsection Choosing Modes
1087 You can run @value{GDBN} in various alternative modes---for example, in
1088 batch mode or quiet mode.
1090 @table @code
1091 @anchor{-nx}
1092 @item -nx
1093 @itemx -n
1094 @cindex @code{--nx}
1095 @cindex @code{-n}
1096 Do not execute commands found in any initialization files
1097 (@pxref{Initialization Files}).
1099 @anchor{-nh}
1100 @item -nh
1101 @cindex @code{--nh}
1102 Do not execute commands found in any home directory initialization
1103 file (@pxref{Initialization Files,,Home directory initialization
1104 file}).  The system wide and current directory initialization files
1105 are still loaded.
1107 @item -quiet
1108 @itemx -silent
1109 @itemx -q
1110 @cindex @code{--quiet}
1111 @cindex @code{--silent}
1112 @cindex @code{-q}
1113 ``Quiet''.  Do not print the introductory and copyright messages.  These
1114 messages are also suppressed in batch mode.
1116 @kindex set startup-quietly
1117 @kindex show startup-quietly
1118 This can also be enabled using @code{set startup-quietly on}.  The
1119 default is @code{off}.  Use @code{show startup-quietly} to see the
1120 current setting.  Place @code{set startup-quietly on} into your early
1121 initialization file (@pxref{Initialization Files,,Initialization
1122 Files}) to have future @value{GDBN} sessions startup quietly.
1124 @item -batch
1125 @cindex @code{--batch}
1126 Run in batch mode.  Exit with status @code{0} after processing all the
1127 command files specified with @samp{-x} (and all commands from
1128 initialization files, if not inhibited with @samp{-n}).  Exit with
1129 nonzero status if an error occurs in executing the @value{GDBN} commands
1130 in the command files.  Batch mode also disables pagination, sets unlimited
1131 terminal width and height @pxref{Screen Size}, and acts as if @kbd{set confirm
1132 off} were in effect (@pxref{Messages/Warnings}).
1134 Batch mode may be useful for running @value{GDBN} as a filter, for
1135 example to download and run a program on another computer; in order to
1136 make this more useful, the message
1138 @smallexample
1139 Program exited normally.
1140 @end smallexample
1142 @noindent
1143 (which is ordinarily issued whenever a program running under
1144 @value{GDBN} control terminates) is not issued when running in batch
1145 mode.
1147 @item -batch-silent
1148 @cindex @code{--batch-silent}
1149 Run in batch mode exactly like @samp{-batch}, but totally silently.  All
1150 @value{GDBN} output to @code{stdout} is prevented (@code{stderr} is
1151 unaffected).  This is much quieter than @samp{-silent} and would be useless
1152 for an interactive session.
1154 This is particularly useful when using targets that give @samp{Loading section}
1155 messages, for example.
1157 Note that targets that give their output via @value{GDBN}, as opposed to
1158 writing directly to @code{stdout}, will also be made silent.
1160 @item -return-child-result
1161 @cindex @code{--return-child-result}
1162 The return code from @value{GDBN} will be the return code from the child
1163 process (the process being debugged), with the following exceptions:
1165 @itemize @bullet
1166 @item
1167 @value{GDBN} exits abnormally.  E.g., due to an incorrect argument or an
1168 internal error.  In this case the exit code is the same as it would have been
1169 without @samp{-return-child-result}.
1170 @item
1171 The user quits with an explicit value.  E.g., @samp{quit 1}.
1172 @item
1173 The child process never runs, or is not allowed to terminate, in which case
1174 the exit code will be -1.
1175 @end itemize
1177 This option is useful in conjunction with @samp{-batch} or @samp{-batch-silent},
1178 when @value{GDBN} is being used as a remote program loader or simulator
1179 interface.
1181 @item -nowindows
1182 @itemx -nw
1183 @cindex @code{--nowindows}
1184 @cindex @code{-nw}
1185 ``No windows''.  If @value{GDBN} comes with a graphical user interface
1186 (GUI) built in, then this option tells @value{GDBN} to only use the command-line
1187 interface.  If no GUI is available, this option has no effect.
1189 @item -windows
1190 @itemx -w
1191 @cindex @code{--windows}
1192 @cindex @code{-w}
1193 If @value{GDBN} includes a GUI, then this option requires it to be
1194 used if possible.
1196 @item -cd @var{directory}
1197 @cindex @code{--cd}
1198 Run @value{GDBN} using @var{directory} as its working directory,
1199 instead of the current directory.
1201 @item -data-directory @var{directory}
1202 @itemx -D @var{directory}
1203 @cindex @code{--data-directory}
1204 @cindex @code{-D}
1205 Run @value{GDBN} using @var{directory} as its data directory.
1206 The data directory is where @value{GDBN} searches for its
1207 auxiliary files.  @xref{Data Files}.
1209 @item -fullname
1210 @itemx -f
1211 @cindex @code{--fullname}
1212 @cindex @code{-f}
1213 @sc{gnu} Emacs sets this option when it runs @value{GDBN} as a
1214 subprocess.  It tells @value{GDBN} to output the full file name and line
1215 number in a standard, recognizable fashion each time a stack frame is
1216 displayed (which includes each time your program stops).  This
1217 recognizable format looks like two @samp{\032} characters, followed by
1218 the file name, line number and character position separated by colons,
1219 and a newline.  The Emacs-to-@value{GDBN} interface program uses the two
1220 @samp{\032} characters as a signal to display the source code for the
1221 frame.
1223 @item -annotate @var{level}
1224 @cindex @code{--annotate}
1225 This option sets the @dfn{annotation level} inside @value{GDBN}.  Its
1226 effect is identical to using @samp{set annotate @var{level}}
1227 (@pxref{Annotations}).  The annotation @var{level} controls how much
1228 information @value{GDBN} prints together with its prompt, values of
1229 expressions, source lines, and other types of output.  Level 0 is the
1230 normal, level 1 is for use when @value{GDBN} is run as a subprocess of
1231 @sc{gnu} Emacs, level 3 is the maximum annotation suitable for programs
1232 that control @value{GDBN}, and level 2 has been deprecated.
1234 The annotation mechanism has largely been superseded by @sc{gdb/mi}
1235 (@pxref{GDB/MI}).
1237 @item --args
1238 @cindex @code{--args}
1239 Change interpretation of command line so that arguments following the
1240 executable file are passed as command line arguments to the inferior.
1241 This option stops option processing.
1243 @item -baud @var{bps}
1244 @itemx -b @var{bps}
1245 @cindex @code{--baud}
1246 @cindex @code{-b}
1247 Set the line speed (baud rate or bits per second) of any serial
1248 interface used by @value{GDBN} for remote debugging.
1250 @item -l @var{timeout}
1251 @cindex @code{-l}
1252 Set the timeout (in seconds) of any communication used by @value{GDBN}
1253 for remote debugging.
1255 @item -tty @var{device}
1256 @itemx -t @var{device}
1257 @cindex @code{--tty}
1258 @cindex @code{-t}
1259 Run using @var{device} for your program's standard input and output.
1260 @c FIXME: kingdon thinks there is more to -tty.  Investigate.
1262 @c resolve the situation of these eventually
1263 @item -tui
1264 @cindex @code{--tui}
1265 Activate the @dfn{Text User Interface} when starting.  The Text User
1266 Interface manages several text windows on the terminal, showing
1267 source, assembly, registers and @value{GDBN} command outputs
1268 (@pxref{TUI, ,@value{GDBN} Text User Interface}).  Do not use this
1269 option if you run @value{GDBN} from Emacs (@pxref{Emacs, ,
1270 Using @value{GDBN} under @sc{gnu} Emacs}).
1272 @item -interpreter @var{interp}
1273 @cindex @code{--interpreter}
1274 Use the interpreter @var{interp} for interface with the controlling
1275 program or device.  This option is meant to be set by programs which
1276 communicate with @value{GDBN} using it as a back end.
1277 @xref{Interpreters, , Command Interpreters}.
1279 @samp{--interpreter=mi} (or @samp{--interpreter=mi3}) causes
1280 @value{GDBN} to use the @dfn{@sc{gdb/mi} interface} version 3 (@pxref{GDB/MI, ,
1281 The @sc{gdb/mi} Interface}) included since @value{GDBN} version 9.1.  @sc{gdb/mi}
1282 version 2 (@code{mi2}), included in @value{GDBN} 6.0 and version 1 (@code{mi1}),
1283 included in @value{GDBN} 5.3, are also available.  Earlier @sc{gdb/mi}
1284 interfaces are no longer supported.
1286 @item -write
1287 @cindex @code{--write}
1288 Open the executable and core files for both reading and writing.  This
1289 is equivalent to the @samp{set write on} command inside @value{GDBN}
1290 (@pxref{Patching}).
1292 @item -statistics
1293 @cindex @code{--statistics}
1294 This option causes @value{GDBN} to print statistics about time and
1295 memory usage after it completes each command and returns to the prompt.
1297 @item -version
1298 @cindex @code{--version}
1299 This option causes @value{GDBN} to print its version number and
1300 no-warranty blurb, and exit.
1302 @item -configuration
1303 @cindex @code{--configuration}
1304 This option causes @value{GDBN} to print details about its build-time
1305 configuration parameters, and then exit.  These details can be
1306 important when reporting @value{GDBN} bugs (@pxref{GDB Bugs}).
1308 @end table
1310 @node Startup
1311 @subsection What @value{GDBN} Does During Startup
1312 @cindex @value{GDBN} startup
1314 Here's the description of what @value{GDBN} does during session startup:
1316 @enumerate
1318 @item
1319 Performs minimal setup required to initialize basic internal state.
1321 @item
1322 @cindex early initialization file
1323 Reads commands from the early initialization file (if any) in your
1324 home directory.  Only a restricted set of commands can be placed into
1325 an early initialization file, see @ref{Initialization Files}, for
1326 details.
1328 @item
1329 Executes commands and command files specified by the @samp{-eiex} and
1330 @samp{-eix} command line options in their specified order.  Only a
1331 restricted set of commands can be used with @samp{-eiex} and
1332 @samp{eix}, see @ref{Initialization Files}, for details.
1334 @item
1335 Sets up the command interpreter as specified by the command line
1336 (@pxref{Mode Options, interpreter}).
1338 @item
1339 @cindex init file
1340 Reads the system wide initialization file and the files from the
1341 system wide initialization directory, @pxref{System Wide Init Files}.
1343 @item
1344 Reads the initialization file (if any) in your home directory and
1345 executes all the commands in that file, @pxref{Home Directory Init
1346 File}.
1348 @anchor{Option -init-eval-command}
1349 @item
1350 Executes commands and command files specified by the @samp{-iex} and
1351 @samp{-ix} options in their specified order.  Usually you should use the
1352 @samp{-ex} and @samp{-x} options instead, but this way you can apply
1353 settings before @value{GDBN} init files get executed and before inferior
1354 gets loaded.
1356 @item
1357 Processes command line options and operands.
1359 @item
1360 Reads and executes the commands from the initialization file (if any)
1361 in the current working directory as long as @samp{set auto-load
1362 local-gdbinit} is set to @samp{on} (@pxref{Init File in the Current
1363 Directory}).  This is only done if the current directory is different
1364 from your home directory.  Thus, you can have more than one init file,
1365 one generic in your home directory, and another, specific to the
1366 program you are debugging, in the directory where you invoke
1367 @value{GDBN}. @xref{Init File in the Current Directory during
1368 Startup}.
1370 @item
1371 If the command line specified a program to debug, or a process to
1372 attach to, or a core file, @value{GDBN} loads any auto-loaded
1373 scripts provided for the program or for its loaded shared libraries.
1374 @xref{Auto-loading}.
1376 If you wish to disable the auto-loading during startup,
1377 you must do something like the following:
1379 @smallexample
1380 $ gdb -iex "set auto-load python-scripts off" myprogram
1381 @end smallexample
1383 Option @samp{-ex} does not work because the auto-loading is then turned
1384 off too late.
1386 @item
1387 Executes commands and command files specified by the @samp{-ex} and
1388 @samp{-x} options in their specified order.  @xref{Command Files}, for
1389 more details about @value{GDBN} command files.
1391 @item
1392 Reads the command history recorded in the @dfn{history file}.
1393 @xref{Command History}, for more details about the command history and the
1394 files where @value{GDBN} records it.
1395 @end enumerate
1397 @node Initialization Files
1398 @subsection Initialization Files
1399 @cindex init file name
1401 During startup (@pxref{Startup}) @value{GDBN} will execute commands
1402 from several initialization files.  These initialization files use the
1403 same syntax as @dfn{command files} (@pxref{Command Files}) and are
1404 processed by @value{GDBN} in the same way.
1406 To display the list of initialization files loaded by @value{GDBN} at
1407 startup, in the order they will be loaded, you can use @kbd{gdb
1408 --help}.
1410 @cindex early initialization
1411 The @dfn{early initialization} file is loaded very early in
1412 @value{GDBN}'s initialization process, before the interpreter
1413 (@pxref{Interpreters}) has been initialized, and before the default
1414 target (@pxref{Targets}) is initialized.  Only @code{set} or
1415 @code{source} commands should be placed into an early initialization
1416 file, and the only @code{set} commands that can be used are those that
1417 control how @value{GDBN} starts up.
1419 Commands that can be placed into an early initialization file will be
1420 documented as such throughout this manual.  Any command that is not
1421 documented as being suitable for an early initialization file should
1422 instead be placed into a general initialization file.  Command files
1423 passed to @code{--early-init-command} or @code{-eix} are also early
1424 initialization files, with the same command restrictions.  Only
1425 commands that can appear in an early initialization file should be
1426 passed to @code{--early-init-eval-command} or @code{-eiex}.
1428 @cindex general initialization
1429 In contrast, the @dfn{general initialization} files are processed
1430 later, after @value{GDBN} has finished its own internal initialization
1431 process, any valid command can be used in these files.
1433 @cindex initialization file
1434 Throughout the rest of this document the term @dfn{initialization
1435 file} refers to one of the general initialization files, not the early
1436 initialization file.  Any discussion of the early initialization file
1437 will specifically mention that it is the early initialization file
1438 being discussed.
1440 As the system wide and home directory initialization files are
1441 processed before most command line options, changes to settings
1442 (e.g.@: @samp{set complaints}) can affect subsequent processing of
1443 command line options and operands.
1445 The following sections describe where @value{GDBN} looks for the early
1446 initialization and initialization files, and the order that the files
1447 are searched for.
1449 @subsubsection Home directory early initialization files
1451 @value{GDBN} initially looks for an early initialization file in the
1452 users home directory@footnote{On DOS/Windows systems, the home
1453 directory is the one pointed to by the @env{HOME} environment
1454 variable.}.  There are a number of locations that @value{GDBN} will
1455 search in the home directory, these locations are searched in order
1456 and @value{GDBN} will load the first file that it finds, and
1457 subsequent locations will not be checked.
1459 On non-macOS hosts the locations searched are:
1460 @itemize
1461 @item
1462 The file @file{gdb/gdbearlyinit} within the directory pointed to by the
1463 environment variable @env{XDG_CONFIG_HOME}, if it is defined.
1464 @item
1465 The file @file{.config/gdb/gdbearlyinit} within the directory pointed to
1466 by the environment variable @env{HOME}, if it is defined.
1467 @item
1468 The file @file{.gdbearlyinit} within the directory pointed to by the
1469 environment variable @env{HOME}, if it is defined.
1470 @end itemize
1472 By contrast, on macOS hosts the locations searched are:
1473 @itemize
1474 @item
1475 The file @file{Library/Preferences/gdb/gdbearlyinit} within the
1476 directory pointed to by the environment variable @env{HOME}, if it is
1477 defined.
1478 @item
1479 The file @file{.gdbearlyinit} within the directory pointed to by the
1480 environment variable @env{HOME}, if it is defined.
1481 @end itemize
1483 It is possible to prevent the home directory early initialization file
1484 from being loaded using the @samp{-nx} or @samp{-nh} command line
1485 options, @pxref{Mode Options,,Choosing Modes}.
1487 @anchor{System Wide Init Files}
1488 @subsubsection System wide initialization files
1490 There are two locations that are searched for system wide
1491 initialization files.  Both of these locations are always checked:
1493 @table @code
1495 @item @file{system.gdbinit}
1496 This is a single system-wide initialization file.  Its location is
1497 specified with the @code{--with-system-gdbinit} configure option
1498 (@pxref{System-wide configuration}).  It is loaded first when
1499 @value{GDBN} starts, before command line options have been processed.
1501 @item @file{system.gdbinit.d}
1502 This is the system-wide initialization directory.  Its location is
1503 specified with the @code{--with-system-gdbinit-dir} configure option
1504 (@pxref{System-wide configuration}).  Files in this directory are
1505 loaded in alphabetical order immediately after @file{system.gdbinit}
1506 (if enabled) when @value{GDBN} starts, before command line options
1507 have been processed.  Files need to have a recognized scripting
1508 language extension (@file{.py}/@file{.scm}) or be named with a
1509 @file{.gdb} extension to be interpreted as regular @value{GDBN}
1510 commands.  @value{GDBN} will not recurse into any subdirectories of
1511 this directory.
1513 @end table
1515 It is possible to prevent the system wide initialization files from
1516 being loaded using the @samp{-nx} command line option, @pxref{Mode
1517 Options,,Choosing Modes}.
1519 @anchor{Home Directory Init File}
1520 @subsubsection Home directory initialization file
1521 @cindex @file{gdbinit}
1522 @cindex @file{.gdbinit}
1523 @cindex @file{gdb.ini}
1525 After loading the system wide initialization files @value{GDBN} will
1526 look for an initialization file in the users home
1527 directory@footnote{On DOS/Windows systems, the home directory is the
1528 one pointed to by the @env{HOME} environment variable.}.  There are a
1529 number of locations that @value{GDBN} will search in the home
1530 directory, these locations are searched in order and @value{GDBN} will
1531 load the first file that it finds, and subsequent locations will not
1532 be checked.
1534 On non-Apple hosts the locations searched are:
1535 @table @file
1536 @item $XDG_CONFIG_HOME/gdb/gdbinit
1537 @item $HOME/.config/gdb/gdbinit
1538 @item $HOME/.gdbinit
1539 @end table
1541 While on Apple hosts the locations searched are:
1542 @table @file
1543 @item $HOME/Library/Preferences/gdb/gdbinit
1544 @item $HOME/.gdbinit
1545 @end table
1547 It is possible to prevent the home directory initialization file from
1548 being loaded using the @samp{-nx} or @samp{-nh} command line options,
1549 @pxref{Mode Options,,Choosing Modes}.
1551 The DJGPP port of @value{GDBN} uses the name @file{gdb.ini} instead of
1552 @file{.gdbinit} or @file{gdbinit}, due to the limitations of file
1553 names imposed by DOS filesystems.  The Windows port of @value{GDBN}
1554 uses the standard name, but if it finds a @file{gdb.ini} file in your
1555 home directory, it warns you about that and suggests to rename the
1556 file to the standard name.
1558 @anchor{Init File in the Current Directory during Startup}
1559 @subsubsection Local directory initialization file
1561 @value{GDBN} will check the current directory for a file called
1562 @file{.gdbinit}.  It is loaded last, after command line options
1563 other than @samp{-x} and @samp{-ex} have been processed.  The command
1564 line options @samp{-x} and @samp{-ex} are processed last, after
1565 @file{.gdbinit} has been loaded, @pxref{File Options,,Choosing
1566 Files}.
1568 If the file in the current directory was already loaded as the home
1569 directory initialization file then it will not be loaded a second
1570 time.
1572 It is possible to prevent the local directory initialization file from
1573 being loaded using the @samp{-nx} command line option, @pxref{Mode
1574 Options,,Choosing Modes}.
1576 @node Quitting GDB
1577 @section Quitting @value{GDBN}
1578 @cindex exiting @value{GDBN}
1579 @cindex leaving @value{GDBN}
1581 @table @code
1582 @kindex quit @r{[}@var{expression}@r{]}
1583 @kindex exit @r{[}@var{expression}@r{]}
1584 @kindex q @r{(@code{quit})}
1585 @item quit @r{[}@var{expression}@r{]}
1586 @itemx exit @r{[}@var{expression}@r{]}
1587 @itemx q
1588 To exit @value{GDBN}, use the @code{quit} command (abbreviated
1589 @code{q}), the @code{exit} command, or type an end-of-file
1590 character (usually @kbd{Ctrl-d}).  If you do not supply @var{expression},
1591 @value{GDBN} will terminate normally; otherwise it will terminate using
1592 the result of @var{expression} as the error code.
1593 @end table
1595 @cindex interrupt
1596 An interrupt (often @kbd{Ctrl-c}) does not exit from @value{GDBN}, but rather
1597 terminates the action of any @value{GDBN} command that is in progress and
1598 returns to @value{GDBN} command level.  It is safe to type the interrupt
1599 character at any time because @value{GDBN} does not allow it to take effect
1600 until a time when it is safe.
1602 If you have been using @value{GDBN} to control an attached process or
1603 device, you can release it with the @code{detach} command
1604 (@pxref{Attach, ,Debugging an Already-running Process}).
1606 @node Shell Commands
1607 @section Shell Commands
1609 If you need to execute occasional shell commands during your
1610 debugging session, there is no need to leave or suspend @value{GDBN}; you can
1611 just use the @code{shell} command.
1613 @table @code
1614 @kindex shell
1615 @kindex !
1616 @cindex shell escape
1617 @item shell @var{command-string}
1618 @itemx !@var{command-string}
1619 Invoke a standard shell to execute @var{command-string}.
1620 Note that no space is needed between @code{!} and @var{command-string}.
1621 On GNU and Unix systems, the environment variable @env{SHELL}, if it
1622 exists, determines which shell to run.  Otherwise @value{GDBN} uses
1623 the default shell (@file{/bin/sh} on GNU and Unix systems,
1624 @file{cmd.exe} on MS-Windows, @file{COMMAND.COM} on MS-DOS, etc.).
1625 @end table
1627 The utility @code{make} is often needed in development environments.
1628 You do not have to use the @code{shell} command for this purpose in
1629 @value{GDBN}:
1631 @table @code
1632 @kindex make
1633 @cindex calling make
1634 @item make @var{make-args}
1635 Execute the @code{make} program with the specified
1636 arguments.  This is equivalent to @samp{shell make @var{make-args}}.
1637 @end table
1639 @table @code
1640 @kindex pipe
1641 @kindex |
1642 @cindex send the output of a gdb command to a shell command
1643 @anchor{pipe}
1644 @item pipe [@var{command}] | @var{shell_command}
1645 @itemx | [@var{command}] | @var{shell_command}
1646 @itemx pipe -d @var{delim} @var{command} @var{delim} @var{shell_command}
1647 @itemx | -d @var{delim} @var{command} @var{delim} @var{shell_command}
1648 Executes @var{command} and sends its output to @var{shell_command}.
1649 Note that no space is needed around @code{|}.
1650 If no @var{command} is provided, the last command executed is repeated.
1652 In case the @var{command} contains a @code{|}, the option @code{-d @var{delim}}
1653 can be used to specify an alternate delimiter string @var{delim} that separates
1654 the @var{command} from the @var{shell_command}.
1656 Example:
1657 @smallexample
1658 @group
1659 (gdb) p var
1660 $1 = @{
1661   black = 144,
1662   red = 233,
1663   green = 377,
1664   blue = 610,
1665   white = 987
1667 @end group
1668 @group
1669 (gdb) pipe p var|wc
1670       7      19      80
1671 (gdb) |p var|wc -l
1673 @end group
1674 @group
1675 (gdb) p /x var
1676 $4 = @{
1677   black = 0x90,
1678   red = 0xe9,
1679   green = 0x179,
1680   blue = 0x262,
1681   white = 0x3db
1683 (gdb) ||grep red
1684   red => 0xe9,
1685 @end group
1686 @group
1687 (gdb) | -d ! echo this contains a | char\n ! sed -e 's/|/PIPE/'
1688 this contains a PIPE char
1689 (gdb) | -d xxx echo this contains a | char!\n xxx sed -e 's/|/PIPE/'
1690 this contains a PIPE char!
1691 (gdb)
1692 @end group
1693 @end smallexample
1694 @end table
1696 The convenience variables @code{$_shell_exitcode} and @code{$_shell_exitsignal}
1697 can be used to examine the exit status of the last shell command launched
1698 by @code{shell}, @code{make}, @code{pipe} and @code{|}.
1699 @xref{Convenience Vars,, Convenience Variables}.
1701 @node Logging Output
1702 @section Logging Output
1703 @cindex logging @value{GDBN} output
1704 @cindex save @value{GDBN} output to a file
1706 You may want to save the output of @value{GDBN} commands to a file.
1707 There are several commands to control @value{GDBN}'s logging.
1709 @table @code
1710 @kindex set logging enabled
1711 @item set logging enabled [on|off]
1712 Enable or disable logging.
1713 @cindex logging file name
1714 @item set logging file @var{file}
1715 Change the name of the current logfile.  The default logfile is @file{gdb.txt}.
1716 @item set logging overwrite [on|off]
1717 By default, @value{GDBN} will append to the logfile.  Set @code{overwrite} if
1718 you want @code{set logging enabled on} to overwrite the logfile instead.
1719 @item set logging redirect [on|off]
1720 By default, @value{GDBN} output will go to both the terminal and the logfile.
1721 Set @code{redirect} if you want output to go only to the log file.
1722 @item set logging debugredirect [on|off]
1723 By default, @value{GDBN} debug output will go to both the terminal and the logfile.
1724 Set @code{debugredirect} if you want debug output to go only to the log file.
1725 @kindex show logging
1726 @item show logging
1727 Show the current values of the logging settings.
1728 @end table
1730 You can also redirect the output of a @value{GDBN} command to a
1731 shell command.  @xref{pipe}.
1732 @node Commands
1733 @chapter @value{GDBN} Commands
1735 You can abbreviate a @value{GDBN} command to the first few letters of the command
1736 name, if that abbreviation is unambiguous; and you can repeat certain
1737 @value{GDBN} commands by typing just @key{RET}.  You can also use the @key{TAB}
1738 key to get @value{GDBN} to fill out the rest of a word in a command (or to
1739 show you the alternatives available, if there is more than one possibility).
1741 @menu
1742 * Command Syntax::              How to give commands to @value{GDBN}
1743 * Command Settings::            How to change default behavior of commands
1744 * Completion::                  Command completion
1745 * Command Options::             Command options
1746 * Help::                        How to ask @value{GDBN} for help
1747 @end menu
1749 @node Command Syntax
1750 @section Command Syntax
1752 A @value{GDBN} command is a single line of input.  There is no limit on
1753 how long it can be.  It starts with a command name, which is followed by
1754 arguments whose meaning depends on the command name.  For example, the
1755 command @code{step} accepts an argument which is the number of times to
1756 step, as in @samp{step 5}.  You can also use the @code{step} command
1757 with no arguments.  Some commands do not allow any arguments.
1759 @cindex abbreviation
1760 @value{GDBN} command names may always be truncated if that abbreviation is
1761 unambiguous.  Other possible command abbreviations are listed in the
1762 documentation for individual commands.  In some cases, even ambiguous
1763 abbreviations are allowed; for example, @code{s} is specially defined as
1764 equivalent to @code{step} even though there are other commands whose
1765 names start with @code{s}.  You can test abbreviations by using them as
1766 arguments to the @code{help} command.
1768 @cindex repeating commands
1769 @kindex RET @r{(repeat last command)}
1770 A blank line as input to @value{GDBN} (typing just @key{RET}) means to
1771 repeat the previous command.  Certain commands (for example, @code{run})
1772 will not repeat this way; these are commands whose unintentional
1773 repetition might cause trouble and which you are unlikely to want to
1774 repeat.  User-defined commands can disable this feature; see
1775 @ref{Define, dont-repeat}.
1777 The @code{list} and @code{x} commands, when you repeat them with
1778 @key{RET}, construct new arguments rather than repeating
1779 exactly as typed.  This permits easy scanning of source or memory.
1781 @value{GDBN} can also use @key{RET} in another way: to partition lengthy
1782 output, in a way similar to the common utility @code{more}
1783 (@pxref{Screen Size,,Screen Size}).  Since it is easy to press one
1784 @key{RET} too many in this situation, @value{GDBN} disables command
1785 repetition after any command that generates this sort of display.
1787 @kindex # @r{(a comment)}
1788 @cindex comment
1789 Any text from a @kbd{#} to the end of the line is a comment; it does
1790 nothing.  This is useful mainly in command files (@pxref{Command
1791 Files,,Command Files}).
1793 @cindex repeating command sequences
1794 @kindex Ctrl-o @r{(operate-and-get-next)}
1795 The @kbd{Ctrl-o} binding is useful for repeating a complex sequence of
1796 commands.  This command accepts the current line, like @key{RET}, and
1797 then fetches the next line relative to the current line from the history
1798 for editing.
1801 @node Command Settings
1802 @section Command Settings
1803 @cindex default behavior of commands, changing
1804 @cindex default settings, changing
1806 Many commands change their behavior according to command-specific
1807 variables or settings.  These settings can be changed with the
1808 @code{set} subcommands.  For example, the @code{print} command
1809 (@pxref{Data, ,Examining Data}) prints arrays differently depending on
1810 settings changeable with the commands @code{set print elements
1811 NUMBER-OF-ELEMENTS} and @code{set print array-indexes}, among others.
1813 You can change these settings to your preference in the gdbinit files
1814 loaded at @value{GDBN} startup.  @xref{Startup}.
1816 The settings can also be changed interactively during the debugging
1817 session.  For example, to change the limit of array elements to print,
1818 you can do the following:
1819 @smallexample
1820 (@value{GDBN}) set print elements 10
1821 (@value{GDBN}) print some_array
1822 $1 = @{0, 10, 20, 30, 40, 50, 60, 70, 80, 90...@}
1823 @end smallexample
1825 The above @code{set print elements 10} command changes the number of
1826 elements to print from the default of 200 to 10.  If you only intend
1827 this limit of 10 to be used for printing @code{some_array}, then you
1828 must restore the limit back to 200, with @code{set print elements
1829 200}.
1831 Some commands allow overriding settings with command options.  For
1832 example, the @code{print} command supports a number of options that
1833 allow overriding relevant global print settings as set by @code{set
1834 print} subcommands.  @xref{print options}.  The example above could be
1835 rewritten as:
1836 @smallexample
1837 (@value{GDBN}) print -elements 10 -- some_array
1838 $1 = @{0, 10, 20, 30, 40, 50, 60, 70, 80, 90...@}
1839 @end smallexample
1841 Alternatively, you can use the @code{with} command to change a setting
1842 temporarily, for the duration of a command invocation.
1844 @table @code
1845 @kindex with command
1846 @kindex w @r{(@code{with})}
1847 @cindex settings
1848 @cindex temporarily change settings
1849 @item with @var{setting} [@var{value}] [-- @var{command}]
1850 @itemx w @var{setting} [@var{value}] [-- @var{command}]
1851 Temporarily set @var{setting} to @var{value} for the duration of
1852 @var{command}.
1854 @var{setting} is any setting you can change with the @code{set}
1855 subcommands.  @var{value} is the value to assign to @code{setting}
1856 while running @code{command}.
1858 If no @var{command} is provided, the last command executed is
1859 repeated.
1861 If a @var{command} is provided, it must be preceded by a double dash
1862 (@code{--}) separator.  This is required because some settings accept
1863 free-form arguments, such as expressions or filenames.
1865 For example, the command
1866 @smallexample
1867 (@value{GDBN}) with print array on -- print some_array
1868 @end smallexample
1869 @noindent
1870 is equivalent to the following 3 commands:
1871 @smallexample
1872 (@value{GDBN}) set print array on
1873 (@value{GDBN}) print some_array
1874 (@value{GDBN}) set print array off
1875 @end smallexample
1877 The @code{with} command is particularly useful when you want to
1878 override a setting while running user-defined commands, or commands
1879 defined in Python or Guile.  @xref{Extending GDB,, Extending GDB}.
1881 @smallexample
1882 (@value{GDBN}) with print pretty on -- my_complex_command
1883 @end smallexample
1885 To change several settings for the same command, you can nest
1886 @code{with} commands.  For example, @code{with language ada -- with
1887 print elements 10} temporarily changes the language to Ada and sets a
1888 limit of 10 elements to print for arrays and strings.
1890 @end table
1892 @node Completion
1893 @section Command Completion
1895 @cindex completion
1896 @cindex word completion
1897 @value{GDBN} can fill in the rest of a word in a command for you, if there is
1898 only one possibility; it can also show you what the valid possibilities
1899 are for the next word in a command, at any time.  This works for @value{GDBN}
1900 commands, @value{GDBN} subcommands, command options, and the names of symbols
1901 in your program.
1903 Press the @key{TAB} key whenever you want @value{GDBN} to fill out the rest
1904 of a word.  If there is only one possibility, @value{GDBN} fills in the
1905 word, and waits for you to finish the command (or press @key{RET} to
1906 enter it).  For example, if you type
1908 @c FIXME "@key" does not distinguish its argument sufficiently to permit
1909 @c complete accuracy in these examples; space introduced for clarity.
1910 @c If texinfo enhancements make it unnecessary, it would be nice to
1911 @c replace " @key" by "@key" in the following...
1912 @smallexample
1913 (@value{GDBP}) info bre @key{TAB}
1914 @end smallexample
1916 @noindent
1917 @value{GDBN} fills in the rest of the word @samp{breakpoints}, since that is
1918 the only @code{info} subcommand beginning with @samp{bre}:
1920 @smallexample
1921 (@value{GDBP}) info breakpoints
1922 @end smallexample
1924 @noindent
1925 You can either press @key{RET} at this point, to run the @code{info
1926 breakpoints} command, or backspace and enter something else, if
1927 @samp{breakpoints} does not look like the command you expected.  (If you
1928 were sure you wanted @code{info breakpoints} in the first place, you
1929 might as well just type @key{RET} immediately after @samp{info bre},
1930 to exploit command abbreviations rather than command completion).
1932 If there is more than one possibility for the next word when you press
1933 @key{TAB}, @value{GDBN} sounds a bell.  You can either supply more
1934 characters and try again, or just press @key{TAB} a second time;
1935 @value{GDBN} displays all the possible completions for that word.  For
1936 example, you might want to set a breakpoint on a subroutine whose name
1937 begins with @samp{make_}, but when you type @kbd{b make_@key{TAB}} @value{GDBN}
1938 just sounds the bell.  Typing @key{TAB} again displays all the
1939 function names in your program that begin with those characters, for
1940 example:
1942 @smallexample
1943 (@value{GDBP}) b make_ @key{TAB}
1944 @exdent @value{GDBN} sounds bell; press @key{TAB} again, to see:
1945 make_a_section_from_file     make_environ
1946 make_abs_section             make_function_type
1947 make_blockvector             make_pointer_type
1948 make_cleanup                 make_reference_type
1949 make_command                 make_symbol_completion_list
1950 (@value{GDBP}) b make_
1951 @end smallexample
1953 @noindent
1954 After displaying the available possibilities, @value{GDBN} copies your
1955 partial input (@samp{b make_} in the example) so you can finish the
1956 command.
1958 If you just want to see the list of alternatives in the first place, you
1959 can press @kbd{M-?} rather than pressing @key{TAB} twice.  @kbd{M-?}
1960 means @kbd{@key{META} ?}.  You can type this either by holding down a
1961 key designated as the @key{META} shift on your keyboard (if there is
1962 one) while typing @kbd{?}, or as @key{ESC} followed by @kbd{?}.
1964 If the number of possible completions is large, @value{GDBN} will
1965 print as much of the list as it has collected, as well as a message
1966 indicating that the list may be truncated.
1968 @smallexample
1969 (@value{GDBP}) b m@key{TAB}@key{TAB}
1970 main
1971 <... the rest of the possible completions ...>
1972 *** List may be truncated, max-completions reached. ***
1973 (@value{GDBP}) b m
1974 @end smallexample
1976 @noindent
1977 This behavior can be controlled with the following commands:
1979 @table @code
1980 @kindex set max-completions
1981 @item set max-completions @var{limit}
1982 @itemx set max-completions unlimited
1983 Set the maximum number of completion candidates.  @value{GDBN} will
1984 stop looking for more completions once it collects this many candidates.
1985 This is useful when completing on things like function names as collecting
1986 all the possible candidates can be time consuming.
1987 The default value is 200.  A value of zero disables tab-completion.
1988 Note that setting either no limit or a very large limit can make
1989 completion slow.
1990 @kindex show max-completions
1991 @item show max-completions
1992 Show the maximum number of candidates that @value{GDBN} will collect and show
1993 during completion.
1994 @end table
1996 @cindex quotes in commands
1997 @cindex completion of quoted strings
1998 Sometimes the string you need, while logically a ``word'', may contain
1999 parentheses or other characters that @value{GDBN} normally excludes from
2000 its notion of a word.  To permit word completion to work in this
2001 situation, you may enclose words in @code{'} (single quote marks) in
2002 @value{GDBN} commands.
2004 A likely situation where you might need this is in typing an
2005 expression that involves a C@t{++} symbol name with template
2006 parameters.  This is because when completing expressions, GDB treats
2007 the @samp{<} character as word delimiter, assuming that it's the
2008 less-than comparison operator (@pxref{C Operators, , C and C@t{++}
2009 Operators}).
2011 For example, when you want to call a C@t{++} template function
2012 interactively using the @code{print} or @code{call} commands, you may
2013 need to distinguish whether you mean the version of @code{name} that
2014 was specialized for @code{int}, @code{name<int>()}, or the version
2015 that was specialized for @code{float}, @code{name<float>()}.  To use
2016 the word-completion facilities in this situation, type a single quote
2017 @code{'} at the beginning of the function name.  This alerts
2018 @value{GDBN} that it may need to consider more information than usual
2019 when you press @key{TAB} or @kbd{M-?} to request word completion:
2021 @smallexample
2022 (@value{GDBP}) p 'func< @kbd{M-?}
2023 func<int>()    func<float>()
2024 (@value{GDBP}) p 'func<
2025 @end smallexample
2027 When setting breakpoints however (@pxref{Specify Location}), you don't
2028 usually need to type a quote before the function name, because
2029 @value{GDBN} understands that you want to set a breakpoint on a
2030 function:
2032 @smallexample
2033 (@value{GDBP}) b func< @kbd{M-?}
2034 func<int>()    func<float>()
2035 (@value{GDBP}) b func<
2036 @end smallexample
2038 This is true even in the case of typing the name of C@t{++} overloaded
2039 functions (multiple definitions of the same function, distinguished by
2040 argument type).  For example, when you want to set a breakpoint you
2041 don't need to distinguish whether you mean the version of @code{name}
2042 that takes an @code{int} parameter, @code{name(int)}, or the version
2043 that takes a @code{float} parameter, @code{name(float)}.
2045 @smallexample
2046 (@value{GDBP}) b bubble( @kbd{M-?}
2047 bubble(int)    bubble(double)
2048 (@value{GDBP}) b bubble(dou @kbd{M-?}
2049 bubble(double)
2050 @end smallexample
2052 See @ref{quoting names} for a description of other scenarios that
2053 require quoting.
2055 For more information about overloaded functions, see @ref{C Plus Plus
2056 Expressions, ,C@t{++} Expressions}.  You can use the command @code{set
2057 overload-resolution off} to disable overload resolution;
2058 see @ref{Debugging C Plus Plus, ,@value{GDBN} Features for C@t{++}}.
2060 @cindex completion of structure field names
2061 @cindex structure field name completion
2062 @cindex completion of union field names
2063 @cindex union field name completion
2064 When completing in an expression which looks up a field in a
2065 structure, @value{GDBN} also tries@footnote{The completer can be
2066 confused by certain kinds of invalid expressions.  Also, it only
2067 examines the static type of the expression, not the dynamic type.} to
2068 limit completions to the field names available in the type of the
2069 left-hand-side:
2071 @smallexample
2072 (@value{GDBP}) p gdb_stdout.@kbd{M-?}
2073 magic                to_fputs             to_rewind
2074 to_data              to_isatty            to_write
2075 to_delete            to_put               to_write_async_safe
2076 to_flush             to_read
2077 @end smallexample
2079 @noindent
2080 This is because the @code{gdb_stdout} is a variable of the type
2081 @code{struct ui_file} that is defined in @value{GDBN} sources as
2082 follows:
2084 @smallexample
2085 struct ui_file
2087    int *magic;
2088    ui_file_flush_ftype *to_flush;
2089    ui_file_write_ftype *to_write;
2090    ui_file_write_async_safe_ftype *to_write_async_safe;
2091    ui_file_fputs_ftype *to_fputs;
2092    ui_file_read_ftype *to_read;
2093    ui_file_delete_ftype *to_delete;
2094    ui_file_isatty_ftype *to_isatty;
2095    ui_file_rewind_ftype *to_rewind;
2096    ui_file_put_ftype *to_put;
2097    void *to_data;
2099 @end smallexample
2101 @node Command Options
2102 @section Command options
2104 @cindex command options
2105 Some commands accept options starting with a leading dash.  For
2106 example, @code{print -pretty}.  Similarly to command names, you can
2107 abbreviate a @value{GDBN} option to the first few letters of the
2108 option name, if that abbreviation is unambiguous, and you can also use
2109 the @key{TAB} key to get @value{GDBN} to fill out the rest of a word
2110 in an option (or to show you the alternatives available, if there is
2111 more than one possibility).
2113 @cindex command options, raw input
2114 Some commands take raw input as argument.  For example, the print
2115 command processes arbitrary expressions in any of the languages
2116 supported by @value{GDBN}.  With such commands, because raw input may
2117 start with a leading dash that would be confused with an option or any
2118 of its abbreviations, e.g.@: @code{print -p} (short for @code{print
2119 -pretty} or printing negative @code{p}?), if you specify any command
2120 option, then you must use a double-dash (@code{--}) delimiter to
2121 indicate the end of options.
2123 @cindex command options, boolean
2125 Some options are described as accepting an argument which can be
2126 either @code{on} or @code{off}.  These are known as @dfn{boolean
2127 options}.  Similarly to boolean settings commands---@code{on} and
2128 @code{off} are the typical values, but any of @code{1}, @code{yes} and
2129 @code{enable} can also be used as ``true'' value, and any of @code{0},
2130 @code{no} and @code{disable} can also be used as ``false'' value.  You
2131 can also omit a ``true'' value, as it is implied by default.
2133 For example, these are equivalent:
2135 @smallexample
2136 (@value{GDBP}) print -object on -pretty off -element unlimited -- *myptr
2137 (@value{GDBP}) p -o -p 0 -e u -- *myptr
2138 @end smallexample
2140 You can discover the set of options some command accepts by completing
2141 on @code{-} after the command name.  For example:
2143 @smallexample
2144 (@value{GDBP}) print -@key{TAB}@key{TAB}
2145 -address         -max-depth               -pretty          -symbol
2146 -array           -memory-tag-violations   -raw-values      -union
2147 -array-indexes   -null-stop               -repeats         -vtbl
2148 -elements        -object                  -static-members
2149 @end smallexample
2151 Completion will in some cases guide you with a suggestion of what kind
2152 of argument an option expects.  For example:
2154 @smallexample
2155 (@value{GDBP}) print -elements @key{TAB}@key{TAB}
2156 NUMBER     unlimited
2157 @end smallexample
2159 Here, the option expects a number (e.g., @code{100}), not literal
2160 @code{NUMBER}.  Such metasyntactical arguments are always presented in
2161 uppercase.
2163 (For more on using the @code{print} command, see @ref{Data, ,Examining
2164 Data}.)
2166 @node Help
2167 @section Getting Help
2168 @cindex online documentation
2169 @kindex help
2171 You can always ask @value{GDBN} itself for information on its commands,
2172 using the command @code{help}.
2174 @table @code
2175 @kindex h @r{(@code{help})}
2176 @item help
2177 @itemx h
2178 You can use @code{help} (abbreviated @code{h}) with no arguments to
2179 display a short list of named classes of commands:
2181 @smallexample
2182 (@value{GDBP}) help
2183 List of classes of commands:
2185 aliases -- User-defined aliases of other commands
2186 breakpoints -- Making program stop at certain points
2187 data -- Examining data
2188 files -- Specifying and examining files
2189 internals -- Maintenance commands
2190 obscure -- Obscure features
2191 running -- Running the program
2192 stack -- Examining the stack
2193 status -- Status inquiries
2194 support -- Support facilities
2195 tracepoints -- Tracing of program execution without
2196                stopping the program
2197 user-defined -- User-defined commands
2199 Type "help" followed by a class name for a list of
2200 commands in that class.
2201 Type "help" followed by command name for full
2202 documentation.
2203 Command name abbreviations are allowed if unambiguous.
2204 (@value{GDBP})
2205 @end smallexample
2206 @c the above line break eliminates huge line overfull...
2208 @item help @var{class}
2209 Using one of the general help classes as an argument, you can get a
2210 list of the individual commands in that class.  If a command has
2211 aliases, the aliases are given after the command name, separated by
2212 commas.  If an alias has default arguments, the full definition of
2213 the alias is given after the first line.
2214 For example, here is the help display for the class @code{status}:
2216 @smallexample
2217 (@value{GDBP}) help status
2218 Status inquiries.
2220 List of commands:
2222 @c Line break in "show" line falsifies real output, but needed
2223 @c to fit in smallbook page size.
2224 info, inf, i -- Generic command for showing things
2225         about the program being debugged
2226 info address, iamain  -- Describe where symbol SYM is stored.
2227   alias iamain = info address main
2228 info all-registers -- List of all registers and their contents,
2229         for selected stack frame.
2231 show, info set -- Generic command for showing things
2232         about the debugger
2234 Type "help" followed by command name for full
2235 documentation.
2236 Command name abbreviations are allowed if unambiguous.
2237 (@value{GDBP})
2238 @end smallexample
2240 @item help @var{command}
2241 With a command name as @code{help} argument, @value{GDBN} displays a
2242 short paragraph on how to use that command.  If that command has
2243 one or more aliases, @value{GDBN} will display a first line with
2244 the command name and all its aliases separated by commas.
2245 This first line will be followed by the full definition of all aliases
2246 having default arguments.
2248 @kindex apropos
2249 @item apropos [-v] @var{regexp}
2250 The @code{apropos} command searches through all of the @value{GDBN}
2251 commands, and their documentation, for the regular expression specified in
2252 @var{args}.  It prints out all matches found.  The optional flag  @samp{-v},
2253 which stands for @samp{verbose}, indicates to output the full documentation
2254 of the matching commands and highlight the parts of the documentation
2255 matching @var{regexp}.  For example:
2257 @smallexample
2258 apropos alias
2259 @end smallexample
2261 @noindent
2262 results in:
2264 @smallexample
2265 @group
2266 alias -- Define a new command that is an alias of an existing command
2267 aliases -- User-defined aliases of other commands
2268 @end group
2269 @end smallexample
2271 @noindent
2272 while
2274 @smallexample
2275 apropos -v cut.*thread apply
2276 @end smallexample
2278 @noindent
2279 results in the below output, where @samp{cut for 'thread apply}
2280 is highlighted if styling is enabled.
2282 @smallexample
2283 @group
2284 taas -- Apply a command to all threads (ignoring errors
2285 and empty output).
2286 Usage: taas COMMAND
2287 shortcut for 'thread apply all -s COMMAND'
2289 tfaas -- Apply a command to all frames of all threads
2290 (ignoring errors and empty output).
2291 Usage: tfaas COMMAND
2292 shortcut for 'thread apply all -s frame apply all -s COMMAND'
2293 @end group
2294 @end smallexample
2296 @kindex complete
2297 @item complete @var{args}
2298 The @code{complete @var{args}} command lists all the possible completions
2299 for the beginning of a command.  Use @var{args} to specify the beginning of the
2300 command you want completed.  For example:
2302 @smallexample
2303 complete i
2304 @end smallexample
2306 @noindent results in:
2308 @smallexample
2309 @group
2311 ignore
2312 info
2313 inspect
2314 @end group
2315 @end smallexample
2317 @noindent This is intended for use by @sc{gnu} Emacs.
2318 @end table
2320 In addition to @code{help}, you can use the @value{GDBN} commands @code{info}
2321 and @code{show} to inquire about the state of your program, or the state
2322 of @value{GDBN} itself.  Each command supports many topics of inquiry; this
2323 manual introduces each of them in the appropriate context.  The listings
2324 under @code{info} and under @code{show} in the Command, Variable, and
2325 Function Index point to all the sub-commands.  @xref{Command and Variable
2326 Index}.
2328 @c @group
2329 @table @code
2330 @kindex info
2331 @kindex i @r{(@code{info})}
2332 @item info
2333 This command (abbreviated @code{i}) is for describing the state of your
2334 program.  For example, you can show the arguments passed to a function
2335 with @code{info args}, list the registers currently in use with @code{info
2336 registers}, or list the breakpoints you have set with @code{info breakpoints}.
2337 You can get a complete list of the @code{info} sub-commands with
2338 @w{@code{help info}}.
2340 @kindex set
2341 @item set
2342 You can assign the result of an expression to an environment variable with
2343 @code{set}.  For example, you can set the @value{GDBN} prompt to a $-sign with
2344 @code{set prompt $}.
2346 @kindex show
2347 @item show
2348 In contrast to @code{info}, @code{show} is for describing the state of
2349 @value{GDBN} itself.
2350 You can change most of the things you can @code{show}, by using the
2351 related command @code{set}; for example, you can control what number
2352 system is used for displays with @code{set radix}, or simply inquire
2353 which is currently in use with @code{show radix}.
2355 @kindex info set
2356 To display all the settable parameters and their current
2357 values, you can use @code{show} with no arguments; you may also use
2358 @code{info set}.  Both commands produce the same display.
2359 @c FIXME: "info set" violates the rule that "info" is for state of
2360 @c FIXME...program.  Ck w/ GNU: "info set" to be called something else,
2361 @c FIXME...or change desc of rule---eg "state of prog and debugging session"?
2362 @end table
2363 @c @end group
2365 Here are several miscellaneous @code{show} subcommands, all of which are
2366 exceptional in lacking corresponding @code{set} commands:
2368 @table @code
2369 @kindex show version
2370 @cindex @value{GDBN} version number
2371 @item show version
2372 Show what version of @value{GDBN} is running.  You should include this
2373 information in @value{GDBN} bug-reports.  If multiple versions of
2374 @value{GDBN} are in use at your site, you may need to determine which
2375 version of @value{GDBN} you are running; as @value{GDBN} evolves, new
2376 commands are introduced, and old ones may wither away.  Also, many
2377 system vendors ship variant versions of @value{GDBN}, and there are
2378 variant versions of @value{GDBN} in @sc{gnu}/Linux distributions as well.
2379 The version number is the same as the one announced when you start
2380 @value{GDBN}.
2382 @kindex show copying
2383 @kindex info copying
2384 @cindex display @value{GDBN} copyright
2385 @item show copying
2386 @itemx info copying
2387 Display information about permission for copying @value{GDBN}.
2389 @kindex show warranty
2390 @kindex info warranty
2391 @item show warranty
2392 @itemx info warranty
2393 Display the @sc{gnu} ``NO WARRANTY'' statement, or a warranty,
2394 if your version of @value{GDBN} comes with one.
2396 @kindex show configuration
2397 @item show configuration
2398 Display detailed information about the way @value{GDBN} was configured
2399 when it was built.  This displays the optional arguments passed to the
2400 @file{configure} script and also configuration parameters detected
2401 automatically by @command{configure}.  When reporting a @value{GDBN}
2402 bug (@pxref{GDB Bugs}), it is important to include this information in
2403 your report.
2405 @end table
2407 @node Running
2408 @chapter Running Programs Under @value{GDBN}
2410 When you run a program under @value{GDBN}, you must first generate
2411 debugging information when you compile it.
2413 You may start @value{GDBN} with its arguments, if any, in an environment
2414 of your choice.  If you are doing native debugging, you may redirect
2415 your program's input and output, debug an already running process, or
2416 kill a child process.
2418 @menu
2419 * Compilation::                 Compiling for debugging
2420 * Starting::                    Starting your program
2421 * Arguments::                   Your program's arguments
2422 * Environment::                 Your program's environment
2424 * Working Directory::           Your program's working directory
2425 * Input/Output::                Your program's input and output
2426 * Attach::                      Debugging an already-running process
2427 * Kill Process::                Killing the child process
2428 * Inferiors Connections and Programs:: Debugging multiple inferiors
2429                                          connections and programs
2430 * Threads::                     Debugging programs with multiple threads
2431 * Forks::                       Debugging forks
2432 * Checkpoint/Restart::          Setting a @emph{bookmark} to return to later
2433 @end menu
2435 @node Compilation
2436 @section Compiling for Debugging
2438 In order to debug a program effectively, you need to generate
2439 debugging information when you compile it.  This debugging information
2440 is stored in the object file; it describes the data type of each
2441 variable or function and the correspondence between source line numbers
2442 and addresses in the executable code.
2444 To request debugging information, specify the @samp{-g} option when you run
2445 the compiler.
2447 Programs that are to be shipped to your customers are compiled with
2448 optimizations, using the @samp{-O} compiler option.  However, some
2449 compilers are unable to handle the @samp{-g} and @samp{-O} options
2450 together.  Using those compilers, you cannot generate optimized
2451 executables containing debugging information.
2453 @value{NGCC}, the @sc{gnu} C/C@t{++} compiler, supports @samp{-g} with or
2454 without @samp{-O}, making it possible to debug optimized code.  We
2455 recommend that you @emph{always} use @samp{-g} whenever you compile a
2456 program.  You may think your program is correct, but there is no sense
2457 in pushing your luck.  For more information, see @ref{Optimized Code}.
2459 Older versions of the @sc{gnu} C compiler permitted a variant option
2460 @w{@samp{-gg}} for debugging information.  @value{GDBN} no longer supports this
2461 format; if your @sc{gnu} C compiler has this option, do not use it.
2463 @value{GDBN} knows about preprocessor macros and can show you their
2464 expansion (@pxref{Macros}).  Most compilers do not include information
2465 about preprocessor macros in the debugging information if you specify
2466 the @option{-g} flag alone.  Version 3.1 and later of @value{NGCC},
2467 the @sc{gnu} C compiler, provides macro information if you are using
2468 the DWARF debugging format, and specify the option @option{-g3}.
2470 @xref{Debugging Options,,Options for Debugging Your Program or GCC,
2471 gcc, Using the @sc{gnu} Compiler Collection (GCC)}, for more
2472 information on @value{NGCC} options affecting debug information.
2474 You will have the best debugging experience if you use the latest
2475 version of the DWARF debugging format that your compiler supports.
2476 DWARF is currently the most expressive and best supported debugging
2477 format in @value{GDBN}.
2479 @need 2000
2480 @node Starting
2481 @section Starting your Program
2482 @cindex starting
2483 @cindex running
2485 @table @code
2486 @kindex run
2487 @kindex r @r{(@code{run})}
2488 @item run
2489 @itemx r
2490 Use the @code{run} command to start your program under @value{GDBN}.
2491 You must first specify the program name with an argument to
2492 @value{GDBN} (@pxref{Invocation, ,Getting In and Out of
2493 @value{GDBN}}), or by using the @code{file} or @code{exec-file}
2494 command (@pxref{Files, ,Commands to Specify Files}).
2496 @end table
2498 If you are running your program in an execution environment that
2499 supports processes, @code{run} creates an inferior process and makes
2500 that process run your program.  In some environments without processes,
2501 @code{run} jumps to the start of your program.  Other targets,
2502 like @samp{remote}, are always running.  If you get an error
2503 message like this one:
2505 @smallexample
2506 The "remote" target does not support "run".
2507 Try "help target" or "continue".
2508 @end smallexample
2510 @noindent
2511 then use @code{continue} to run your program.  You may need @code{load}
2512 first (@pxref{load}).
2514 The execution of a program is affected by certain information it
2515 receives from its superior.  @value{GDBN} provides ways to specify this
2516 information, which you must do @emph{before} starting your program.  (You
2517 can change it after starting your program, but such changes only affect
2518 your program the next time you start it.)  This information may be
2519 divided into four categories:
2521 @table @asis
2522 @item The @emph{arguments.}
2523 Specify the arguments to give your program as the arguments of the
2524 @code{run} command.  If a shell is available on your target, the shell
2525 is used to pass the arguments, so that you may use normal conventions
2526 (such as wildcard expansion or variable substitution) in describing
2527 the arguments.
2528 In Unix systems, you can control which shell is used with the
2529 @env{SHELL} environment variable.  If you do not define @env{SHELL},
2530 @value{GDBN} uses the default shell (@file{/bin/sh}).  You can disable
2531 use of any shell with the @code{set startup-with-shell} command (see
2532 below for details).
2534 @item The @emph{environment.}
2535 Your program normally inherits its environment from @value{GDBN}, but you can
2536 use the @value{GDBN} commands @code{set environment} and @code{unset
2537 environment} to change parts of the environment that affect
2538 your program.  @xref{Environment, ,Your Program's Environment}.
2540 @item The @emph{working directory.}
2541 You can set your program's working directory with the command
2542 @kbd{set cwd}.  If you do not set any working directory with this
2543 command, your program will inherit @value{GDBN}'s working directory if
2544 native debugging, or the remote server's working directory if remote
2545 debugging.  @xref{Working Directory, ,Your Program's Working
2546 Directory}.
2548 @item The @emph{standard input and output.}
2549 Your program normally uses the same device for standard input and
2550 standard output as @value{GDBN} is using.  You can redirect input and output
2551 in the @code{run} command line, or you can use the @code{tty} command to
2552 set a different device for your program.
2553 @xref{Input/Output, ,Your Program's Input and Output}.
2555 @cindex pipes
2556 @emph{Warning:} While input and output redirection work, you cannot use
2557 pipes to pass the output of the program you are debugging to another
2558 program; if you attempt this, @value{GDBN} is likely to wind up debugging the
2559 wrong program.
2560 @end table
2562 When you issue the @code{run} command, your program begins to execute
2563 immediately.  @xref{Stopping, ,Stopping and Continuing}, for discussion
2564 of how to arrange for your program to stop.  Once your program has
2565 stopped, you may call functions in your program, using the @code{print}
2566 or @code{call} commands.  @xref{Data, ,Examining Data}.
2568 If the modification time of your symbol file has changed since the last
2569 time @value{GDBN} read its symbols, @value{GDBN} discards its symbol
2570 table, and reads it again.  When it does this, @value{GDBN} tries to retain
2571 your current breakpoints.
2573 @table @code
2574 @kindex start
2575 @item start
2576 @cindex run to main procedure
2577 The name of the main procedure can vary from language to language.
2578 With C or C@t{++}, the main procedure name is always @code{main}, but
2579 other languages such as Ada do not require a specific name for their
2580 main procedure.  The debugger provides a convenient way to start the
2581 execution of the program and to stop at the beginning of the main
2582 procedure, depending on the language used.
2584 The @samp{start} command does the equivalent of setting a temporary
2585 breakpoint at the beginning of the main procedure and then invoking
2586 the @samp{run} command.
2588 @cindex elaboration phase
2589 Some programs contain an @dfn{elaboration} phase where some startup code is
2590 executed before the main procedure is called.  This depends on the
2591 languages used to write your program.  In C@t{++}, for instance,
2592 constructors for static and global objects are executed before
2593 @code{main} is called.  It is therefore possible that the debugger stops
2594 before reaching the main procedure.  However, the temporary breakpoint
2595 will remain to halt execution.
2597 Specify the arguments to give to your program as arguments to the
2598 @samp{start} command.  These arguments will be given verbatim to the
2599 underlying @samp{run} command.  Note that the same arguments will be
2600 reused if no argument is provided during subsequent calls to
2601 @samp{start} or @samp{run}.
2603 It is sometimes necessary to debug the program during elaboration.  In
2604 these cases, using the @code{start} command would stop the execution
2605 of your program too late, as the program would have already completed
2606 the elaboration phase.  Under these circumstances, either insert
2607 breakpoints in your elaboration code before running your program or
2608 use the @code{starti} command.
2610 @kindex starti
2611 @item starti
2612 @cindex run to first instruction
2613 The @samp{starti} command does the equivalent of setting a temporary
2614 breakpoint at the first instruction of a program's execution and then
2615 invoking the @samp{run} command.  For programs containing an
2616 elaboration phase, the @code{starti} command will stop execution at
2617 the start of the elaboration phase.
2619 @anchor{set exec-wrapper}
2620 @kindex set exec-wrapper
2621 @item set exec-wrapper @var{wrapper}
2622 @itemx show exec-wrapper
2623 @itemx unset exec-wrapper
2624 When @samp{exec-wrapper} is set, the specified wrapper is used to
2625 launch programs for debugging.  @value{GDBN} starts your program
2626 with a shell command of the form @kbd{exec @var{wrapper}
2627 @var{program}}.  Quoting is added to @var{program} and its
2628 arguments, but not to @var{wrapper}, so you should add quotes if
2629 appropriate for your shell.  The wrapper runs until it executes
2630 your program, and then @value{GDBN} takes control.
2632 You can use any program that eventually calls @code{execve} with
2633 its arguments as a wrapper.  Several standard Unix utilities do
2634 this, e.g.@: @code{env} and @code{nohup}.  Any Unix shell script ending
2635 with @code{exec "$@@"} will also work.
2637 For example, you can use @code{env} to pass an environment variable to
2638 the debugged program, without setting the variable in your shell's
2639 environment:
2641 @smallexample
2642 (@value{GDBP}) set exec-wrapper env 'LD_PRELOAD=libtest.so'
2643 (@value{GDBP}) run
2644 @end smallexample
2646 This command is available when debugging locally on most targets, excluding
2647 @sc{djgpp}, Cygwin, MS Windows, and QNX Neutrino.
2649 @kindex set startup-with-shell
2650 @anchor{set startup-with-shell}
2651 @item set startup-with-shell
2652 @itemx set startup-with-shell on
2653 @itemx set startup-with-shell off
2654 @itemx show startup-with-shell
2655 On Unix systems, by default, if a shell is available on your target,
2656 @value{GDBN}) uses it to start your program.  Arguments of the
2657 @code{run} command are passed to the shell, which does variable
2658 substitution, expands wildcard characters and performs redirection of
2659 I/O.  In some circumstances, it may be useful to disable such use of a
2660 shell, for example, when debugging the shell itself or diagnosing
2661 startup failures such as:
2663 @smallexample
2664 (@value{GDBP}) run
2665 Starting program: ./a.out
2666 During startup program terminated with signal SIGSEGV, Segmentation fault.
2667 @end smallexample
2669 @noindent
2670 which indicates the shell or the wrapper specified with
2671 @samp{exec-wrapper} crashed, not your program.  Most often, this is
2672 caused by something odd in your shell's non-interactive mode
2673 initialization file---such as @file{.cshrc} for C-shell,
2674 $@file{.zshenv} for the Z shell, or the file specified in the
2675 @env{BASH_ENV} environment variable for BASH.
2677 @anchor{set auto-connect-native-target}
2678 @kindex set auto-connect-native-target
2679 @item set auto-connect-native-target
2680 @itemx set auto-connect-native-target on
2681 @itemx set auto-connect-native-target off
2682 @itemx show auto-connect-native-target
2684 By default, if the current inferior is not connected to any target yet
2685 (e.g., with @code{target remote}), the @code{run} command starts your
2686 program as a native process under @value{GDBN}, on your local machine.
2687 If you're sure you don't want to debug programs on your local machine,
2688 you can tell @value{GDBN} to not connect to the native target
2689 automatically with the @code{set auto-connect-native-target off}
2690 command.
2692 If @code{on}, which is the default, and if the current inferior is not
2693 connected to a target already, the @code{run} command automaticaly
2694 connects to the native target, if one is available.
2696 If @code{off}, and if the current inferior is not connected to a
2697 target already, the @code{run} command fails with an error:
2699 @smallexample
2700 (@value{GDBP}) run
2701 Don't know how to run.  Try "help target".
2702 @end smallexample
2704 If the current inferior is already connected to a target, @value{GDBN}
2705 always uses it with the @code{run} command.
2707 In any case, you can explicitly connect to the native target with the
2708 @code{target native} command.  For example,
2710 @smallexample
2711 (@value{GDBP}) set auto-connect-native-target off
2712 (@value{GDBP}) run
2713 Don't know how to run.  Try "help target".
2714 (@value{GDBP}) target native
2715 (@value{GDBP}) run
2716 Starting program: ./a.out
2717 [Inferior 1 (process 10421) exited normally]
2718 @end smallexample
2720 In case you connected explicitly to the @code{native} target,
2721 @value{GDBN} remains connected even if all inferiors exit, ready for
2722 the next @code{run} command.  Use the @code{disconnect} command to
2723 disconnect.
2725 Examples of other commands that likewise respect the
2726 @code{auto-connect-native-target} setting: @code{attach}, @code{info
2727 proc}, @code{info os}.
2729 @kindex set disable-randomization
2730 @item set disable-randomization
2731 @itemx set disable-randomization on
2732 This option (enabled by default in @value{GDBN}) will turn off the native
2733 randomization of the virtual address space of the started program.  This option
2734 is useful for multiple debugging sessions to make the execution better
2735 reproducible and memory addresses reusable across debugging sessions.
2737 This feature is implemented only on certain targets, including @sc{gnu}/Linux.
2738 On @sc{gnu}/Linux you can get the same behavior using
2740 @smallexample
2741 (@value{GDBP}) set exec-wrapper setarch `uname -m` -R
2742 @end smallexample
2744 @item set disable-randomization off
2745 Leave the behavior of the started executable unchanged.  Some bugs rear their
2746 ugly heads only when the program is loaded at certain addresses.  If your bug
2747 disappears when you run the program under @value{GDBN}, that might be because
2748 @value{GDBN} by default disables the address randomization on platforms, such
2749 as @sc{gnu}/Linux, which do that for stand-alone programs.  Use @kbd{set
2750 disable-randomization off} to try to reproduce such elusive bugs.
2752 On targets where it is available, virtual address space randomization
2753 protects the programs against certain kinds of security attacks.  In these
2754 cases the attacker needs to know the exact location of a concrete executable
2755 code.  Randomizing its location makes it impossible to inject jumps misusing
2756 a code at its expected addresses.
2758 Prelinking shared libraries provides a startup performance advantage but it
2759 makes addresses in these libraries predictable for privileged processes by
2760 having just unprivileged access at the target system.  Reading the shared
2761 library binary gives enough information for assembling the malicious code
2762 misusing it.  Still even a prelinked shared library can get loaded at a new
2763 random address just requiring the regular relocation process during the
2764 startup.  Shared libraries not already prelinked are always loaded at
2765 a randomly chosen address.
2767 Position independent executables (PIE) contain position independent code
2768 similar to the shared libraries and therefore such executables get loaded at
2769 a randomly chosen address upon startup.  PIE executables always load even
2770 already prelinked shared libraries at a random address.  You can build such
2771 executable using @command{gcc -fPIE -pie}.
2773 Heap (malloc storage), stack and custom mmap areas are always placed randomly
2774 (as long as the randomization is enabled).
2776 @item show disable-randomization
2777 Show the current setting of the explicit disable of the native randomization of
2778 the virtual address space of the started program.
2780 @end table
2782 @node Arguments
2783 @section Your Program's Arguments
2785 @cindex arguments (to your program)
2786 The arguments to your program can be specified by the arguments of the
2787 @code{run} command.
2788 They are passed to a shell, which expands wildcard characters and
2789 performs redirection of I/O, and thence to your program.  Your
2790 @env{SHELL} environment variable (if it exists) specifies what shell
2791 @value{GDBN} uses.  If you do not define @env{SHELL}, @value{GDBN} uses
2792 the default shell (@file{/bin/sh} on Unix).
2794 On non-Unix systems, the program is usually invoked directly by
2795 @value{GDBN}, which emulates I/O redirection via the appropriate system
2796 calls, and the wildcard characters are expanded by the startup code of
2797 the program, not by the shell.
2799 @code{run} with no arguments uses the same arguments used by the previous
2800 @code{run}, or those set by the @code{set args} command.
2802 @table @code
2803 @kindex set args
2804 @item set args
2805 Specify the arguments to be used the next time your program is run.  If
2806 @code{set args} has no arguments, @code{run} executes your program
2807 with no arguments.  Once you have run your program with arguments,
2808 using @code{set args} before the next @code{run} is the only way to run
2809 it again without arguments.
2811 @kindex show args
2812 @item show args
2813 Show the arguments to give your program when it is started.
2814 @end table
2816 @node Environment
2817 @section Your Program's Environment
2819 @cindex environment (of your program)
2820 The @dfn{environment} consists of a set of environment variables and
2821 their values.  Environment variables conventionally record such things as
2822 your user name, your home directory, your terminal type, and your search
2823 path for programs to run.  Usually you set up environment variables with
2824 the shell and they are inherited by all the other programs you run.  When
2825 debugging, it can be useful to try running your program with a modified
2826 environment without having to start @value{GDBN} over again.
2828 @table @code
2829 @kindex path
2830 @item path @var{directory}
2831 Add @var{directory} to the front of the @env{PATH} environment variable
2832 (the search path for executables) that will be passed to your program.
2833 The value of @env{PATH} used by @value{GDBN} does not change.
2834 You may specify several directory names, separated by whitespace or by a
2835 system-dependent separator character (@samp{:} on Unix, @samp{;} on
2836 MS-DOS and MS-Windows).  If @var{directory} is already in the path, it
2837 is moved to the front, so it is searched sooner.
2839 You can use the string @samp{$cwd} to refer to whatever is the current
2840 working directory at the time @value{GDBN} searches the path.  If you
2841 use @samp{.} instead, it refers to the directory where you executed the
2842 @code{path} command.  @value{GDBN} replaces @samp{.} in the
2843 @var{directory} argument (with the current path) before adding
2844 @var{directory} to the search path.
2845 @c 'path' is explicitly nonrepeatable, but RMS points out it is silly to
2846 @c document that, since repeating it would be a no-op.
2848 @kindex show paths
2849 @item show paths
2850 Display the list of search paths for executables (the @env{PATH}
2851 environment variable).
2853 @kindex show environment
2854 @item show environment @r{[}@var{varname}@r{]}
2855 Print the value of environment variable @var{varname} to be given to
2856 your program when it starts.  If you do not supply @var{varname},
2857 print the names and values of all environment variables to be given to
2858 your program.  You can abbreviate @code{environment} as @code{env}.
2860 @kindex set environment
2861 @anchor{set environment}
2862 @item set environment @var{varname} @r{[}=@var{value}@r{]}
2863 Set environment variable @var{varname} to @var{value}.  The value
2864 changes for your program (and the shell @value{GDBN} uses to launch
2865 it), not for @value{GDBN} itself.  The @var{value} may be any string; the
2866 values of environment variables are just strings, and any
2867 interpretation is supplied by your program itself.  The @var{value}
2868 parameter is optional; if it is eliminated, the variable is set to a
2869 null value.
2870 @c "any string" here does not include leading, trailing
2871 @c blanks. Gnu asks: does anyone care?
2873 For example, this command:
2875 @smallexample
2876 set env USER = foo
2877 @end smallexample
2879 @noindent
2880 tells the debugged program, when subsequently run, that its user is named
2881 @samp{foo}.  (The spaces around @samp{=} are used for clarity here; they
2882 are not actually required.)
2884 Note that on Unix systems, @value{GDBN} runs your program via a shell,
2885 which also inherits the environment set with @code{set environment}.
2886 If necessary, you can avoid that by using the @samp{env} program as a
2887 wrapper instead of using @code{set environment}.  @xref{set
2888 exec-wrapper}, for an example doing just that.
2890 Environment variables that are set by the user are also transmitted to
2891 @command{gdbserver} to be used when starting the remote inferior.
2892 @pxref{QEnvironmentHexEncoded}.
2894 @kindex unset environment
2895 @anchor{unset environment}
2896 @item unset environment @var{varname}
2897 Remove variable @var{varname} from the environment to be passed to your
2898 program.  This is different from @samp{set env @var{varname} =};
2899 @code{unset environment} removes the variable from the environment,
2900 rather than assigning it an empty value.
2902 Environment variables that are unset by the user are also unset on
2903 @command{gdbserver} when starting the remote inferior.
2904 @pxref{QEnvironmentUnset}.
2905 @end table
2907 @emph{Warning:} On Unix systems, @value{GDBN} runs your program using
2908 the shell indicated by your @env{SHELL} environment variable if it
2909 exists (or @code{/bin/sh} if not).  If your @env{SHELL} variable
2910 names a shell that runs an initialization file when started
2911 non-interactively---such as @file{.cshrc} for C-shell, $@file{.zshenv}
2912 for the Z shell, or the file specified in the @env{BASH_ENV}
2913 environment variable for BASH---any variables you set in that file
2914 affect your program.  You may wish to move setting of environment
2915 variables to files that are only run when you sign on, such as
2916 @file{.login} or @file{.profile}.
2918 @node Working Directory
2919 @section Your Program's Working Directory
2921 @cindex working directory (of your program)
2922 Each time you start your program with @code{run}, the inferior will be
2923 initialized with the current working directory specified by the
2924 @kbd{set cwd} command.  If no directory has been specified by this
2925 command, then the inferior will inherit @value{GDBN}'s current working
2926 directory as its working directory if native debugging, or it will
2927 inherit the remote server's current working directory if remote
2928 debugging.
2930 @table @code
2931 @kindex set cwd
2932 @cindex change inferior's working directory
2933 @anchor{set cwd command}
2934 @item set cwd @r{[}@var{directory}@r{]}
2935 Set the inferior's working directory to @var{directory}, which will be
2936 @code{glob}-expanded in order to resolve tildes (@file{~}).  If no
2937 argument has been specified, the command clears the setting and resets
2938 it to an empty state.  This setting has no effect on @value{GDBN}'s
2939 working directory, and it only takes effect the next time you start
2940 the inferior.  The @file{~} in @var{directory} is a short for the
2941 @dfn{home directory}, usually pointed to by the @env{HOME} environment
2942 variable.  On MS-Windows, if @env{HOME} is not defined, @value{GDBN}
2943 uses the concatenation of @env{HOMEDRIVE} and @env{HOMEPATH} as
2944 fallback.
2946 You can also change @value{GDBN}'s current working directory by using
2947 the @code{cd} command.
2948 @xref{cd command}.
2950 @kindex show cwd
2951 @cindex show inferior's working directory
2952 @item show cwd
2953 Show the inferior's working directory.  If no directory has been
2954 specified by @kbd{set cwd}, then the default inferior's working
2955 directory is the same as @value{GDBN}'s working directory.
2957 @kindex cd
2958 @cindex change @value{GDBN}'s working directory
2959 @anchor{cd command}
2960 @item cd @r{[}@var{directory}@r{]}
2961 Set the @value{GDBN} working directory to @var{directory}.  If not
2962 given, @var{directory} uses @file{'~'}.
2964 The @value{GDBN} working directory serves as a default for the
2965 commands that specify files for @value{GDBN} to operate on.
2966 @xref{Files, ,Commands to Specify Files}.
2967 @xref{set cwd command}.
2969 @kindex pwd
2970 @item pwd
2971 Print the @value{GDBN} working directory.
2972 @end table
2974 It is generally impossible to find the current working directory of
2975 the process being debugged (since a program can change its directory
2976 during its run).  If you work on a system where @value{GDBN} supports
2977 the @code{info proc} command (@pxref{Process Information}), you can
2978 use the @code{info proc} command to find out the
2979 current working directory of the debuggee.
2981 @node Input/Output
2982 @section Your Program's Input and Output
2984 @cindex redirection
2985 @cindex i/o
2986 @cindex terminal
2987 By default, the program you run under @value{GDBN} does input and output to
2988 the same terminal that @value{GDBN} uses.  @value{GDBN} switches the terminal
2989 to its own terminal modes to interact with you, but it records the terminal
2990 modes your program was using and switches back to them when you continue
2991 running your program.
2993 @table @code
2994 @kindex info terminal
2995 @item info terminal
2996 Displays information recorded by @value{GDBN} about the terminal modes your
2997 program is using.
2998 @end table
3000 You can redirect your program's input and/or output using shell
3001 redirection with the @code{run} command.  For example,
3003 @smallexample
3004 run > outfile
3005 @end smallexample
3007 @noindent
3008 starts your program, diverting its output to the file @file{outfile}.
3010 @kindex tty
3011 @cindex controlling terminal
3012 Another way to specify where your program should do input and output is
3013 with the @code{tty} command.  This command accepts a file name as
3014 argument, and causes this file to be the default for future @code{run}
3015 commands.  It also resets the controlling terminal for the child
3016 process, for future @code{run} commands.  For example,
3018 @smallexample
3019 tty /dev/ttyb
3020 @end smallexample
3022 @noindent
3023 directs that processes started with subsequent @code{run} commands
3024 default to do input and output on the terminal @file{/dev/ttyb} and have
3025 that as their controlling terminal.
3027 An explicit redirection in @code{run} overrides the @code{tty} command's
3028 effect on the input/output device, but not its effect on the controlling
3029 terminal.
3031 When you use the @code{tty} command or redirect input in the @code{run}
3032 command, only the input @emph{for your program} is affected.  The input
3033 for @value{GDBN} still comes from your terminal.  @code{tty} is an alias
3034 for @code{set inferior-tty}.
3036 @cindex inferior tty
3037 @cindex set inferior controlling terminal
3038 You can use the @code{show inferior-tty} command to tell @value{GDBN} to
3039 display the name of the terminal that will be used for future runs of your
3040 program.
3042 @table @code
3043 @item set inferior-tty [ @var{tty} ]
3044 @kindex set inferior-tty
3045 Set the tty for the program being debugged to @var{tty}.  Omitting @var{tty}
3046 restores the default behavior, which is to use the same terminal as
3047 @value{GDBN}.
3049 @item show inferior-tty
3050 @kindex show inferior-tty
3051 Show the current tty for the program being debugged.
3052 @end table
3054 @node Attach
3055 @section Debugging an Already-running Process
3056 @kindex attach
3057 @cindex attach
3059 @table @code
3060 @item attach @var{process-id}
3061 This command attaches to a running process---one that was started
3062 outside @value{GDBN}.  (@code{info files} shows your active
3063 targets.)  The command takes as argument a process ID.  The usual way to
3064 find out the @var{process-id} of a Unix process is with the @code{ps} utility,
3065 or with the @samp{jobs -l} shell command.
3067 @code{attach} does not repeat if you press @key{RET} a second time after
3068 executing the command.
3069 @end table
3071 To use @code{attach}, your program must be running in an environment
3072 which supports processes; for example, @code{attach} does not work for
3073 programs on bare-board targets that lack an operating system.  You must
3074 also have permission to send the process a signal.
3076 When you use @code{attach}, the debugger finds the program running in
3077 the process first by looking in the current working directory, then (if
3078 the program is not found) by using the source file search path
3079 (@pxref{Source Path, ,Specifying Source Directories}).  You can also use
3080 the @code{file} command to load the program.  @xref{Files, ,Commands to
3081 Specify Files}.
3083 @anchor{set exec-file-mismatch}
3084 If the debugger can determine that the executable file running in the
3085 process it is attaching to does not match the current exec-file loaded
3086 by @value{GDBN}, the option @code{exec-file-mismatch} specifies how to
3087 handle the mismatch.  @value{GDBN} tries to compare the files by
3088 comparing their build IDs (@pxref{build ID}), if available.
3090 @table @code
3091 @kindex exec-file-mismatch
3092 @cindex set exec-file-mismatch
3093 @item set exec-file-mismatch @samp{ask|warn|off}
3095 Whether to detect mismatch between the current executable file loaded
3096 by @value{GDBN} and the executable file used to start the process.  If
3097 @samp{ask}, the default, display a warning and ask the user whether to
3098 load the process executable file; if @samp{warn}, just display a
3099 warning; if @samp{off}, don't attempt to detect a mismatch.
3100 If the user confirms loading the process executable file, then its symbols
3101 will be loaded as well.
3103 @cindex show exec-file-mismatch
3104 @item show exec-file-mismatch
3105 Show the current value of @code{exec-file-mismatch}.
3107 @end table
3109 The first thing @value{GDBN} does after arranging to debug the specified
3110 process is to stop it.  You can examine and modify an attached process
3111 with all the @value{GDBN} commands that are ordinarily available when
3112 you start processes with @code{run}.  You can insert breakpoints; you
3113 can step and continue; you can modify storage.  If you would rather the
3114 process continue running, you may use the @code{continue} command after
3115 attaching @value{GDBN} to the process.
3117 @table @code
3118 @kindex detach
3119 @item detach
3120 When you have finished debugging the attached process, you can use the
3121 @code{detach} command to release it from @value{GDBN} control.  Detaching
3122 the process continues its execution.  After the @code{detach} command,
3123 that process and @value{GDBN} become completely independent once more, and you
3124 are ready to @code{attach} another process or start one with @code{run}.
3125 @code{detach} does not repeat if you press @key{RET} again after
3126 executing the command.
3127 @end table
3129 If you exit @value{GDBN} while you have an attached process, you detach
3130 that process.  If you use the @code{run} command, you kill that process.
3131 By default, @value{GDBN} asks for confirmation if you try to do either of these
3132 things; you can control whether or not you need to confirm by using the
3133 @code{set confirm} command (@pxref{Messages/Warnings, ,Optional Warnings and
3134 Messages}).
3136 @node Kill Process
3137 @section Killing the Child Process
3139 @table @code
3140 @kindex kill
3141 @item kill
3142 Kill the child process in which your program is running under @value{GDBN}.
3143 @end table
3145 This command is useful if you wish to debug a core dump instead of a
3146 running process.  @value{GDBN} ignores any core dump file while your program
3147 is running.
3149 On some operating systems, a program cannot be executed outside @value{GDBN}
3150 while you have breakpoints set on it inside @value{GDBN}.  You can use the
3151 @code{kill} command in this situation to permit running your program
3152 outside the debugger.
3154 The @code{kill} command is also useful if you wish to recompile and
3155 relink your program, since on many systems it is impossible to modify an
3156 executable file while it is running in a process.  In this case, when you
3157 next type @code{run}, @value{GDBN} notices that the file has changed, and
3158 reads the symbol table again (while trying to preserve your current
3159 breakpoint settings).
3161 @node Inferiors Connections and Programs
3162 @section Debugging Multiple Inferiors Connections and Programs
3164 @value{GDBN} lets you run and debug multiple programs in a single
3165 session.  In addition, @value{GDBN} on some systems may let you run
3166 several programs simultaneously (otherwise you have to exit from one
3167 before starting another).  On some systems @value{GDBN} may even let
3168 you debug several programs simultaneously on different remote systems.
3169 In the most general case, you can have multiple threads of execution
3170 in each of multiple processes, launched from multiple executables,
3171 running on different machines.
3173 @cindex inferior
3174 @value{GDBN} represents the state of each program execution with an
3175 object called an @dfn{inferior}.  An inferior typically corresponds to
3176 a process, but is more general and applies also to targets that do not
3177 have processes.  Inferiors may be created before a process runs, and
3178 may be retained after a process exits.  Inferiors have unique
3179 identifiers that are different from process ids.  Usually each
3180 inferior will also have its own distinct address space, although some
3181 embedded targets may have several inferiors running in different parts
3182 of a single address space.  Each inferior may in turn have multiple
3183 threads running in it.
3185 To find out what inferiors exist at any moment, use @w{@code{info
3186 inferiors}}:
3188 @table @code
3189 @kindex info inferiors [ @var{id}@dots{} ]
3190 @item info inferiors
3191 Print a list of all inferiors currently being managed by @value{GDBN}.
3192 By default all inferiors are printed, but the argument @var{id}@dots{}
3193 -- a space separated list of inferior numbers -- can be used to limit
3194 the display to just the requested inferiors.
3196 @value{GDBN} displays for each inferior (in this order):
3198 @enumerate
3199 @item
3200 the inferior number assigned by @value{GDBN}
3202 @item
3203 the target system's inferior identifier
3205 @item
3206 the target connection the inferior is bound to, including the unique
3207 connection number assigned by @value{GDBN}, and the protocol used by
3208 the connection.
3210 @item
3211 the name of the executable the inferior is running.
3213 @end enumerate
3215 @noindent
3216 An asterisk @samp{*} preceding the @value{GDBN} inferior number
3217 indicates the current inferior.
3219 For example,
3220 @end table
3221 @c end table here to get a little more width for example
3223 @smallexample
3224 (@value{GDBP}) info inferiors
3225   Num  Description       Connection                      Executable
3226 * 1    process 3401      1 (native)                      goodbye
3227   2    process 2307      2 (extended-remote host:10000)  hello
3228 @end smallexample
3230 To get informations about the current inferior, use @code{inferior}:
3232 @table @code
3233 @kindex inferior
3234 @item inferior
3235 Shows information about the current inferior.
3237 For example,
3238 @end table
3239 @c end table here to get a little more width for example
3241 @smallexample
3242 (@value{GDBP}) inferior
3243 [Current inferior is 1 [process 3401] (helloworld)]
3244 @end smallexample
3246 To find out what open target connections exist at any moment, use
3247 @w{@code{info connections}}:
3249 @table @code
3250 @kindex info connections [ @var{id}@dots{} ]
3251 @item info connections
3252 Print a list of all open target connections currently being managed by
3253 @value{GDBN}.  By default all connections are printed, but the
3254 argument @var{id}@dots{} -- a space separated list of connections
3255 numbers -- can be used to limit the display to just the requested
3256 connections.
3258 @value{GDBN} displays for each connection (in this order):
3260 @enumerate
3261 @item
3262 the connection number assigned by @value{GDBN}.
3264 @item
3265 the protocol used by the connection.
3267 @item
3268 a textual description of the protocol used by the connection.
3270 @end enumerate
3272 @noindent
3273 An asterisk @samp{*} preceding the connection number indicates the
3274 connection of the current inferior.
3276 For example,
3277 @end table
3278 @c end table here to get a little more width for example
3280 @smallexample
3281 (@value{GDBP}) info connections
3282   Num  What                        Description
3283 * 1    extended-remote host:10000  Extended remote serial target in gdb-specific protocol
3284   2    native                      Native process
3285   3    core                        Local core dump file
3286 @end smallexample
3288 To switch focus between inferiors, use the @code{inferior} command:
3290 @table @code
3291 @kindex inferior @var{infno}
3292 @item inferior @var{infno}
3293 Make inferior number @var{infno} the current inferior.  The argument
3294 @var{infno} is the inferior number assigned by @value{GDBN}, as shown
3295 in the first field of the @samp{info inferiors} display.
3296 @end table
3298 @vindex $_inferior@r{, convenience variable}
3299 The debugger convenience variable @samp{$_inferior} contains the
3300 number of the current inferior.  You may find this useful in writing
3301 breakpoint conditional expressions, command scripts, and so forth.
3302 @xref{Convenience Vars,, Convenience Variables}, for general
3303 information on convenience variables.
3305 You can get multiple executables into a debugging session via the
3306 @code{add-inferior} and @w{@code{clone-inferior}} commands.  On some
3307 systems @value{GDBN} can add inferiors to the debug session
3308 automatically by following calls to @code{fork} and @code{exec}.  To
3309 remove inferiors from the debugging session use the
3310 @w{@code{remove-inferiors}} command.
3312 @table @code
3313 @anchor{add_inferior_cli}
3314 @kindex add-inferior
3315 @item add-inferior [ -copies @var{n} ] [ -exec @var{executable} ] [-no-connection ]
3316 Adds @var{n} inferiors to be run using @var{executable} as the
3317 executable; @var{n} defaults to 1.  If no executable is specified,
3318 the inferiors begins empty, with no program.  You can still assign or
3319 change the program assigned to the inferior at any time by using the
3320 @code{file} command with the executable name as its argument.
3322 By default, the new inferior begins connected to the same target
3323 connection as the current inferior.  For example, if the current
3324 inferior was connected to @code{gdbserver} with @code{target remote},
3325 then the new inferior will be connected to the same @code{gdbserver}
3326 instance.  The @samp{-no-connection} option starts the new inferior
3327 with no connection yet.  You can then for example use the @code{target
3328 remote} command to connect to some other @code{gdbserver} instance,
3329 use @code{run} to spawn a local program, etc.
3331 @kindex clone-inferior
3332 @item clone-inferior [ -copies @var{n} ] [ @var{infno} ]
3333 Adds @var{n} inferiors ready to execute the same program as inferior
3334 @var{infno}; @var{n} defaults to 1, and @var{infno} defaults to the
3335 number of the current inferior.  This command copies the values of the
3336 @var{args}, @w{@var{inferior-tty}} and @var{cwd} properties from the
3337 current inferior to the new one.  It also propagates changes the user
3338 made to environment variables using the @w{@code{set environment}} and
3339 @w{@code{unset environment}} commands.  This is a convenient command
3340 when you want to run another instance of the inferior you are debugging.
3342 @smallexample
3343 (@value{GDBP}) info inferiors
3344   Num  Description       Connection   Executable
3345 * 1    process 29964     1 (native)   helloworld
3346 (@value{GDBP}) clone-inferior
3347 Added inferior 2.
3348 1 inferiors added.
3349 (@value{GDBP}) info inferiors
3350   Num  Description       Connection   Executable
3351 * 1    process 29964     1 (native)   helloworld
3352   2    <null>            1 (native)   helloworld
3353 @end smallexample
3355 You can now simply switch focus to inferior 2 and run it.
3357 @kindex remove-inferiors
3358 @item remove-inferiors @var{infno}@dots{}
3359 Removes the inferior or inferiors @var{infno}@dots{}.  It is not
3360 possible to remove an inferior that is running with this command.  For
3361 those, use the @code{kill} or @code{detach} command first.
3363 @end table
3365 To quit debugging one of the running inferiors that is not the current
3366 inferior, you can either detach from it by using the @w{@code{detach
3367 inferior}} command (allowing it to run independently), or kill it
3368 using the @w{@code{kill inferiors}} command:
3370 @table @code
3371 @kindex detach inferiors @var{infno}@dots{}
3372 @item detach inferior @var{infno}@dots{}
3373 Detach from the inferior or inferiors identified by @value{GDBN}
3374 inferior number(s) @var{infno}@dots{}.  Note that the inferior's entry
3375 still stays on the list of inferiors shown by @code{info inferiors},
3376 but its Description will show @samp{<null>}.
3378 @kindex kill inferiors @var{infno}@dots{}
3379 @item kill inferiors @var{infno}@dots{}
3380 Kill the inferior or inferiors identified by @value{GDBN} inferior
3381 number(s) @var{infno}@dots{}.  Note that the inferior's entry still
3382 stays on the list of inferiors shown by @code{info inferiors}, but its
3383 Description will show @samp{<null>}.
3384 @end table
3386 After the successful completion of a command such as @code{detach},
3387 @code{detach inferiors}, @code{kill} or @code{kill inferiors}, or after
3388 a normal process exit, the inferior is still valid and listed with
3389 @code{info inferiors}, ready to be restarted.
3392 To be notified when inferiors are started or exit under @value{GDBN}'s
3393 control use @w{@code{set print inferior-events}}:
3395 @table @code
3396 @kindex set print inferior-events
3397 @cindex print messages on inferior start and exit
3398 @item set print inferior-events
3399 @itemx set print inferior-events on
3400 @itemx set print inferior-events off
3401 The @code{set print inferior-events} command allows you to enable or
3402 disable printing of messages when @value{GDBN} notices that new
3403 inferiors have started or that inferiors have exited or have been
3404 detached.  By default, these messages will be printed.
3406 @kindex show print inferior-events
3407 @item show print inferior-events
3408 Show whether messages will be printed when @value{GDBN} detects that
3409 inferiors have started, exited or have been detached.
3410 @end table
3412 Many commands will work the same with multiple programs as with a
3413 single program: e.g., @code{print myglobal} will simply display the
3414 value of @code{myglobal} in the current inferior.
3417 Occasionally, when debugging @value{GDBN} itself, it may be useful to
3418 get more info about the relationship of inferiors, programs, address
3419 spaces in a debug session.  You can do that with the @w{@code{maint
3420 info program-spaces}} command.
3422 @table @code
3423 @kindex maint info program-spaces
3424 @item maint info program-spaces
3425 Print a list of all program spaces currently being managed by
3426 @value{GDBN}.
3428 @value{GDBN} displays for each program space (in this order):
3430 @enumerate
3431 @item
3432 the program space number assigned by @value{GDBN}
3434 @item
3435 the name of the executable loaded into the program space, with e.g.,
3436 the @code{file} command.
3438 @end enumerate
3440 @noindent
3441 An asterisk @samp{*} preceding the @value{GDBN} program space number
3442 indicates the current program space.
3444 In addition, below each program space line, @value{GDBN} prints extra
3445 information that isn't suitable to display in tabular form.  For
3446 example, the list of inferiors bound to the program space.
3448 @smallexample
3449 (@value{GDBP}) maint info program-spaces
3450   Id   Executable
3451 * 1    hello
3452   2    goodbye
3453         Bound inferiors: ID 1 (process 21561)
3454 @end smallexample
3456 Here we can see that no inferior is running the program @code{hello},
3457 while @code{process 21561} is running the program @code{goodbye}.  On
3458 some targets, it is possible that multiple inferiors are bound to the
3459 same program space.  The most common example is that of debugging both
3460 the parent and child processes of a @code{vfork} call.  For example,
3462 @smallexample
3463 (@value{GDBP}) maint info program-spaces
3464   Id   Executable
3465 * 1    vfork-test
3466         Bound inferiors: ID 2 (process 18050), ID 1 (process 18045)
3467 @end smallexample
3469 Here, both inferior 2 and inferior 1 are running in the same program
3470 space as a result of inferior 1 having executed a @code{vfork} call.
3471 @end table
3473 @node Threads
3474 @section Debugging Programs with Multiple Threads
3476 @cindex threads of execution
3477 @cindex multiple threads
3478 @cindex switching threads
3479 In some operating systems, such as GNU/Linux and Solaris, a single program
3480 may have more than one @dfn{thread} of execution.  The precise semantics
3481 of threads differ from one operating system to another, but in general
3482 the threads of a single program are akin to multiple processes---except
3483 that they share one address space (that is, they can all examine and
3484 modify the same variables).  On the other hand, each thread has its own
3485 registers and execution stack, and perhaps private memory.
3487 @value{GDBN} provides these facilities for debugging multi-thread
3488 programs:
3490 @itemize @bullet
3491 @item automatic notification of new threads
3492 @item @samp{thread @var{thread-id}}, a command to switch among threads
3493 @item @samp{info threads}, a command to inquire about existing threads
3494 @item @samp{thread apply [@var{thread-id-list} | all] @var{args}},
3495 a command to apply a command to a list of threads
3496 @item thread-specific breakpoints
3497 @item @samp{set print thread-events}, which controls printing of 
3498 messages on thread start and exit.
3499 @item @samp{set libthread-db-search-path @var{path}}, which lets
3500 the user specify which @code{libthread_db} to use if the default choice
3501 isn't compatible with the program.
3502 @end itemize
3504 @cindex focus of debugging
3505 @cindex current thread
3506 The @value{GDBN} thread debugging facility allows you to observe all
3507 threads while your program runs---but whenever @value{GDBN} takes
3508 control, one thread in particular is always the focus of debugging.
3509 This thread is called the @dfn{current thread}.  Debugging commands show
3510 program information from the perspective of the current thread.
3512 @cindex @code{New} @var{systag} message
3513 @cindex thread identifier (system)
3514 @c FIXME-implementors!! It would be more helpful if the [New...] message
3515 @c included GDB's numeric thread handle, so you could just go to that
3516 @c thread without first checking `info threads'.
3517 Whenever @value{GDBN} detects a new thread in your program, it displays
3518 the target system's identification for the thread with a message in the
3519 form @samp{[New @var{systag}]}, where @var{systag} is a thread identifier
3520 whose form varies depending on the particular system.  For example, on
3521 @sc{gnu}/Linux, you might see
3523 @smallexample
3524 [New Thread 0x41e02940 (LWP 25582)]
3525 @end smallexample
3527 @noindent
3528 when @value{GDBN} notices a new thread.  In contrast, on other systems,
3529 the @var{systag} is simply something like @samp{process 368}, with no
3530 further qualifier.
3532 @c FIXME!! (1) Does the [New...] message appear even for the very first
3533 @c         thread of a program, or does it only appear for the
3534 @c         second---i.e.@: when it becomes obvious we have a multithread
3535 @c         program?
3536 @c         (2) *Is* there necessarily a first thread always?  Or do some
3537 @c         multithread systems permit starting a program with multiple
3538 @c         threads ab initio?
3540 @anchor{thread numbers}
3541 @cindex thread number, per inferior
3542 @cindex thread identifier (GDB)
3543 For debugging purposes, @value{GDBN} associates its own thread number
3544 ---always a single integer---with each thread of an inferior.  This
3545 number is unique between all threads of an inferior, but not unique
3546 between threads of different inferiors.
3548 @cindex qualified thread ID
3549 You can refer to a given thread in an inferior using the qualified
3550 @var{inferior-num}.@var{thread-num} syntax, also known as
3551 @dfn{qualified thread ID}, with @var{inferior-num} being the inferior
3552 number and @var{thread-num} being the thread number of the given
3553 inferior.  For example, thread @code{2.3} refers to thread number 3 of
3554 inferior 2.  If you omit @var{inferior-num} (e.g., @code{thread 3}),
3555 then @value{GDBN} infers you're referring to a thread of the current
3556 inferior.
3558 Until you create a second inferior, @value{GDBN} does not show the
3559 @var{inferior-num} part of thread IDs, even though you can always use
3560 the full @var{inferior-num}.@var{thread-num} form to refer to threads
3561 of inferior 1, the initial inferior.
3563 @anchor{thread ID lists}
3564 @cindex thread ID lists
3565 Some commands accept a space-separated @dfn{thread ID list} as
3566 argument.  A list element can be:
3568 @enumerate
3569 @item
3570 A thread ID as shown in the first field of the @samp{info threads}
3571 display, with or without an inferior qualifier.  E.g., @samp{2.1} or
3572 @samp{1}.
3574 @item
3575 A range of thread numbers, again with or without an inferior
3576 qualifier, as in @var{inf}.@var{thr1}-@var{thr2} or
3577 @var{thr1}-@var{thr2}.  E.g., @samp{1.2-4} or @samp{2-4}.
3579 @item
3580 All threads of an inferior, specified with a star wildcard, with or
3581 without an inferior qualifier, as in @var{inf}.@code{*} (e.g.,
3582 @samp{1.*}) or @code{*}.  The former refers to all threads of the
3583 given inferior, and the latter form without an inferior qualifier
3584 refers to all threads of the current inferior.
3586 @end enumerate
3588 For example, if the current inferior is 1, and inferior 7 has one
3589 thread with ID 7.1, the thread list @samp{1 2-3 4.5 6.7-9 7.*}
3590 includes threads 1 to 3 of inferior 1, thread 5 of inferior 4, threads
3591 7 to 9 of inferior 6 and all threads of inferior 7.  That is, in
3592 expanded qualified form, the same as @samp{1.1 1.2 1.3 4.5 6.7 6.8 6.9
3593 7.1}.
3596 @anchor{global thread numbers}
3597 @cindex global thread number
3598 @cindex global thread identifier (GDB)
3599 In addition to a @emph{per-inferior} number, each thread is also
3600 assigned a unique @emph{global} number, also known as @dfn{global
3601 thread ID}, a single integer.  Unlike the thread number component of
3602 the thread ID, no two threads have the same global ID, even when
3603 you're debugging multiple inferiors.
3605 From @value{GDBN}'s perspective, a process always has at least one
3606 thread.  In other words, @value{GDBN} assigns a thread number to the
3607 program's ``main thread'' even if the program is not multi-threaded.
3609 @vindex $_thread@r{, convenience variable}
3610 @vindex $_gthread@r{, convenience variable}
3611 The debugger convenience variables @samp{$_thread} and
3612 @samp{$_gthread} contain, respectively, the per-inferior thread number
3613 and the global thread number of the current thread.  You may find this
3614 useful in writing breakpoint conditional expressions, command scripts,
3615 and so forth.  @xref{Convenience Vars,, Convenience Variables}, for
3616 general information on convenience variables.
3618 If @value{GDBN} detects the program is multi-threaded, it augments the
3619 usual message about stopping at a breakpoint with the ID and name of
3620 the thread that hit the breakpoint.
3622 @smallexample
3623 Thread 2 "client" hit Breakpoint 1, send_message () at client.c:68
3624 @end smallexample
3626 Likewise when the program receives a signal:
3628 @smallexample
3629 Thread 1 "main" received signal SIGINT, Interrupt.
3630 @end smallexample
3632 @table @code
3633 @anchor{info_threads}
3634 @kindex info threads
3635 @item info threads @r{[}@var{thread-id-list}@r{]}
3637 Display information about one or more threads.  With no arguments
3638 displays information about all threads.  You can specify the list of
3639 threads that you want to display using the thread ID list syntax
3640 (@pxref{thread ID lists}).
3642 @value{GDBN} displays for each thread (in this order):
3644 @enumerate
3645 @item
3646 the per-inferior thread number assigned by @value{GDBN}
3648 @item
3649 the global thread number assigned by @value{GDBN}, if the @samp{-gid}
3650 option was specified
3652 @item
3653 the target system's thread identifier (@var{systag})
3655 @item
3656 the thread's name, if one is known.  A thread can either be named by
3657 the user (see @code{thread name}, below), or, in some cases, by the
3658 program itself.
3660 @item
3661 the current stack frame summary for that thread
3662 @end enumerate
3664 @noindent
3665 An asterisk @samp{*} to the left of the @value{GDBN} thread number
3666 indicates the current thread.
3668 For example,
3669 @end table
3670 @c end table here to get a little more width for example
3672 @smallexample
3673 (@value{GDBP}) info threads
3674   Id   Target Id             Frame
3675 * 1    process 35 thread 13  main (argc=1, argv=0x7ffffff8)
3676   2    process 35 thread 23  0x34e5 in sigpause ()
3677   3    process 35 thread 27  0x34e5 in sigpause ()
3678     at threadtest.c:68
3679 @end smallexample
3681 If you're debugging multiple inferiors, @value{GDBN} displays thread
3682 IDs using the qualified @var{inferior-num}.@var{thread-num} format.
3683 Otherwise, only @var{thread-num} is shown.
3685 If you specify the @samp{-gid} option, @value{GDBN} displays a column
3686 indicating each thread's global thread ID:
3688 @smallexample
3689 (@value{GDBP}) info threads
3690   Id   GId  Target Id             Frame
3691   1.1  1    process 35 thread 13  main (argc=1, argv=0x7ffffff8)
3692   1.2  3    process 35 thread 23  0x34e5 in sigpause ()
3693   1.3  4    process 35 thread 27  0x34e5 in sigpause ()
3694 * 2.1  2    process 65 thread 1   main (argc=1, argv=0x7ffffff8)
3695 @end smallexample
3697 On Solaris, you can display more information about user threads with a
3698 Solaris-specific command:
3700 @table @code
3701 @item maint info sol-threads
3702 @kindex maint info sol-threads
3703 @cindex thread info (Solaris)
3704 Display info on Solaris user threads.
3705 @end table
3707 @table @code
3708 @kindex thread @var{thread-id}
3709 @item thread @var{thread-id}
3710 Make thread ID @var{thread-id} the current thread.  The command
3711 argument @var{thread-id} is the @value{GDBN} thread ID, as shown in
3712 the first field of the @samp{info threads} display, with or without an
3713 inferior qualifier (e.g., @samp{2.1} or @samp{1}).
3715 @value{GDBN} responds by displaying the system identifier of the
3716 thread you selected, and its current stack frame summary:
3718 @smallexample
3719 (@value{GDBP}) thread 2
3720 [Switching to thread 2 (Thread 0xb7fdab70 (LWP 12747))]
3721 #0  some_function (ignore=0x0) at example.c:8
3722 8           printf ("hello\n");
3723 @end smallexample
3725 @noindent
3726 As with the @samp{[New @dots{}]} message, the form of the text after
3727 @samp{Switching to} depends on your system's conventions for identifying
3728 threads.
3730 @anchor{thread apply all}
3731 @kindex thread apply
3732 @cindex apply command to several threads
3733 @item thread apply [@var{thread-id-list} | all [-ascending]] [@var{flag}]@dots{} @var{command}
3734 The @code{thread apply} command allows you to apply the named
3735 @var{command} to one or more threads.  Specify the threads that you
3736 want affected using the thread ID list syntax (@pxref{thread ID
3737 lists}), or specify @code{all} to apply to all threads.  To apply a
3738 command to all threads in descending order, type @kbd{thread apply all
3739 @var{command}}.  To apply a command to all threads in ascending order,
3740 type @kbd{thread apply all -ascending @var{command}}.
3742 The @var{flag} arguments control what output to produce and how to handle
3743 errors raised when applying @var{command} to a thread.  @var{flag}
3744 must start with a @code{-} directly followed by one letter in
3745 @code{qcs}.  If several flags are provided, they must be given
3746 individually, such as @code{-c -q}.
3748 By default, @value{GDBN} displays some thread information before the
3749 output produced by @var{command}, and an error raised during the
3750 execution of a @var{command} will abort @code{thread apply}.  The
3751 following flags can be used to fine-tune this behavior:
3753 @table @code
3754 @item -c
3755 The flag @code{-c}, which stands for @samp{continue}, causes any
3756 errors in @var{command} to be displayed, and the execution of
3757 @code{thread apply} then continues.
3758 @item -s
3759 The flag @code{-s}, which stands for @samp{silent}, causes any errors
3760 or empty output produced by a @var{command} to be silently ignored.
3761 That is, the execution continues, but the thread information and errors
3762 are not printed.
3763 @item -q
3764 The flag @code{-q} (@samp{quiet}) disables printing the thread
3765 information.
3766 @end table
3768 Flags @code{-c} and @code{-s} cannot be used together.
3770 @kindex taas
3771 @cindex apply command to all threads (ignoring errors and empty output)
3772 @item taas [@var{option}]@dots{} @var{command}
3773 Shortcut for @code{thread apply all -s [@var{option}]@dots{} @var{command}}.
3774 Applies @var{command} on all threads, ignoring errors and empty output.
3776 The @code{taas} command accepts the same options as the @code{thread
3777 apply all} command.  @xref{thread apply all}.
3779 @kindex tfaas
3780 @cindex apply a command to all frames of all threads (ignoring errors and empty output)
3781 @item tfaas [@var{option}]@dots{} @var{command}
3782 Shortcut for @code{thread apply all -s -- frame apply all -s [@var{option}]@dots{} @var{command}}.
3783 Applies @var{command} on all frames of all threads, ignoring errors
3784 and empty output.  Note that the flag @code{-s} is specified twice:
3785 The first @code{-s} ensures that @code{thread apply} only shows the thread
3786 information of the threads for which @code{frame apply} produces
3787 some output.  The second @code{-s} is needed to ensure that @code{frame
3788 apply} shows the frame information of a frame only if the
3789 @var{command} successfully produced some output.
3791 It can for example be used to print a local variable or a function
3792 argument without knowing the thread or frame where this variable or argument
3793 is, using:
3794 @smallexample
3795 (@value{GDBP}) tfaas p some_local_var_i_do_not_remember_where_it_is
3796 @end smallexample
3798 The @code{tfaas} command accepts the same options as the @code{frame
3799 apply} command.  @xref{Frame Apply,,frame apply}.
3801 @kindex thread name
3802 @cindex name a thread
3803 @item thread name [@var{name}]
3804 This command assigns a name to the current thread.  If no argument is
3805 given, any existing user-specified name is removed.  The thread name
3806 appears in the @samp{info threads} display.
3808 On some systems, such as @sc{gnu}/Linux, @value{GDBN} is able to
3809 determine the name of the thread as given by the OS.  On these
3810 systems, a name specified with @samp{thread name} will override the
3811 system-give name, and removing the user-specified name will cause
3812 @value{GDBN} to once again display the system-specified name.
3814 @kindex thread find
3815 @cindex search for a thread
3816 @item thread find [@var{regexp}]
3817 Search for and display thread ids whose name or @var{systag}
3818 matches the supplied regular expression.
3820 As well as being the complement to the @samp{thread name} command, 
3821 this command also allows you to identify a thread by its target 
3822 @var{systag}.  For instance, on @sc{gnu}/Linux, the target @var{systag}
3823 is the LWP id.
3825 @smallexample
3826 (@value{GDBN}) thread find 26688
3827 Thread 4 has target id 'Thread 0x41e02940 (LWP 26688)'
3828 (@value{GDBN}) info thread 4
3829   Id   Target Id         Frame 
3830   4    Thread 0x41e02940 (LWP 26688) 0x00000031ca6cd372 in select ()
3831 @end smallexample
3833 @kindex set print thread-events
3834 @cindex print messages on thread start and exit
3835 @item set print thread-events
3836 @itemx set print thread-events on
3837 @itemx set print thread-events off
3838 The @code{set print thread-events} command allows you to enable or
3839 disable printing of messages when @value{GDBN} notices that new threads have
3840 started or that threads have exited.  By default, these messages will
3841 be printed if detection of these events is supported by the target.
3842 Note that these messages cannot be disabled on all targets.
3844 @kindex show print thread-events
3845 @item show print thread-events
3846 Show whether messages will be printed when @value{GDBN} detects that threads
3847 have started and exited.
3848 @end table
3850 @xref{Thread Stops,,Stopping and Starting Multi-thread Programs}, for
3851 more information about how @value{GDBN} behaves when you stop and start
3852 programs with multiple threads.
3854 @xref{Set Watchpoints,,Setting Watchpoints}, for information about
3855 watchpoints in programs with multiple threads.
3857 @anchor{set libthread-db-search-path}
3858 @table @code
3859 @kindex set libthread-db-search-path
3860 @cindex search path for @code{libthread_db}
3861 @item set libthread-db-search-path @r{[}@var{path}@r{]}
3862 If this variable is set, @var{path} is a colon-separated list of
3863 directories @value{GDBN} will use to search for @code{libthread_db}.
3864 If you omit @var{path}, @samp{libthread-db-search-path} will be reset to
3865 its default value (@code{$sdir:$pdir} on @sc{gnu}/Linux and Solaris systems).
3866 Internally, the default value comes from the @code{LIBTHREAD_DB_SEARCH_PATH}
3867 macro.
3869 On @sc{gnu}/Linux and Solaris systems, @value{GDBN} uses a ``helper''
3870 @code{libthread_db} library to obtain information about threads in the
3871 inferior process.  @value{GDBN} will use @samp{libthread-db-search-path}
3872 to find @code{libthread_db}.  @value{GDBN} also consults first if inferior
3873 specific thread debugging library loading is enabled
3874 by @samp{set auto-load libthread-db} (@pxref{libthread_db.so.1 file}).
3876 A special entry @samp{$sdir} for @samp{libthread-db-search-path}
3877 refers to the default system directories that are
3878 normally searched for loading shared libraries.  The @samp{$sdir} entry
3879 is the only kind not needing to be enabled by @samp{set auto-load libthread-db}
3880 (@pxref{libthread_db.so.1 file}).
3882 A special entry @samp{$pdir} for @samp{libthread-db-search-path}
3883 refers to the directory from which @code{libpthread}
3884 was loaded in the inferior process.
3886 For any @code{libthread_db} library @value{GDBN} finds in above directories,
3887 @value{GDBN} attempts to initialize it with the current inferior process.
3888 If this initialization fails (which could happen because of a version
3889 mismatch between @code{libthread_db} and @code{libpthread}), @value{GDBN}
3890 will unload @code{libthread_db}, and continue with the next directory.
3891 If none of @code{libthread_db} libraries initialize successfully,
3892 @value{GDBN} will issue a warning and thread debugging will be disabled.
3894 Setting @code{libthread-db-search-path} is currently implemented
3895 only on some platforms.
3897 @kindex show libthread-db-search-path 
3898 @item show libthread-db-search-path 
3899 Display current libthread_db search path.
3901 @kindex set debug libthread-db
3902 @kindex show debug libthread-db
3903 @cindex debugging @code{libthread_db}
3904 @item set debug libthread-db
3905 @itemx show debug libthread-db
3906 Turns on or off display of @code{libthread_db}-related events.
3907 Use @code{1} to enable, @code{0} to disable.
3909 @kindex set debug threads
3910 @kindex show debug threads
3911 @cindex debugging @code{threads}
3912 @item set debug threads @r{[}on@r{|}off@r{]}
3913 @itemx show debug threads
3914 When @samp{on} @value{GDBN} will print additional messages when
3915 threads are created and deleted.
3916 @end table
3918 @node Forks
3919 @section Debugging Forks
3921 @cindex fork, debugging programs which call
3922 @cindex multiple processes
3923 @cindex processes, multiple
3924 On most systems, @value{GDBN} has no special support for debugging
3925 programs which create additional processes using the @code{fork}
3926 function.  When a program forks, @value{GDBN} will continue to debug the
3927 parent process and the child process will run unimpeded.  If you have
3928 set a breakpoint in any code which the child then executes, the child
3929 will get a @code{SIGTRAP} signal which (unless it catches the signal)
3930 will cause it to terminate.
3932 However, if you want to debug the child process there is a workaround
3933 which isn't too painful.  Put a call to @code{sleep} in the code which
3934 the child process executes after the fork.  It may be useful to sleep
3935 only if a certain environment variable is set, or a certain file exists,
3936 so that the delay need not occur when you don't want to run @value{GDBN}
3937 on the child.  While the child is sleeping, use the @code{ps} program to
3938 get its process ID.  Then tell @value{GDBN} (a new invocation of
3939 @value{GDBN} if you are also debugging the parent process) to attach to
3940 the child process (@pxref{Attach}).  From that point on you can debug
3941 the child process just like any other process which you attached to.
3943 On some systems, @value{GDBN} provides support for debugging programs
3944 that create additional processes using the @code{fork} or @code{vfork}
3945 functions.  On @sc{gnu}/Linux platforms, this feature is supported
3946 with kernel version 2.5.46 and later.
3948 The fork debugging commands are supported in native mode and when
3949 connected to @code{gdbserver} in either @code{target remote} mode or
3950 @code{target extended-remote} mode.
3952 By default, when a program forks, @value{GDBN} will continue to debug
3953 the parent process and the child process will run unimpeded.
3955 If you want to follow the child process instead of the parent process,
3956 use the command @w{@code{set follow-fork-mode}}.
3958 @table @code
3959 @kindex set follow-fork-mode
3960 @item set follow-fork-mode @var{mode}
3961 Set the debugger response to a program call of @code{fork} or
3962 @code{vfork}.  A call to @code{fork} or @code{vfork} creates a new
3963 process.  The @var{mode} argument can be:
3965 @table @code
3966 @item parent
3967 The original process is debugged after a fork.  The child process runs
3968 unimpeded.  This is the default.
3970 @item child
3971 The new process is debugged after a fork.  The parent process runs
3972 unimpeded.
3974 @end table
3976 @kindex show follow-fork-mode
3977 @item show follow-fork-mode
3978 Display the current debugger response to a @code{fork} or @code{vfork} call.
3979 @end table
3981 @cindex debugging multiple processes
3982 On Linux, if you want to debug both the parent and child processes, use the
3983 command @w{@code{set detach-on-fork}}.
3985 @table @code
3986 @kindex set detach-on-fork
3987 @item set detach-on-fork @var{mode}
3988 Tells gdb whether to detach one of the processes after a fork, or
3989 retain debugger control over them both.
3991 @table @code
3992 @item on
3993 The child process (or parent process, depending on the value of
3994 @code{follow-fork-mode}) will be detached and allowed to run 
3995 independently.  This is the default.
3997 @item off
3998 Both processes will be held under the control of @value{GDBN}.
3999 One process (child or parent, depending on the value of 
4000 @code{follow-fork-mode}) is debugged as usual, while the other
4001 is held suspended.  
4003 @end table
4005 @kindex show detach-on-fork
4006 @item show detach-on-fork
4007 Show whether detach-on-fork mode is on/off.
4008 @end table
4010 If you choose to set @samp{detach-on-fork} mode off, then @value{GDBN}
4011 will retain control of all forked processes (including nested forks).
4012 You can list the forked processes under the control of @value{GDBN} by
4013 using the @w{@code{info inferiors}} command, and switch from one fork
4014 to another by using the @code{inferior} command (@pxref{Inferiors Connections and
4015 Programs, ,Debugging Multiple Inferiors Connections and Programs}).
4017 To quit debugging one of the forked processes, you can either detach
4018 from it by using the @w{@code{detach inferiors}} command (allowing it
4019 to run independently), or kill it using the @w{@code{kill inferiors}}
4020 command.  @xref{Inferiors Connections and Programs, ,Debugging
4021 Multiple Inferiors Connections and Programs}.
4023 If you ask to debug a child process and a @code{vfork} is followed by an
4024 @code{exec}, @value{GDBN} executes the new target up to the first
4025 breakpoint in the new target.  If you have a breakpoint set on
4026 @code{main} in your original program, the breakpoint will also be set on
4027 the child process's @code{main}.
4029 On some systems, when a child process is spawned by @code{vfork}, you
4030 cannot debug the child or parent until an @code{exec} call completes.
4032 If you issue a @code{run} command to @value{GDBN} after an @code{exec}
4033 call executes, the new target restarts.  To restart the parent
4034 process, use the @code{file} command with the parent executable name
4035 as its argument.  By default, after an @code{exec} call executes,
4036 @value{GDBN} discards the symbols of the previous executable image.
4037 You can change this behaviour with the @w{@code{set follow-exec-mode}}
4038 command.
4040 @table @code
4041 @kindex set follow-exec-mode
4042 @item set follow-exec-mode @var{mode}
4044 Set debugger response to a program call of @code{exec}.  An
4045 @code{exec} call replaces the program image of a process.
4047 @code{follow-exec-mode} can be:
4049 @table @code
4050 @item new
4051 @value{GDBN} creates a new inferior and rebinds the process to this
4052 new inferior.  The program the process was running before the
4053 @code{exec} call can be restarted afterwards by restarting the
4054 original inferior.
4056 For example:
4058 @smallexample
4059 (@value{GDBP}) info inferiors
4060 (gdb) info inferior
4061   Id   Description   Executable
4062 * 1    <null>        prog1
4063 (@value{GDBP}) run
4064 process 12020 is executing new program: prog2
4065 Program exited normally.
4066 (@value{GDBP}) info inferiors
4067   Id   Description   Executable
4068   1    <null>        prog1
4069 * 2    <null>        prog2
4070 @end smallexample
4072 @item same
4073 @value{GDBN} keeps the process bound to the same inferior.  The new
4074 executable image replaces the previous executable loaded in the
4075 inferior.  Restarting the inferior after the @code{exec} call, with
4076 e.g., the @code{run} command, restarts the executable the process was
4077 running after the @code{exec} call.  This is the default mode.
4079 For example:
4081 @smallexample
4082 (@value{GDBP}) info inferiors
4083   Id   Description   Executable
4084 * 1    <null>        prog1
4085 (@value{GDBP}) run
4086 process 12020 is executing new program: prog2
4087 Program exited normally.
4088 (@value{GDBP}) info inferiors
4089   Id   Description   Executable
4090 * 1    <null>        prog2
4091 @end smallexample
4093 @end table
4094 @end table
4096 @code{follow-exec-mode} is supported in native mode and
4097 @code{target extended-remote} mode.
4099 You can use the @code{catch} command to make @value{GDBN} stop whenever
4100 a @code{fork}, @code{vfork}, or @code{exec} call is made.  @xref{Set
4101 Catchpoints, ,Setting Catchpoints}.
4103 @node Checkpoint/Restart
4104 @section Setting a @emph{Bookmark} to Return to Later
4106 @cindex checkpoint
4107 @cindex restart
4108 @cindex bookmark
4109 @cindex snapshot of a process
4110 @cindex rewind program state
4112 On certain operating systems@footnote{Currently, only
4113 @sc{gnu}/Linux.}, @value{GDBN} is able to save a @dfn{snapshot} of a
4114 program's state, called a @dfn{checkpoint}, and come back to it
4115 later.
4117 Returning to a checkpoint effectively undoes everything that has
4118 happened in the program since the @code{checkpoint} was saved.  This
4119 includes changes in memory, registers, and even (within some limits)
4120 system state.  Effectively, it is like going back in time to the
4121 moment when the checkpoint was saved.
4123 Thus, if you're stepping thru a program and you think you're 
4124 getting close to the point where things go wrong, you can save
4125 a checkpoint.  Then, if you accidentally go too far and miss
4126 the critical statement, instead of having to restart your program
4127 from the beginning, you can just go back to the checkpoint and
4128 start again from there.
4130 This can be especially useful if it takes a lot of time or 
4131 steps to reach the point where you think the bug occurs.  
4133 To use the @code{checkpoint}/@code{restart} method of debugging:
4135 @table @code
4136 @kindex checkpoint
4137 @item checkpoint
4138 Save a snapshot of the debugged program's current execution state.
4139 The @code{checkpoint} command takes no arguments, but each checkpoint
4140 is assigned a small integer id, similar to a breakpoint id.
4142 @kindex info checkpoints
4143 @item info checkpoints
4144 List the checkpoints that have been saved in the current debugging
4145 session.  For each checkpoint, the following information will be
4146 listed:
4148 @table @code
4149 @item Checkpoint ID
4150 @item Process ID
4151 @item Code Address
4152 @item Source line, or label
4153 @end table
4155 @kindex restart @var{checkpoint-id}
4156 @item restart @var{checkpoint-id}
4157 Restore the program state that was saved as checkpoint number
4158 @var{checkpoint-id}.  All program variables, registers, stack frames
4159 etc.@:  will be returned to the values that they had when the checkpoint
4160 was saved.  In essence, gdb will ``wind back the clock'' to the point
4161 in time when the checkpoint was saved.
4163 Note that breakpoints, @value{GDBN} variables, command history etc.
4164 are not affected by restoring a checkpoint.  In general, a checkpoint
4165 only restores things that reside in the program being debugged, not in
4166 the debugger.
4168 @kindex delete checkpoint @var{checkpoint-id}
4169 @item delete checkpoint @var{checkpoint-id}
4170 Delete the previously-saved checkpoint identified by @var{checkpoint-id}.
4172 @end table
4174 Returning to a previously saved checkpoint will restore the user state
4175 of the program being debugged, plus a significant subset of the system
4176 (OS) state, including file pointers.  It won't ``un-write'' data from
4177 a file, but it will rewind the file pointer to the previous location,
4178 so that the previously written data can be overwritten.  For files
4179 opened in read mode, the pointer will also be restored so that the
4180 previously read data can be read again.
4182 Of course, characters that have been sent to a printer (or other
4183 external device) cannot be ``snatched back'', and characters received
4184 from eg.@: a serial device can be removed from internal program buffers,
4185 but they cannot be ``pushed back'' into the serial pipeline, ready to
4186 be received again.  Similarly, the actual contents of files that have
4187 been changed cannot be restored (at this time).
4189 However, within those constraints, you actually can ``rewind'' your
4190 program to a previously saved point in time, and begin debugging it
4191 again --- and you can change the course of events so as to debug a
4192 different execution path this time.
4194 @cindex checkpoints and process id
4195 Finally, there is one bit of internal program state that will be
4196 different when you return to a checkpoint --- the program's process
4197 id.  Each checkpoint will have a unique process id (or @var{pid}), 
4198 and each will be different from the program's original @var{pid}.
4199 If your program has saved a local copy of its process id, this could
4200 potentially pose a problem.
4202 @subsection A Non-obvious Benefit of Using Checkpoints
4204 On some systems such as @sc{gnu}/Linux, address space randomization
4205 is performed on new processes for security reasons.  This makes it 
4206 difficult or impossible to set a breakpoint, or watchpoint, on an
4207 absolute address if you have to restart the program, since the 
4208 absolute location of a symbol will change from one execution to the
4209 next.
4211 A checkpoint, however, is an @emph{identical} copy of a process. 
4212 Therefore if you create a checkpoint at (eg.@:) the start of main, 
4213 and simply return to that checkpoint instead of restarting the 
4214 process, you can avoid the effects of address randomization and
4215 your symbols will all stay in the same place.
4217 @node Stopping
4218 @chapter Stopping and Continuing
4220 The principal purposes of using a debugger are so that you can stop your
4221 program before it terminates; or so that, if your program runs into
4222 trouble, you can investigate and find out why.
4224 Inside @value{GDBN}, your program may stop for any of several reasons,
4225 such as a signal, a breakpoint, or reaching a new line after a
4226 @value{GDBN} command such as @code{step}.  You may then examine and
4227 change variables, set new breakpoints or remove old ones, and then
4228 continue execution.  Usually, the messages shown by @value{GDBN} provide
4229 ample explanation of the status of your program---but you can also
4230 explicitly request this information at any time.
4232 @table @code
4233 @kindex info program
4234 @item info program
4235 Display information about the status of your program: whether it is
4236 running or not, what process it is, and why it stopped.
4237 @end table
4239 @menu
4240 * Breakpoints::                 Breakpoints, watchpoints, and catchpoints
4241 * Continuing and Stepping::     Resuming execution
4242 * Skipping Over Functions and Files::
4243                                 Skipping over functions and files
4244 * Signals::                     Signals
4245 * Thread Stops::                Stopping and starting multi-thread programs
4246 @end menu
4248 @node Breakpoints
4249 @section Breakpoints, Watchpoints, and Catchpoints
4251 @cindex breakpoints
4252 A @dfn{breakpoint} makes your program stop whenever a certain point in
4253 the program is reached.  For each breakpoint, you can add conditions to
4254 control in finer detail whether your program stops.  You can set
4255 breakpoints with the @code{break} command and its variants (@pxref{Set
4256 Breaks, ,Setting Breakpoints}), to specify the place where your program
4257 should stop by line number, function name or exact address in the
4258 program.
4260 On some systems, you can set breakpoints in shared libraries before
4261 the executable is run.
4263 @cindex watchpoints
4264 @cindex data breakpoints
4265 @cindex memory tracing
4266 @cindex breakpoint on memory address
4267 @cindex breakpoint on variable modification
4268 A @dfn{watchpoint} is a special breakpoint that stops your program
4269 when the value of an expression changes.  The expression may be a value
4270 of a variable, or it could involve values of one or more variables
4271 combined by operators, such as @samp{a + b}.  This is sometimes called
4272 @dfn{data breakpoints}.  You must use a different command to set
4273 watchpoints (@pxref{Set Watchpoints, ,Setting Watchpoints}), but aside
4274 from that, you can manage a watchpoint like any other breakpoint: you
4275 enable, disable, and delete both breakpoints and watchpoints using the
4276 same commands.
4278 You can arrange to have values from your program displayed automatically
4279 whenever @value{GDBN} stops at a breakpoint.  @xref{Auto Display,,
4280 Automatic Display}.
4282 @cindex catchpoints
4283 @cindex breakpoint on events
4284 A @dfn{catchpoint} is another special breakpoint that stops your program
4285 when a certain kind of event occurs, such as the throwing of a C@t{++}
4286 exception or the loading of a library.  As with watchpoints, you use a
4287 different command to set a catchpoint (@pxref{Set Catchpoints, ,Setting
4288 Catchpoints}), but aside from that, you can manage a catchpoint like any
4289 other breakpoint.  (To stop when your program receives a signal, use the
4290 @code{handle} command; see @ref{Signals, ,Signals}.)
4292 @cindex breakpoint numbers
4293 @cindex numbers for breakpoints
4294 @value{GDBN} assigns a number to each breakpoint, watchpoint, or
4295 catchpoint when you create it; these numbers are successive integers
4296 starting with one.  In many of the commands for controlling various
4297 features of breakpoints you use the breakpoint number to say which
4298 breakpoint you want to change.  Each breakpoint may be @dfn{enabled} or
4299 @dfn{disabled}; if disabled, it has no effect on your program until you
4300 enable it again.
4302 @cindex breakpoint ranges
4303 @cindex breakpoint lists
4304 @cindex ranges of breakpoints
4305 @cindex lists of breakpoints
4306 Some @value{GDBN} commands accept a space-separated list of breakpoints
4307 on which to operate.  A list element can be either a single breakpoint number,
4308 like @samp{5}, or a range of such numbers, like @samp{5-7}.
4309 When a breakpoint list is given to a command, all breakpoints in that list
4310 are operated on.
4312 @menu
4313 * Set Breaks::                  Setting breakpoints
4314 * Set Watchpoints::             Setting watchpoints
4315 * Set Catchpoints::             Setting catchpoints
4316 * Delete Breaks::               Deleting breakpoints
4317 * Disabling::                   Disabling breakpoints
4318 * Conditions::                  Break conditions
4319 * Break Commands::              Breakpoint command lists
4320 * Dynamic Printf::              Dynamic printf
4321 * Save Breakpoints::            How to save breakpoints in a file
4322 * Static Probe Points::         Listing static probe points
4323 * Error in Breakpoints::        ``Cannot insert breakpoints''
4324 * Breakpoint-related Warnings:: ``Breakpoint address adjusted...''
4325 @end menu
4327 @node Set Breaks
4328 @subsection Setting Breakpoints
4330 @c FIXME LMB what does GDB do if no code on line of breakpt?
4331 @c       consider in particular declaration with/without initialization.
4333 @c FIXME 2 is there stuff on this already? break at fun start, already init?
4335 @kindex break
4336 @kindex b @r{(@code{break})}
4337 @vindex $bpnum@r{, convenience variable}
4338 @cindex latest breakpoint
4339 Breakpoints are set with the @code{break} command (abbreviated
4340 @code{b}).  The debugger convenience variable @samp{$bpnum} records the
4341 number of the breakpoint you've set most recently; see @ref{Convenience
4342 Vars,, Convenience Variables}, for a discussion of what you can do with
4343 convenience variables.
4345 @table @code
4346 @item break @var{location}
4347 Set a breakpoint at the given @var{location}, which can specify a
4348 function name, a line number, or an address of an instruction.
4349 (@xref{Specify Location}, for a list of all the possible ways to
4350 specify a @var{location}.)  The breakpoint will stop your program just
4351 before it executes any of the code in the specified @var{location}.
4353 When using source languages that permit overloading of symbols, such as
4354 C@t{++}, a function name may refer to more than one possible place to break.
4355 @xref{Ambiguous Expressions,,Ambiguous Expressions}, for a discussion of
4356 that situation.
4358 It is also possible to insert a breakpoint that will stop the program
4359 only if a specific thread (@pxref{Thread-Specific Breakpoints})
4360 or a specific task (@pxref{Ada Tasks}) hits that breakpoint.
4362 @item break
4363 When called without any arguments, @code{break} sets a breakpoint at
4364 the next instruction to be executed in the selected stack frame
4365 (@pxref{Stack, ,Examining the Stack}).  In any selected frame but the
4366 innermost, this makes your program stop as soon as control
4367 returns to that frame.  This is similar to the effect of a
4368 @code{finish} command in the frame inside the selected frame---except
4369 that @code{finish} does not leave an active breakpoint.  If you use
4370 @code{break} without an argument in the innermost frame, @value{GDBN} stops
4371 the next time it reaches the current location; this may be useful
4372 inside loops.
4374 @value{GDBN} normally ignores breakpoints when it resumes execution, until at
4375 least one instruction has been executed.  If it did not do this, you
4376 would be unable to proceed past a breakpoint without first disabling the
4377 breakpoint.  This rule applies whether or not the breakpoint already
4378 existed when your program stopped.
4380 @item break @dots{} if @var{cond}
4381 Set a breakpoint with condition @var{cond}; evaluate the expression
4382 @var{cond} each time the breakpoint is reached, and stop only if the
4383 value is nonzero---that is, if @var{cond} evaluates as true.
4384 @samp{@dots{}} stands for one of the possible arguments described
4385 above (or no argument) specifying where to break.  @xref{Conditions,
4386 ,Break Conditions}, for more information on breakpoint conditions.
4388 The breakpoint may be mapped to multiple locations.  If the breakpoint
4389 condition @var{cond} is invalid at some but not all of the locations,
4390 the locations for which the condition is invalid are disabled.  For
4391 example, @value{GDBN} reports below that two of the three locations
4392 are disabled.
4394 @smallexample
4395 (@value{GDBP}) break func if a == 10
4396 warning: failed to validate condition at location 0x11ce, disabling:
4397   No symbol "a" in current context.
4398 warning: failed to validate condition at location 0x11b6, disabling:
4399   No symbol "a" in current context.
4400 Breakpoint 1 at 0x11b6: func. (3 locations)
4401 @end smallexample
4403 Locations that are disabled because of the condition are denoted by an
4404 uppercase @code{N} in the output of the @code{info breakpoints}
4405 command:
4407 @smallexample
4408 (@value{GDBP}) info breakpoints
4409 Num     Type           Disp Enb Address            What
4410 1       breakpoint     keep y   <MULTIPLE>
4411         stop only if a == 10
4412 1.1                         N*  0x00000000000011b6 in ...
4413 1.2                         y   0x00000000000011c2 in ...
4414 1.3                         N*  0x00000000000011ce in ...
4415 (*): Breakpoint condition is invalid at this location.
4416 @end smallexample
4418 If the breakpoint condition @var{cond} is invalid in the context of
4419 @emph{all} the locations of the breakpoint, @value{GDBN} refuses to
4420 define the breakpoint.  For example, if variable @code{foo} is an
4421 undefined variable:
4423 @smallexample
4424 (@value{GDBP}) break func if foo
4425 No symbol "foo" in current context.
4426 @end smallexample
4428 @item break @dots{} -force-condition if @var{cond}
4429 There may be cases where the condition @var{cond} is invalid at all
4430 the current locations, but the user knows that it will be valid at a
4431 future location; for example, because of a library load.  In such
4432 cases, by using the @code{-force-condition} keyword before @samp{if},
4433 @value{GDBN} can be forced to define the breakpoint with the given
4434 condition expression instead of refusing it.
4436 @smallexample
4437 (@value{GDBP}) break func -force-condition if foo
4438 warning: failed to validate condition at location 1, disabling:
4439   No symbol "foo" in current context.
4440 warning: failed to validate condition at location 2, disabling:
4441   No symbol "foo" in current context.
4442 warning: failed to validate condition at location 3, disabling:
4443   No symbol "foo" in current context.
4444 Breakpoint 1 at 0x1158: test.c:18. (3 locations)
4445 @end smallexample
4447 This causes all the present locations where the breakpoint would
4448 otherwise be inserted, to be disabled, as seen in the example above.
4449 However, if there exist locations at which the condition is valid, the
4450 @code{-force-condition} keyword has no effect.
4452 @kindex tbreak
4453 @item tbreak @var{args}
4454 Set a breakpoint enabled only for one stop.  The @var{args} are the
4455 same as for the @code{break} command, and the breakpoint is set in the same
4456 way, but the breakpoint is automatically deleted after the first time your
4457 program stops there.  @xref{Disabling, ,Disabling Breakpoints}.
4459 @kindex hbreak
4460 @cindex hardware breakpoints
4461 @item hbreak @var{args}
4462 Set a hardware-assisted breakpoint.  The @var{args} are the same as for the
4463 @code{break} command and the breakpoint is set in the same way, but the
4464 breakpoint requires hardware support and some target hardware may not
4465 have this support.  The main purpose of this is EPROM/ROM code
4466 debugging, so you can set a breakpoint at an instruction without
4467 changing the instruction.  This can be used with the new trap-generation
4468 provided by SPARClite DSU and most x86-based targets.  These targets
4469 will generate traps when a program accesses some data or instruction
4470 address that is assigned to the debug registers.  However the hardware
4471 breakpoint registers can take a limited number of breakpoints.  For
4472 example, on the DSU, only two data breakpoints can be set at a time, and
4473 @value{GDBN} will reject this command if more than two are used.  Delete
4474 or disable unused hardware breakpoints before setting new ones
4475 (@pxref{Disabling, ,Disabling Breakpoints}).
4476 @xref{Conditions, ,Break Conditions}.
4477 For remote targets, you can restrict the number of hardware
4478 breakpoints @value{GDBN} will use, see @ref{set remote
4479 hardware-breakpoint-limit}.
4481 @kindex thbreak
4482 @item thbreak @var{args}
4483 Set a hardware-assisted breakpoint enabled only for one stop.  The @var{args}
4484 are the same as for the @code{hbreak} command and the breakpoint is set in
4485 the same way.  However, like the @code{tbreak} command,
4486 the breakpoint is automatically deleted after the
4487 first time your program stops there.  Also, like the @code{hbreak}
4488 command, the breakpoint requires hardware support and some target hardware
4489 may not have this support.  @xref{Disabling, ,Disabling Breakpoints}.
4490 See also @ref{Conditions, ,Break Conditions}.
4492 @kindex rbreak
4493 @cindex regular expression
4494 @cindex breakpoints at functions matching a regexp
4495 @cindex set breakpoints in many functions
4496 @item rbreak @var{regex}
4497 Set breakpoints on all functions matching the regular expression
4498 @var{regex}.  This command sets an unconditional breakpoint on all
4499 matches, printing a list of all breakpoints it set.  Once these
4500 breakpoints are set, they are treated just like the breakpoints set with
4501 the @code{break} command.  You can delete them, disable them, or make
4502 them conditional the same way as any other breakpoint.
4504 In programs using different languages, @value{GDBN} chooses the syntax
4505 to print the list of all breakpoints it sets according to the
4506 @samp{set language} value: using @samp{set language auto}
4507 (see @ref{Automatically, ,Set Language Automatically}) means to use the
4508 language of the breakpoint's function, other values mean to use
4509 the manually specified language (see @ref{Manually, ,Set Language Manually}).
4511 The syntax of the regular expression is the standard one used with tools
4512 like @file{grep}.  Note that this is different from the syntax used by
4513 shells, so for instance @code{foo*} matches all functions that include
4514 an @code{fo} followed by zero or more @code{o}s.  There is an implicit
4515 @code{.*} leading and trailing the regular expression you supply, so to
4516 match only functions that begin with @code{foo}, use @code{^foo}.
4518 @cindex non-member C@t{++} functions, set breakpoint in
4519 When debugging C@t{++} programs, @code{rbreak} is useful for setting
4520 breakpoints on overloaded functions that are not members of any special
4521 classes.
4523 @cindex set breakpoints on all functions
4524 The @code{rbreak} command can be used to set breakpoints in
4525 @strong{all} the functions in a program, like this:
4527 @smallexample
4528 (@value{GDBP}) rbreak .
4529 @end smallexample
4531 @item rbreak @var{file}:@var{regex}
4532 If @code{rbreak} is called with a filename qualification, it limits
4533 the search for functions matching the given regular expression to the
4534 specified @var{file}.  This can be used, for example, to set breakpoints on
4535 every function in a given file:
4537 @smallexample
4538 (@value{GDBP}) rbreak file.c:.
4539 @end smallexample
4541 The colon separating the filename qualifier from the regex may
4542 optionally be surrounded by spaces.
4544 @kindex info breakpoints
4545 @cindex @code{$_} and @code{info breakpoints}
4546 @item info breakpoints @r{[}@var{list}@dots{}@r{]}
4547 @itemx info break @r{[}@var{list}@dots{}@r{]}
4548 Print a table of all breakpoints, watchpoints, and catchpoints set and
4549 not deleted.  Optional argument @var{n} means print information only
4550 about the specified breakpoint(s) (or watchpoint(s) or catchpoint(s)).
4551 For each breakpoint, following columns are printed:
4553 @table @emph
4554 @item Breakpoint Numbers
4555 @item Type
4556 Breakpoint, watchpoint, or catchpoint.
4557 @item Disposition
4558 Whether the breakpoint is marked to be disabled or deleted when hit.
4559 @item Enabled or Disabled
4560 Enabled breakpoints are marked with @samp{y}.  @samp{n} marks breakpoints
4561 that are not enabled.
4562 @item Address
4563 Where the breakpoint is in your program, as a memory address.  For a
4564 pending breakpoint whose address is not yet known, this field will
4565 contain @samp{<PENDING>}.  Such breakpoint won't fire until a shared
4566 library that has the symbol or line referred by breakpoint is loaded.
4567 See below for details.  A breakpoint with several locations will
4568 have @samp{<MULTIPLE>} in this field---see below for details.
4569 @item What
4570 Where the breakpoint is in the source for your program, as a file and
4571 line number.  For a pending breakpoint, the original string passed to
4572 the breakpoint command will be listed as it cannot be resolved until
4573 the appropriate shared library is loaded in the future.
4574 @end table
4576 @noindent
4577 If a breakpoint is conditional, there are two evaluation modes: ``host'' and
4578 ``target''.  If mode is ``host'', breakpoint condition evaluation is done by
4579 @value{GDBN} on the host's side.  If it is ``target'', then the condition
4580 is evaluated by the target.  The @code{info break} command shows
4581 the condition on the line following the affected breakpoint, together with
4582 its condition evaluation mode in between parentheses.
4584 Breakpoint commands, if any, are listed after that.  A pending breakpoint is
4585 allowed to have a condition specified for it.  The condition is not parsed for
4586 validity until a shared library is loaded that allows the pending
4587 breakpoint to resolve to a valid location.
4589 @noindent
4590 @code{info break} with a breakpoint
4591 number @var{n} as argument lists only that breakpoint.  The
4592 convenience variable @code{$_} and the default examining-address for
4593 the @code{x} command are set to the address of the last breakpoint
4594 listed (@pxref{Memory, ,Examining Memory}).
4596 @noindent
4597 @code{info break} displays a count of the number of times the breakpoint
4598 has been hit.  This is especially useful in conjunction with the
4599 @code{ignore} command.  You can ignore a large number of breakpoint
4600 hits, look at the breakpoint info to see how many times the breakpoint
4601 was hit, and then run again, ignoring one less than that number.  This
4602 will get you quickly to the last hit of that breakpoint.
4604 @noindent
4605 For a breakpoints with an enable count (xref) greater than 1,
4606 @code{info break} also displays that count.
4608 @end table
4610 @value{GDBN} allows you to set any number of breakpoints at the same place in
4611 your program.  There is nothing silly or meaningless about this.  When
4612 the breakpoints are conditional, this is even useful
4613 (@pxref{Conditions, ,Break Conditions}).
4615 @cindex multiple locations, breakpoints
4616 @cindex breakpoints, multiple locations
4617 It is possible that a breakpoint corresponds to several locations
4618 in your program.  Examples of this situation are:
4620 @itemize @bullet
4621 @item
4622 Multiple functions in the program may have the same name.
4624 @item
4625 For a C@t{++} constructor, the @value{NGCC} compiler generates several
4626 instances of the function body, used in different cases.
4628 @item
4629 For a C@t{++} template function, a given line in the function can
4630 correspond to any number of instantiations.
4632 @item
4633 For an inlined function, a given source line can correspond to
4634 several places where that function is inlined.
4635 @end itemize
4637 In all those cases, @value{GDBN} will insert a breakpoint at all
4638 the relevant locations.
4640 A breakpoint with multiple locations is displayed in the breakpoint
4641 table using several rows---one header row, followed by one row for
4642 each breakpoint location.  The header row has @samp{<MULTIPLE>} in the
4643 address column.  The rows for individual locations contain the actual
4644 addresses for locations, and show the functions to which those
4645 locations belong.  The number column for a location is of the form
4646 @var{breakpoint-number}.@var{location-number}.
4648 For example:
4650 @smallexample
4651 Num     Type           Disp Enb  Address    What
4652 1       breakpoint     keep y    <MULTIPLE>
4653         stop only if i==1
4654         breakpoint already hit 1 time
4655 1.1                         y    0x080486a2 in void foo<int>() at t.cc:8
4656 1.2                         y    0x080486ca in void foo<double>() at t.cc:8
4657 @end smallexample
4659 You cannot delete the individual locations from a breakpoint.  However,
4660 each location can be individually enabled or disabled by passing
4661 @var{breakpoint-number}.@var{location-number} as argument to the
4662 @code{enable} and @code{disable} commands.  It's also possible to
4663 @code{enable} and @code{disable} a range of @var{location-number}
4664 locations using a @var{breakpoint-number} and two @var{location-number}s,
4665 in increasing order, separated by a hyphen, like
4666 @kbd{@var{breakpoint-number}.@var{location-number1}-@var{location-number2}},
4667 in which case @value{GDBN} acts on all the locations in the range (inclusive).
4668 Disabling or enabling the parent breakpoint (@pxref{Disabling}) affects
4669 all of the locations that belong to that breakpoint.
4671 Locations that are enabled while their parent breakpoint is disabled
4672 won't trigger a break, and are denoted by @code{y-} in the @code{Enb}
4673 column.  For example:
4675 @smallexample
4676 (@value{GDBP}) info breakpoints
4677 Num     Type           Disp Enb Address            What
4678 1       breakpoint     keep n   <MULTIPLE>
4679 1.1                         y-  0x00000000000011b6 in ...
4680 1.2                         y-  0x00000000000011c2 in ...
4681 1.3                         n   0x00000000000011ce in ...
4682 @end smallexample
4684 @cindex pending breakpoints
4685 It's quite common to have a breakpoint inside a shared library.
4686 Shared libraries can be loaded and unloaded explicitly,
4687 and possibly repeatedly, as the program is executed.  To support
4688 this use case, @value{GDBN} updates breakpoint locations whenever
4689 any shared library is loaded or unloaded.  Typically, you would
4690 set a breakpoint in a shared library at the beginning of your
4691 debugging session, when the library is not loaded, and when the
4692 symbols from the library are not available.  When you try to set
4693 breakpoint, @value{GDBN} will ask you if you want to set
4694 a so called @dfn{pending breakpoint}---breakpoint whose address
4695 is not yet resolved.
4697 After the program is run, whenever a new shared library is loaded,
4698 @value{GDBN} reevaluates all the breakpoints.  When a newly loaded
4699 shared library contains the symbol or line referred to by some
4700 pending breakpoint, that breakpoint is resolved and becomes an
4701 ordinary breakpoint.  When a library is unloaded, all breakpoints
4702 that refer to its symbols or source lines become pending again.
4704 This logic works for breakpoints with multiple locations, too.  For
4705 example, if you have a breakpoint in a C@t{++} template function, and
4706 a newly loaded shared library has an instantiation of that template,
4707 a new location is added to the list of locations for the breakpoint.
4709 Except for having unresolved address, pending breakpoints do not
4710 differ from regular breakpoints.  You can set conditions or commands,
4711 enable and disable them and perform other breakpoint operations.
4713 @value{GDBN} provides some additional commands for controlling what
4714 happens when the @samp{break} command cannot resolve breakpoint
4715 address specification to an address:
4717 @kindex set breakpoint pending
4718 @kindex show breakpoint pending
4719 @table @code
4720 @item set breakpoint pending auto
4721 This is the default behavior.  When @value{GDBN} cannot find the breakpoint
4722 location, it queries you whether a pending breakpoint should be created.
4724 @item set breakpoint pending on
4725 This indicates that an unrecognized breakpoint location should automatically
4726 result in a pending breakpoint being created.
4728 @item set breakpoint pending off
4729 This indicates that pending breakpoints are not to be created.  Any
4730 unrecognized breakpoint location results in an error.  This setting does
4731 not affect any pending breakpoints previously created.
4733 @item show breakpoint pending
4734 Show the current behavior setting for creating pending breakpoints.
4735 @end table
4737 The settings above only affect the @code{break} command and its
4738 variants.  Once breakpoint is set, it will be automatically updated
4739 as shared libraries are loaded and unloaded.
4741 @cindex automatic hardware breakpoints
4742 For some targets, @value{GDBN} can automatically decide if hardware or
4743 software breakpoints should be used, depending on whether the
4744 breakpoint address is read-only or read-write.  This applies to
4745 breakpoints set with the @code{break} command as well as to internal
4746 breakpoints set by commands like @code{next} and @code{finish}.  For
4747 breakpoints set with @code{hbreak}, @value{GDBN} will always use hardware
4748 breakpoints.
4750 You can control this automatic behaviour with the following commands:
4752 @kindex set breakpoint auto-hw
4753 @kindex show breakpoint auto-hw
4754 @table @code
4755 @item set breakpoint auto-hw on
4756 This is the default behavior.  When @value{GDBN} sets a breakpoint, it
4757 will try to use the target memory map to decide if software or hardware
4758 breakpoint must be used.
4760 @item set breakpoint auto-hw off
4761 This indicates @value{GDBN} should not automatically select breakpoint
4762 type.  If the target provides a memory map, @value{GDBN} will warn when
4763 trying to set software breakpoint at a read-only address.
4764 @end table
4766 @value{GDBN} normally implements breakpoints by replacing the program code
4767 at the breakpoint address with a special instruction, which, when
4768 executed, given control to the debugger.  By default, the program
4769 code is so modified only when the program is resumed.  As soon as
4770 the program stops, @value{GDBN} restores the original instructions.  This
4771 behaviour guards against leaving breakpoints inserted in the
4772 target should gdb abrubptly disconnect.  However, with slow remote
4773 targets, inserting and removing breakpoint can reduce the performance.
4774 This behavior can be controlled with the following commands::
4776 @kindex set breakpoint always-inserted
4777 @kindex show breakpoint always-inserted
4778 @table @code
4779 @item set breakpoint always-inserted off
4780 All breakpoints, including newly added by the user, are inserted in
4781 the target only when the target is resumed.  All breakpoints are
4782 removed from the target when it stops.  This is the default mode.
4784 @item set breakpoint always-inserted on
4785 Causes all breakpoints to be inserted in the target at all times.  If
4786 the user adds a new breakpoint, or changes an existing breakpoint, the
4787 breakpoints in the target are updated immediately.  A breakpoint is
4788 removed from the target only when breakpoint itself is deleted.
4789 @end table
4791 @value{GDBN} handles conditional breakpoints by evaluating these conditions
4792 when a breakpoint breaks.  If the condition is true, then the process being
4793 debugged stops, otherwise the process is resumed.
4795 If the target supports evaluating conditions on its end, @value{GDBN} may
4796 download the breakpoint, together with its conditions, to it.
4798 This feature can be controlled via the following commands:
4800 @kindex set breakpoint condition-evaluation
4801 @kindex show breakpoint condition-evaluation
4802 @table @code
4803 @item set breakpoint condition-evaluation host
4804 This option commands @value{GDBN} to evaluate the breakpoint
4805 conditions on the host's side.  Unconditional breakpoints are sent to
4806 the target which in turn receives the triggers and reports them back to GDB
4807 for condition evaluation.  This is the standard evaluation mode.
4809 @item set breakpoint condition-evaluation target
4810 This option commands @value{GDBN} to download breakpoint conditions
4811 to the target at the moment of their insertion.  The target
4812 is responsible for evaluating the conditional expression and reporting
4813 breakpoint stop events back to @value{GDBN} whenever the condition
4814 is true.  Due to limitations of target-side evaluation, some conditions
4815 cannot be evaluated there, e.g., conditions that depend on local data
4816 that is only known to the host.  Examples include
4817 conditional expressions involving convenience variables, complex types
4818 that cannot be handled by the agent expression parser and expressions
4819 that are too long to be sent over to the target, specially when the
4820 target is a remote system.  In these cases, the conditions will be
4821 evaluated by @value{GDBN}.
4823 @item set breakpoint condition-evaluation auto
4824 This is the default mode.  If the target supports evaluating breakpoint
4825 conditions on its end, @value{GDBN} will download breakpoint conditions to
4826 the target (limitations mentioned previously apply).  If the target does
4827 not support breakpoint condition evaluation, then @value{GDBN} will fallback
4828 to evaluating all these conditions on the host's side.
4829 @end table
4832 @cindex negative breakpoint numbers
4833 @cindex internal @value{GDBN} breakpoints
4834 @value{GDBN} itself sometimes sets breakpoints in your program for
4835 special purposes, such as proper handling of @code{longjmp} (in C
4836 programs).  These internal breakpoints are assigned negative numbers,
4837 starting with @code{-1}; @samp{info breakpoints} does not display them.
4838 You can see these breakpoints with the @value{GDBN} maintenance command
4839 @samp{maint info breakpoints} (@pxref{maint info breakpoints}).
4842 @node Set Watchpoints
4843 @subsection Setting Watchpoints
4845 @cindex setting watchpoints
4846 You can use a watchpoint to stop execution whenever the value of an
4847 expression changes, without having to predict a particular place where
4848 this may happen.  (This is sometimes called a @dfn{data breakpoint}.)
4849 The expression may be as simple as the value of a single variable, or
4850 as complex as many variables combined by operators.  Examples include:
4852 @itemize @bullet
4853 @item
4854 A reference to the value of a single variable.
4856 @item
4857 An address cast to an appropriate data type.  For example,
4858 @samp{*(int *)0x12345678} will watch a 4-byte region at the specified
4859 address (assuming an @code{int} occupies 4 bytes).
4861 @item
4862 An arbitrarily complex expression, such as @samp{a*b + c/d}.  The
4863 expression can use any operators valid in the program's native
4864 language (@pxref{Languages}).
4865 @end itemize
4867 You can set a watchpoint on an expression even if the expression can
4868 not be evaluated yet.  For instance, you can set a watchpoint on
4869 @samp{*global_ptr} before @samp{global_ptr} is initialized.
4870 @value{GDBN} will stop when your program sets @samp{global_ptr} and
4871 the expression produces a valid value.  If the expression becomes
4872 valid in some other way than changing a variable (e.g.@: if the memory
4873 pointed to by @samp{*global_ptr} becomes readable as the result of a
4874 @code{malloc} call), @value{GDBN} may not stop until the next time
4875 the expression changes.
4877 @cindex software watchpoints
4878 @cindex hardware watchpoints
4879 Depending on your system, watchpoints may be implemented in software or
4880 hardware.  @value{GDBN} does software watchpointing by single-stepping your
4881 program and testing the variable's value each time, which is hundreds of
4882 times slower than normal execution.  (But this may still be worth it, to
4883 catch errors where you have no clue what part of your program is the
4884 culprit.)
4886 On some systems, such as most PowerPC or x86-based targets,
4887 @value{GDBN} includes support for hardware watchpoints, which do not
4888 slow down the running of your program.
4890 @table @code
4891 @kindex watch
4892 @item watch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]} @r{[}task @var{task-id}@r{]}
4893 Set a watchpoint for an expression.  @value{GDBN} will break when the
4894 expression @var{expr} is written into by the program and its value
4895 changes.  The simplest (and the most popular) use of this command is
4896 to watch the value of a single variable:
4898 @smallexample
4899 (@value{GDBP}) watch foo
4900 @end smallexample
4902 If the command includes a @code{@r{[}thread @var{thread-id}@r{]}}
4903 argument, @value{GDBN} breaks only when the thread identified by
4904 @var{thread-id} changes the value of @var{expr}.  If any other threads
4905 change the value of @var{expr}, @value{GDBN} will not break.  Note
4906 that watchpoints restricted to a single thread in this way only work
4907 with Hardware Watchpoints.
4909 Similarly, if the @code{task} argument is given, then the watchpoint
4910 will be specific to the indicated Ada task (@pxref{Ada Tasks}).
4912 Ordinarily a watchpoint respects the scope of variables in @var{expr}
4913 (see below).  The @code{-location} argument tells @value{GDBN} to
4914 instead watch the memory referred to by @var{expr}.  In this case,
4915 @value{GDBN} will evaluate @var{expr}, take the address of the result,
4916 and watch the memory at that address.  The type of the result is used
4917 to determine the size of the watched memory.  If the expression's
4918 result does not have an address, then @value{GDBN} will print an
4919 error.
4921 The @code{@r{[}mask @var{maskvalue}@r{]}} argument allows creation
4922 of masked watchpoints, if the current architecture supports this
4923 feature (e.g., PowerPC Embedded architecture, see @ref{PowerPC
4924 Embedded}.)  A @dfn{masked watchpoint} specifies a mask in addition
4925 to an address to watch.  The mask specifies that some bits of an address
4926 (the bits which are reset in the mask) should be ignored when matching
4927 the address accessed by the inferior against the watchpoint address.
4928 Thus, a masked watchpoint watches many addresses simultaneously---those
4929 addresses whose unmasked bits are identical to the unmasked bits in the
4930 watchpoint address.  The @code{mask} argument implies @code{-location}.
4931 Examples:
4933 @smallexample
4934 (@value{GDBP}) watch foo mask 0xffff00ff
4935 (@value{GDBP}) watch *0xdeadbeef mask 0xffffff00
4936 @end smallexample
4938 @kindex rwatch
4939 @item rwatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
4940 Set a watchpoint that will break when the value of @var{expr} is read
4941 by the program.
4943 @kindex awatch
4944 @item awatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
4945 Set a watchpoint that will break when @var{expr} is either read from
4946 or written into by the program.
4948 @kindex info watchpoints @r{[}@var{list}@dots{}@r{]}
4949 @item info watchpoints @r{[}@var{list}@dots{}@r{]}
4950 This command prints a list of watchpoints, using the same format as
4951 @code{info break} (@pxref{Set Breaks}).
4952 @end table
4954 If you watch for a change in a numerically entered address you need to
4955 dereference it, as the address itself is just a constant number which will
4956 never change.  @value{GDBN} refuses to create a watchpoint that watches
4957 a never-changing value:
4959 @smallexample
4960 (@value{GDBP}) watch 0x600850
4961 Cannot watch constant value 0x600850.
4962 (@value{GDBP}) watch *(int *) 0x600850
4963 Watchpoint 1: *(int *) 6293584
4964 @end smallexample
4966 @value{GDBN} sets a @dfn{hardware watchpoint} if possible.  Hardware
4967 watchpoints execute very quickly, and the debugger reports a change in
4968 value at the exact instruction where the change occurs.  If @value{GDBN}
4969 cannot set a hardware watchpoint, it sets a software watchpoint, which
4970 executes more slowly and reports the change in value at the next
4971 @emph{statement}, not the instruction, after the change occurs.
4973 @cindex use only software watchpoints
4974 You can force @value{GDBN} to use only software watchpoints with the
4975 @kbd{set can-use-hw-watchpoints 0} command.  With this variable set to
4976 zero, @value{GDBN} will never try to use hardware watchpoints, even if
4977 the underlying system supports them.  (Note that hardware-assisted
4978 watchpoints that were set @emph{before} setting
4979 @code{can-use-hw-watchpoints} to zero will still use the hardware
4980 mechanism of watching expression values.)
4982 @table @code
4983 @item set can-use-hw-watchpoints
4984 @kindex set can-use-hw-watchpoints
4985 Set whether or not to use hardware watchpoints.
4987 @item show can-use-hw-watchpoints
4988 @kindex show can-use-hw-watchpoints
4989 Show the current mode of using hardware watchpoints.
4990 @end table
4992 For remote targets, you can restrict the number of hardware
4993 watchpoints @value{GDBN} will use, see @ref{set remote
4994 hardware-breakpoint-limit}.
4996 When you issue the @code{watch} command, @value{GDBN} reports
4998 @smallexample
4999 Hardware watchpoint @var{num}: @var{expr}
5000 @end smallexample
5002 @noindent
5003 if it was able to set a hardware watchpoint.
5005 Currently, the @code{awatch} and @code{rwatch} commands can only set
5006 hardware watchpoints, because accesses to data that don't change the
5007 value of the watched expression cannot be detected without examining
5008 every instruction as it is being executed, and @value{GDBN} does not do
5009 that currently.  If @value{GDBN} finds that it is unable to set a
5010 hardware breakpoint with the @code{awatch} or @code{rwatch} command, it
5011 will print a message like this:
5013 @smallexample
5014 Expression cannot be implemented with read/access watchpoint.
5015 @end smallexample
5017 Sometimes, @value{GDBN} cannot set a hardware watchpoint because the
5018 data type of the watched expression is wider than what a hardware
5019 watchpoint on the target machine can handle.  For example, some systems
5020 can only watch regions that are up to 4 bytes wide; on such systems you
5021 cannot set hardware watchpoints for an expression that yields a
5022 double-precision floating-point number (which is typically 8 bytes
5023 wide).  As a work-around, it might be possible to break the large region
5024 into a series of smaller ones and watch them with separate watchpoints.
5026 If you set too many hardware watchpoints, @value{GDBN} might be unable
5027 to insert all of them when you resume the execution of your program.
5028 Since the precise number of active watchpoints is unknown until such
5029 time as the program is about to be resumed, @value{GDBN} might not be
5030 able to warn you about this when you set the watchpoints, and the
5031 warning will be printed only when the program is resumed:
5033 @smallexample
5034 Hardware watchpoint @var{num}: Could not insert watchpoint
5035 @end smallexample
5037 @noindent
5038 If this happens, delete or disable some of the watchpoints.
5040 Watching complex expressions that reference many variables can also
5041 exhaust the resources available for hardware-assisted watchpoints.
5042 That's because @value{GDBN} needs to watch every variable in the
5043 expression with separately allocated resources.
5045 If you call a function interactively using @code{print} or @code{call},
5046 any watchpoints you have set will be inactive until @value{GDBN} reaches another
5047 kind of breakpoint or the call completes.
5049 @value{GDBN} automatically deletes watchpoints that watch local
5050 (automatic) variables, or expressions that involve such variables, when
5051 they go out of scope, that is, when the execution leaves the block in
5052 which these variables were defined.  In particular, when the program
5053 being debugged terminates, @emph{all} local variables go out of scope,
5054 and so only watchpoints that watch global variables remain set.  If you
5055 rerun the program, you will need to set all such watchpoints again.  One
5056 way of doing that would be to set a code breakpoint at the entry to the
5057 @code{main} function and when it breaks, set all the watchpoints.
5059 @cindex watchpoints and threads
5060 @cindex threads and watchpoints
5061 In multi-threaded programs, watchpoints will detect changes to the
5062 watched expression from every thread.
5064 @quotation
5065 @emph{Warning:} In multi-threaded programs, software watchpoints
5066 have only limited usefulness.  If @value{GDBN} creates a software
5067 watchpoint, it can only watch the value of an expression @emph{in a
5068 single thread}.  If you are confident that the expression can only
5069 change due to the current thread's activity (and if you are also
5070 confident that no other thread can become current), then you can use
5071 software watchpoints as usual.  However, @value{GDBN} may not notice
5072 when a non-current thread's activity changes the expression.  (Hardware
5073 watchpoints, in contrast, watch an expression in all threads.)
5074 @end quotation
5076 @xref{set remote hardware-watchpoint-limit}.
5078 @node Set Catchpoints
5079 @subsection Setting Catchpoints
5080 @cindex catchpoints, setting
5081 @cindex exception handlers
5082 @cindex event handling
5084 You can use @dfn{catchpoints} to cause the debugger to stop for certain
5085 kinds of program events, such as C@t{++} exceptions or the loading of a
5086 shared library.  Use the @code{catch} command to set a catchpoint.
5088 @table @code
5089 @kindex catch
5090 @item catch @var{event}
5091 Stop when @var{event} occurs.  The @var{event} can be any of the following:
5093 @table @code
5094 @item throw @r{[}@var{regexp}@r{]}
5095 @itemx rethrow @r{[}@var{regexp}@r{]}
5096 @itemx catch @r{[}@var{regexp}@r{]}
5097 @kindex catch throw
5098 @kindex catch rethrow
5099 @kindex catch catch
5100 @cindex stop on C@t{++} exceptions
5101 The throwing, re-throwing, or catching of a C@t{++} exception.
5103 If @var{regexp} is given, then only exceptions whose type matches the
5104 regular expression will be caught.
5106 @vindex $_exception@r{, convenience variable}
5107 The convenience variable @code{$_exception} is available at an
5108 exception-related catchpoint, on some systems.  This holds the
5109 exception being thrown.
5111 There are currently some limitations to C@t{++} exception handling in
5112 @value{GDBN}:
5114 @itemize @bullet
5115 @item
5116 The support for these commands is system-dependent.  Currently, only
5117 systems using the @samp{gnu-v3} C@t{++} ABI (@pxref{ABI}) are
5118 supported.
5120 @item
5121 The regular expression feature and the @code{$_exception} convenience
5122 variable rely on the presence of some SDT probes in @code{libstdc++}.
5123 If these probes are not present, then these features cannot be used.
5124 These probes were first available in the GCC 4.8 release, but whether
5125 or not they are available in your GCC also depends on how it was
5126 built.
5128 @item
5129 The @code{$_exception} convenience variable is only valid at the
5130 instruction at which an exception-related catchpoint is set.
5132 @item
5133 When an exception-related catchpoint is hit, @value{GDBN} stops at a
5134 location in the system library which implements runtime exception
5135 support for C@t{++}, usually @code{libstdc++}.  You can use @code{up}
5136 (@pxref{Selection}) to get to your code.
5138 @item
5139 If you call a function interactively, @value{GDBN} normally returns
5140 control to you when the function has finished executing.  If the call
5141 raises an exception, however, the call may bypass the mechanism that
5142 returns control to you and cause your program either to abort or to
5143 simply continue running until it hits a breakpoint, catches a signal
5144 that @value{GDBN} is listening for, or exits.  This is the case even if
5145 you set a catchpoint for the exception; catchpoints on exceptions are
5146 disabled within interactive calls.  @xref{Calling}, for information on
5147 controlling this with @code{set unwind-on-terminating-exception}.
5149 @item
5150 You cannot raise an exception interactively.
5152 @item
5153 You cannot install an exception handler interactively.
5154 @end itemize
5156 @item exception @r{[}@var{name}@r{]}
5157 @kindex catch exception
5158 @cindex Ada exception catching
5159 @cindex catch Ada exceptions
5160 An Ada exception being raised.  If an exception name is specified
5161 at the end of the command (eg @code{catch exception Program_Error}),
5162 the debugger will stop only when this specific exception is raised.
5163 Otherwise, the debugger stops execution when any Ada exception is raised.
5165 When inserting an exception catchpoint on a user-defined exception whose
5166 name is identical to one of the exceptions defined by the language, the
5167 fully qualified name must be used as the exception name.  Otherwise,
5168 @value{GDBN} will assume that it should stop on the pre-defined exception
5169 rather than the user-defined one.  For instance, assuming an exception
5170 called @code{Constraint_Error} is defined in package @code{Pck}, then
5171 the command to use to catch such exceptions is @kbd{catch exception
5172 Pck.Constraint_Error}.
5174 @vindex $_ada_exception@r{, convenience variable}
5175 The convenience variable @code{$_ada_exception} holds the address of
5176 the exception being thrown.  This can be useful when setting a
5177 condition for such a catchpoint.
5179 @item exception unhandled
5180 @kindex catch exception unhandled
5181 An exception that was raised but is not handled by the program.  The
5182 convenience variable @code{$_ada_exception} is set as for @code{catch
5183 exception}.
5185 @item handlers @r{[}@var{name}@r{]}
5186 @kindex catch handlers
5187 @cindex Ada exception handlers catching
5188 @cindex catch Ada exceptions when handled
5189 An Ada exception being handled.  If an exception name is
5190 specified at the end of the command
5191  (eg @kbd{catch handlers Program_Error}), the debugger will stop
5192 only when this specific exception is handled.
5193 Otherwise, the debugger stops execution when any Ada exception is handled.
5195 When inserting a handlers catchpoint on a user-defined
5196 exception whose name is identical to one of the exceptions
5197 defined by the language, the fully qualified name must be used
5198 as the exception name.  Otherwise, @value{GDBN} will assume that it
5199 should stop on the pre-defined exception rather than the
5200 user-defined one.  For instance, assuming an exception called
5201  @code{Constraint_Error} is defined in package @code{Pck}, then the
5202 command to use to catch such exceptions handling is
5203 @kbd{catch handlers Pck.Constraint_Error}.
5205 The convenience variable @code{$_ada_exception} is set as for
5206 @code{catch exception}.
5208 @item assert
5209 @kindex catch assert
5210 A failed Ada assertion.  Note that the convenience variable
5211 @code{$_ada_exception} is @emph{not} set by this catchpoint.
5213 @item exec
5214 @kindex catch exec
5215 @cindex break on fork/exec
5216 A call to @code{exec}.
5218 @anchor{catch syscall}
5219 @item syscall
5220 @itemx syscall @r{[}@var{name} @r{|} @var{number} @r{|} @r{group:}@var{groupname} @r{|} @r{g:}@var{groupname}@r{]} @dots{}
5221 @kindex catch syscall
5222 @cindex break on a system call.
5223 A call to or return from a system call, a.k.a.@: @dfn{syscall}.  A
5224 syscall is a mechanism for application programs to request a service
5225 from the operating system (OS) or one of the OS system services.
5226 @value{GDBN} can catch some or all of the syscalls issued by the
5227 debuggee, and show the related information for each syscall.  If no
5228 argument is specified, calls to and returns from all system calls
5229 will be caught.
5231 @var{name} can be any system call name that is valid for the
5232 underlying OS.  Just what syscalls are valid depends on the OS.  On
5233 GNU and Unix systems, you can find the full list of valid syscall
5234 names on @file{/usr/include/asm/unistd.h}.
5236 @c For MS-Windows, the syscall names and the corresponding numbers
5237 @c can be found, e.g., on this URL:
5238 @c http://www.metasploit.com/users/opcode/syscalls.html
5239 @c but we don't support Windows syscalls yet.
5241 Normally, @value{GDBN} knows in advance which syscalls are valid for
5242 each OS, so you can use the @value{GDBN} command-line completion
5243 facilities (@pxref{Completion,, command completion}) to list the
5244 available choices.
5246 You may also specify the system call numerically.  A syscall's
5247 number is the value passed to the OS's syscall dispatcher to
5248 identify the requested service.  When you specify the syscall by its
5249 name, @value{GDBN} uses its database of syscalls to convert the name
5250 into the corresponding numeric code, but using the number directly
5251 may be useful if @value{GDBN}'s database does not have the complete
5252 list of syscalls on your system (e.g., because @value{GDBN} lags
5253 behind the OS upgrades).
5255 You may specify a group of related syscalls to be caught at once using
5256 the @code{group:} syntax (@code{g:} is a shorter equivalent).  For
5257 instance, on some platforms @value{GDBN} allows you to catch all
5258 network related syscalls, by passing the argument @code{group:network}
5259 to @code{catch syscall}.  Note that not all syscall groups are
5260 available in every system.  You can use the command completion
5261 facilities (@pxref{Completion,, command completion}) to list the
5262 syscall groups available on your environment.
5264 The example below illustrates how this command works if you don't provide
5265 arguments to it:
5267 @smallexample
5268 (@value{GDBP}) catch syscall
5269 Catchpoint 1 (syscall)
5270 (@value{GDBP}) r
5271 Starting program: /tmp/catch-syscall
5273 Catchpoint 1 (call to syscall 'close'), \
5274            0xffffe424 in __kernel_vsyscall ()
5275 (@value{GDBP}) c
5276 Continuing.
5278 Catchpoint 1 (returned from syscall 'close'), \
5279         0xffffe424 in __kernel_vsyscall ()
5280 (@value{GDBP})
5281 @end smallexample
5283 Here is an example of catching a system call by name:
5285 @smallexample
5286 (@value{GDBP}) catch syscall chroot
5287 Catchpoint 1 (syscall 'chroot' [61])
5288 (@value{GDBP}) r
5289 Starting program: /tmp/catch-syscall
5291 Catchpoint 1 (call to syscall 'chroot'), \
5292                    0xffffe424 in __kernel_vsyscall ()
5293 (@value{GDBP}) c
5294 Continuing.
5296 Catchpoint 1 (returned from syscall 'chroot'), \
5297         0xffffe424 in __kernel_vsyscall ()
5298 (@value{GDBP})
5299 @end smallexample
5301 An example of specifying a system call numerically.  In the case
5302 below, the syscall number has a corresponding entry in the XML
5303 file, so @value{GDBN} finds its name and prints it:
5305 @smallexample
5306 (@value{GDBP}) catch syscall 252
5307 Catchpoint 1 (syscall(s) 'exit_group')
5308 (@value{GDBP}) r
5309 Starting program: /tmp/catch-syscall
5311 Catchpoint 1 (call to syscall 'exit_group'), \
5312                    0xffffe424 in __kernel_vsyscall ()
5313 (@value{GDBP}) c
5314 Continuing.
5316 Program exited normally.
5317 (@value{GDBP})
5318 @end smallexample
5320 Here is an example of catching a syscall group:
5322 @smallexample
5323 (@value{GDBP}) catch syscall group:process
5324 Catchpoint 1 (syscalls 'exit' [1] 'fork' [2] 'waitpid' [7]
5325 'execve' [11] 'wait4' [114] 'clone' [120] 'vfork' [190]
5326 'exit_group' [252] 'waitid' [284] 'unshare' [310])
5327 (@value{GDBP}) r
5328 Starting program: /tmp/catch-syscall
5330 Catchpoint 1 (call to syscall fork), 0x00007ffff7df4e27 in open64 ()
5331    from /lib64/ld-linux-x86-64.so.2
5333 (@value{GDBP}) c
5334 Continuing.
5335 @end smallexample
5337 However, there can be situations when there is no corresponding name
5338 in XML file for that syscall number.  In this case, @value{GDBN} prints
5339 a warning message saying that it was not able to find the syscall name,
5340 but the catchpoint will be set anyway.  See the example below:
5342 @smallexample
5343 (@value{GDBP}) catch syscall 764
5344 warning: The number '764' does not represent a known syscall.
5345 Catchpoint 2 (syscall 764)
5346 (@value{GDBP})
5347 @end smallexample
5349 If you configure @value{GDBN} using the @samp{--without-expat} option,
5350 it will not be able to display syscall names.  Also, if your
5351 architecture does not have an XML file describing its system calls,
5352 you will not be able to see the syscall names.  It is important to
5353 notice that these two features are used for accessing the syscall
5354 name database.  In either case, you will see a warning like this:
5356 @smallexample
5357 (@value{GDBP}) catch syscall
5358 warning: Could not open "syscalls/i386-linux.xml"
5359 warning: Could not load the syscall XML file 'syscalls/i386-linux.xml'.
5360 GDB will not be able to display syscall names.
5361 Catchpoint 1 (syscall)
5362 (@value{GDBP})
5363 @end smallexample
5365 Of course, the file name will change depending on your architecture and system.
5367 Still using the example above, you can also try to catch a syscall by its
5368 number.  In this case, you would see something like:
5370 @smallexample
5371 (@value{GDBP}) catch syscall 252
5372 Catchpoint 1 (syscall(s) 252)
5373 @end smallexample
5375 Again, in this case @value{GDBN} would not be able to display syscall's names.
5377 @item fork
5378 @kindex catch fork
5379 A call to @code{fork}.
5381 @item vfork
5382 @kindex catch vfork
5383 A call to @code{vfork}.
5385 @item load @r{[}@var{regexp}@r{]}
5386 @itemx unload @r{[}@var{regexp}@r{]}
5387 @kindex catch load
5388 @kindex catch unload
5389 The loading or unloading of a shared library.  If @var{regexp} is
5390 given, then the catchpoint will stop only if the regular expression
5391 matches one of the affected libraries.
5393 @item signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
5394 @kindex catch signal
5395 The delivery of a signal.
5397 With no arguments, this catchpoint will catch any signal that is not
5398 used internally by @value{GDBN}, specifically, all signals except
5399 @samp{SIGTRAP} and @samp{SIGINT}.
5401 With the argument @samp{all}, all signals, including those used by
5402 @value{GDBN}, will be caught.  This argument cannot be used with other
5403 signal names.
5405 Otherwise, the arguments are a list of signal names as given to
5406 @code{handle} (@pxref{Signals}).  Only signals specified in this list
5407 will be caught.
5409 One reason that @code{catch signal} can be more useful than
5410 @code{handle} is that you can attach commands and conditions to the
5411 catchpoint.
5413 When a signal is caught by a catchpoint, the signal's @code{stop} and
5414 @code{print} settings, as specified by @code{handle}, are ignored.
5415 However, whether the signal is still delivered to the inferior depends
5416 on the @code{pass} setting; this can be changed in the catchpoint's
5417 commands.
5419 @end table
5421 @item tcatch @var{event}
5422 @kindex tcatch
5423 Set a catchpoint that is enabled only for one stop.  The catchpoint is
5424 automatically deleted after the first time the event is caught.
5426 @end table
5428 Use the @code{info break} command to list the current catchpoints.
5431 @node Delete Breaks
5432 @subsection Deleting Breakpoints
5434 @cindex clearing breakpoints, watchpoints, catchpoints
5435 @cindex deleting breakpoints, watchpoints, catchpoints
5436 It is often necessary to eliminate a breakpoint, watchpoint, or
5437 catchpoint once it has done its job and you no longer want your program
5438 to stop there.  This is called @dfn{deleting} the breakpoint.  A
5439 breakpoint that has been deleted no longer exists; it is forgotten.
5441 With the @code{clear} command you can delete breakpoints according to
5442 where they are in your program.  With the @code{delete} command you can
5443 delete individual breakpoints, watchpoints, or catchpoints by specifying
5444 their breakpoint numbers.
5446 It is not necessary to delete a breakpoint to proceed past it.  @value{GDBN}
5447 automatically ignores breakpoints on the first instruction to be executed
5448 when you continue execution without changing the execution address.
5450 @table @code
5451 @kindex clear
5452 @item clear
5453 Delete any breakpoints at the next instruction to be executed in the
5454 selected stack frame (@pxref{Selection, ,Selecting a Frame}).  When
5455 the innermost frame is selected, this is a good way to delete a
5456 breakpoint where your program just stopped.
5458 @item clear @var{location}
5459 Delete any breakpoints set at the specified @var{location}.
5460 @xref{Specify Location}, for the various forms of @var{location}; the
5461 most useful ones are listed below:
5463 @table @code
5464 @item clear @var{function}
5465 @itemx clear @var{filename}:@var{function}
5466 Delete any breakpoints set at entry to the named @var{function}.
5468 @item clear @var{linenum}
5469 @itemx clear @var{filename}:@var{linenum}
5470 Delete any breakpoints set at or within the code of the specified
5471 @var{linenum} of the specified @var{filename}.
5472 @end table
5474 @cindex delete breakpoints
5475 @kindex delete
5476 @kindex d @r{(@code{delete})}
5477 @item delete @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5478 Delete the breakpoints, watchpoints, or catchpoints of the breakpoint
5479 list specified as argument.  If no argument is specified, delete all
5480 breakpoints (@value{GDBN} asks confirmation, unless you have @code{set
5481 confirm off}).  You can abbreviate this command as @code{d}.
5482 @end table
5484 @node Disabling
5485 @subsection Disabling Breakpoints
5487 @cindex enable/disable a breakpoint
5488 Rather than deleting a breakpoint, watchpoint, or catchpoint, you might
5489 prefer to @dfn{disable} it.  This makes the breakpoint inoperative as if
5490 it had been deleted, but remembers the information on the breakpoint so
5491 that you can @dfn{enable} it again later.
5493 You disable and enable breakpoints, watchpoints, and catchpoints with
5494 the @code{enable} and @code{disable} commands, optionally specifying
5495 one or more breakpoint numbers as arguments.  Use @code{info break} to
5496 print a list of all breakpoints, watchpoints, and catchpoints if you
5497 do not know which numbers to use.
5499 Disabling and enabling a breakpoint that has multiple locations
5500 affects all of its locations.
5502 A breakpoint, watchpoint, or catchpoint can have any of several
5503 different states of enablement:
5505 @itemize @bullet
5506 @item
5507 Enabled.  The breakpoint stops your program.  A breakpoint set
5508 with the @code{break} command starts out in this state.
5509 @item
5510 Disabled.  The breakpoint has no effect on your program.
5511 @item
5512 Enabled once.  The breakpoint stops your program, but then becomes
5513 disabled.
5514 @item
5515 Enabled for a count.  The breakpoint stops your program for the next
5516 N times, then becomes disabled.
5517 @item
5518 Enabled for deletion.  The breakpoint stops your program, but
5519 immediately after it does so it is deleted permanently.  A breakpoint
5520 set with the @code{tbreak} command starts out in this state.
5521 @end itemize
5523 You can use the following commands to enable or disable breakpoints,
5524 watchpoints, and catchpoints:
5526 @table @code
5527 @kindex disable
5528 @kindex dis @r{(@code{disable})}
5529 @item disable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5530 Disable the specified breakpoints---or all breakpoints, if none are
5531 listed.  A disabled breakpoint has no effect but is not forgotten.  All
5532 options such as ignore-counts, conditions and commands are remembered in
5533 case the breakpoint is enabled again later.  You may abbreviate
5534 @code{disable} as @code{dis}.
5536 @kindex enable
5537 @item enable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5538 Enable the specified breakpoints (or all defined breakpoints).  They
5539 become effective once again in stopping your program.
5541 @item enable @r{[}breakpoints@r{]} once @var{list}@dots{}
5542 Enable the specified breakpoints temporarily.  @value{GDBN} disables any
5543 of these breakpoints immediately after stopping your program.
5545 @item enable @r{[}breakpoints@r{]} count @var{count} @var{list}@dots{}
5546 Enable the specified breakpoints temporarily.  @value{GDBN} records
5547 @var{count} with each of the specified breakpoints, and decrements a
5548 breakpoint's count when it is hit.  When any count reaches 0,
5549 @value{GDBN} disables that breakpoint.  If a breakpoint has an ignore
5550 count (@pxref{Conditions, ,Break Conditions}), that will be
5551 decremented to 0 before @var{count} is affected.
5553 @item enable @r{[}breakpoints@r{]} delete @var{list}@dots{}
5554 Enable the specified breakpoints to work once, then die.  @value{GDBN}
5555 deletes any of these breakpoints as soon as your program stops there.
5556 Breakpoints set by the @code{tbreak} command start out in this state.
5557 @end table
5559 @c FIXME: I think the following ``Except for [...] @code{tbreak}'' is
5560 @c confusing: tbreak is also initially enabled.
5561 Except for a breakpoint set with @code{tbreak} (@pxref{Set Breaks,
5562 ,Setting Breakpoints}), breakpoints that you set are initially enabled;
5563 subsequently, they become disabled or enabled only when you use one of
5564 the commands above.  (The command @code{until} can set and delete a
5565 breakpoint of its own, but it does not change the state of your other
5566 breakpoints; see @ref{Continuing and Stepping, ,Continuing and
5567 Stepping}.)
5569 @node Conditions
5570 @subsection Break Conditions
5571 @cindex conditional breakpoints
5572 @cindex breakpoint conditions
5574 @c FIXME what is scope of break condition expr?  Context where wanted?
5575 @c      in particular for a watchpoint?
5576 The simplest sort of breakpoint breaks every time your program reaches a
5577 specified place.  You can also specify a @dfn{condition} for a
5578 breakpoint.  A condition is just a Boolean expression in your
5579 programming language (@pxref{Expressions, ,Expressions}).  A breakpoint with
5580 a condition evaluates the expression each time your program reaches it,
5581 and your program stops only if the condition is @emph{true}.
5583 This is the converse of using assertions for program validation; in that
5584 situation, you want to stop when the assertion is violated---that is,
5585 when the condition is false.  In C, if you want to test an assertion expressed
5586 by the condition @var{assert}, you should set the condition
5587 @samp{! @var{assert}} on the appropriate breakpoint.
5589 Conditions are also accepted for watchpoints; you may not need them,
5590 since a watchpoint is inspecting the value of an expression anyhow---but
5591 it might be simpler, say, to just set a watchpoint on a variable name,
5592 and specify a condition that tests whether the new value is an interesting
5593 one.
5595 Break conditions can have side effects, and may even call functions in
5596 your program.  This can be useful, for example, to activate functions
5597 that log program progress, or to use your own print functions to
5598 format special data structures.  The effects are completely predictable
5599 unless there is another enabled breakpoint at the same address.  (In
5600 that case, @value{GDBN} might see the other breakpoint first and stop your
5601 program without checking the condition of this one.)  Note that
5602 breakpoint commands are usually more convenient and flexible than break
5603 conditions for the
5604 purpose of performing side effects when a breakpoint is reached
5605 (@pxref{Break Commands, ,Breakpoint Command Lists}).
5607 Breakpoint conditions can also be evaluated on the target's side if
5608 the target supports it.  Instead of evaluating the conditions locally,
5609 @value{GDBN} encodes the expression into an agent expression
5610 (@pxref{Agent Expressions}) suitable for execution on the target,
5611 independently of @value{GDBN}.  Global variables become raw memory
5612 locations, locals become stack accesses, and so forth.
5614 In this case, @value{GDBN} will only be notified of a breakpoint trigger
5615 when its condition evaluates to true.  This mechanism may provide faster
5616 response times depending on the performance characteristics of the target
5617 since it does not need to keep @value{GDBN} informed about
5618 every breakpoint trigger, even those with false conditions.
5620 Break conditions can be specified when a breakpoint is set, by using
5621 @samp{if} in the arguments to the @code{break} command.  @xref{Set
5622 Breaks, ,Setting Breakpoints}.  They can also be changed at any time
5623 with the @code{condition} command.
5625 You can also use the @code{if} keyword with the @code{watch} command.
5626 The @code{catch} command does not recognize the @code{if} keyword;
5627 @code{condition} is the only way to impose a further condition on a
5628 catchpoint.
5630 @table @code
5631 @kindex condition
5632 @item condition @var{bnum} @var{expression}
5633 Specify @var{expression} as the break condition for breakpoint,
5634 watchpoint, or catchpoint number @var{bnum}.  After you set a condition,
5635 breakpoint @var{bnum} stops your program only if the value of
5636 @var{expression} is true (nonzero, in C).  When you use
5637 @code{condition}, @value{GDBN} checks @var{expression} immediately for
5638 syntactic correctness, and to determine whether symbols in it have
5639 referents in the context of your breakpoint.  If @var{expression} uses
5640 symbols not referenced in the context of the breakpoint, @value{GDBN}
5641 prints an error message:
5643 @smallexample
5644 No symbol "foo" in current context.
5645 @end smallexample
5647 @noindent
5648 @value{GDBN} does
5649 not actually evaluate @var{expression} at the time the @code{condition}
5650 command (or a command that sets a breakpoint with a condition, like
5651 @code{break if @dots{}}) is given, however.  @xref{Expressions, ,Expressions}.
5653 @item condition -force @var{bnum} @var{expression}
5654 When the @code{-force} flag is used, define the condition even if
5655 @var{expression} is invalid at all the current locations of breakpoint
5656 @var{bnum}.  This is similar to the @code{-force-condition} option
5657 of the @code{break} command.
5659 @item condition @var{bnum}
5660 Remove the condition from breakpoint number @var{bnum}.  It becomes
5661 an ordinary unconditional breakpoint.
5662 @end table
5664 @cindex ignore count (of breakpoint)
5665 A special case of a breakpoint condition is to stop only when the
5666 breakpoint has been reached a certain number of times.  This is so
5667 useful that there is a special way to do it, using the @dfn{ignore
5668 count} of the breakpoint.  Every breakpoint has an ignore count, which
5669 is an integer.  Most of the time, the ignore count is zero, and
5670 therefore has no effect.  But if your program reaches a breakpoint whose
5671 ignore count is positive, then instead of stopping, it just decrements
5672 the ignore count by one and continues.  As a result, if the ignore count
5673 value is @var{n}, the breakpoint does not stop the next @var{n} times
5674 your program reaches it.
5676 @table @code
5677 @kindex ignore
5678 @item ignore @var{bnum} @var{count}
5679 Set the ignore count of breakpoint number @var{bnum} to @var{count}.
5680 The next @var{count} times the breakpoint is reached, your program's
5681 execution does not stop; other than to decrement the ignore count, @value{GDBN}
5682 takes no action.
5684 To make the breakpoint stop the next time it is reached, specify
5685 a count of zero.
5687 When you use @code{continue} to resume execution of your program from a
5688 breakpoint, you can specify an ignore count directly as an argument to
5689 @code{continue}, rather than using @code{ignore}.  @xref{Continuing and
5690 Stepping,,Continuing and Stepping}.
5692 If a breakpoint has a positive ignore count and a condition, the
5693 condition is not checked.  Once the ignore count reaches zero,
5694 @value{GDBN} resumes checking the condition.
5696 You could achieve the effect of the ignore count with a condition such
5697 as @w{@samp{$foo-- <= 0}} using a debugger convenience variable that
5698 is decremented each time.  @xref{Convenience Vars, ,Convenience
5699 Variables}.
5700 @end table
5702 Ignore counts apply to breakpoints, watchpoints, and catchpoints.
5705 @node Break Commands
5706 @subsection Breakpoint Command Lists
5708 @cindex breakpoint commands
5709 You can give any breakpoint (or watchpoint or catchpoint) a series of
5710 commands to execute when your program stops due to that breakpoint.  For
5711 example, you might want to print the values of certain expressions, or
5712 enable other breakpoints.
5714 @table @code
5715 @kindex commands
5716 @kindex end@r{ (breakpoint commands)}
5717 @item commands @r{[}@var{list}@dots{}@r{]}
5718 @itemx @dots{} @var{command-list} @dots{}
5719 @itemx end
5720 Specify a list of commands for the given breakpoints.  The commands
5721 themselves appear on the following lines.  Type a line containing just
5722 @code{end} to terminate the commands.
5724 To remove all commands from a breakpoint, type @code{commands} and
5725 follow it immediately with @code{end}; that is, give no commands.
5727 With no argument, @code{commands} refers to the last breakpoint,
5728 watchpoint, or catchpoint set (not to the breakpoint most recently
5729 encountered).  If the most recent breakpoints were set with a single
5730 command, then the @code{commands} will apply to all the breakpoints
5731 set by that command.  This applies to breakpoints set by
5732 @code{rbreak}, and also applies when a single @code{break} command
5733 creates multiple breakpoints (@pxref{Ambiguous Expressions,,Ambiguous
5734 Expressions}).
5735 @end table
5737 Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
5738 disabled within a @var{command-list}.
5740 You can use breakpoint commands to start your program up again.  Simply
5741 use the @code{continue} command, or @code{step}, or any other command
5742 that resumes execution.
5744 Any other commands in the command list, after a command that resumes
5745 execution, are ignored.  This is because any time you resume execution
5746 (even with a simple @code{next} or @code{step}), you may encounter
5747 another breakpoint---which could have its own command list, leading to
5748 ambiguities about which list to execute.
5750 @kindex silent
5751 If the first command you specify in a command list is @code{silent}, the
5752 usual message about stopping at a breakpoint is not printed.  This may
5753 be desirable for breakpoints that are to print a specific message and
5754 then continue.  If none of the remaining commands print anything, you
5755 see no sign that the breakpoint was reached.  @code{silent} is
5756 meaningful only at the beginning of a breakpoint command list.
5758 The commands @code{echo}, @code{output}, and @code{printf} allow you to
5759 print precisely controlled output, and are often useful in silent
5760 breakpoints.  @xref{Output, ,Commands for Controlled Output}.
5762 For example, here is how you could use breakpoint commands to print the
5763 value of @code{x} at entry to @code{foo} whenever @code{x} is positive.
5765 @smallexample
5766 break foo if x>0
5767 commands
5768 silent
5769 printf "x is %d\n",x
5770 cont
5772 @end smallexample
5774 One application for breakpoint commands is to compensate for one bug so
5775 you can test for another.  Put a breakpoint just after the erroneous line
5776 of code, give it a condition to detect the case in which something
5777 erroneous has been done, and give it commands to assign correct values
5778 to any variables that need them.  End with the @code{continue} command
5779 so that your program does not stop, and start with the @code{silent}
5780 command so that no output is produced.  Here is an example:
5782 @smallexample
5783 break 403
5784 commands
5785 silent
5786 set x = y + 4
5787 cont
5789 @end smallexample
5791 @node Dynamic Printf
5792 @subsection Dynamic Printf
5794 @cindex dynamic printf
5795 @cindex dprintf
5796 The dynamic printf command @code{dprintf} combines a breakpoint with
5797 formatted printing of your program's data to give you the effect of
5798 inserting @code{printf} calls into your program on-the-fly, without
5799 having to recompile it.
5801 In its most basic form, the output goes to the GDB console.  However,
5802 you can set the variable @code{dprintf-style} for alternate handling.
5803 For instance, you can ask to format the output by calling your
5804 program's @code{printf} function.  This has the advantage that the
5805 characters go to the program's output device, so they can recorded in
5806 redirects to files and so forth.
5808 If you are doing remote debugging with a stub or agent, you can also
5809 ask to have the printf handled by the remote agent.  In addition to
5810 ensuring that the output goes to the remote program's device along
5811 with any other output the program might produce, you can also ask that
5812 the dprintf remain active even after disconnecting from the remote
5813 target.  Using the stub/agent is also more efficient, as it can do
5814 everything without needing to communicate with @value{GDBN}.
5816 @table @code
5817 @kindex dprintf
5818 @item dprintf @var{location},@var{template},@var{expression}[,@var{expression}@dots{}]
5819 Whenever execution reaches @var{location}, print the values of one or
5820 more @var{expressions} under the control of the string @var{template}.
5821 To print several values, separate them with commas.
5823 @item set dprintf-style @var{style}
5824 Set the dprintf output to be handled in one of several different
5825 styles enumerated below.  A change of style affects all existing
5826 dynamic printfs immediately.  (If you need individual control over the
5827 print commands, simply define normal breakpoints with
5828 explicitly-supplied command lists.)
5830 @table @code
5831 @item gdb
5832 @kindex dprintf-style gdb
5833 Handle the output using the @value{GDBN} @code{printf} command.
5835 @item call
5836 @kindex dprintf-style call
5837 Handle the output by calling a function in your program (normally
5838 @code{printf}).
5840 @item agent
5841 @kindex dprintf-style agent
5842 Have the remote debugging agent (such as @code{gdbserver}) handle
5843 the output itself.  This style is only available for agents that
5844 support running commands on the target.
5845 @end table
5847 @item set dprintf-function @var{function}
5848 Set the function to call if the dprintf style is @code{call}.  By
5849 default its value is @code{printf}.  You may set it to any expression.
5850 that @value{GDBN} can evaluate to a function, as per the @code{call}
5851 command.
5853 @item set dprintf-channel @var{channel}
5854 Set a ``channel'' for dprintf.  If set to a non-empty value,
5855 @value{GDBN} will evaluate it as an expression and pass the result as
5856 a first argument to the @code{dprintf-function}, in the manner of
5857 @code{fprintf} and similar functions.  Otherwise, the dprintf format
5858 string will be the first argument, in the manner of @code{printf}.
5860 As an example, if you wanted @code{dprintf} output to go to a logfile
5861 that is a standard I/O stream assigned to the variable @code{mylog},
5862 you could do the following:
5864 @example
5865 (gdb) set dprintf-style call
5866 (gdb) set dprintf-function fprintf
5867 (gdb) set dprintf-channel mylog
5868 (gdb) dprintf 25,"at line 25, glob=%d\n",glob
5869 Dprintf 1 at 0x123456: file main.c, line 25.
5870 (gdb) info break
5871 1       dprintf        keep y   0x00123456 in main at main.c:25
5872         call (void) fprintf (mylog,"at line 25, glob=%d\n",glob)
5873         continue
5874 (gdb)
5875 @end example
5877 Note that the @code{info break} displays the dynamic printf commands
5878 as normal breakpoint commands; you can thus easily see the effect of
5879 the variable settings.
5881 @item set disconnected-dprintf on
5882 @itemx set disconnected-dprintf off
5883 @kindex set disconnected-dprintf
5884 Choose whether @code{dprintf} commands should continue to run if
5885 @value{GDBN} has disconnected from the target.  This only applies
5886 if the @code{dprintf-style} is @code{agent}.
5888 @item show disconnected-dprintf off
5889 @kindex show disconnected-dprintf
5890 Show the current choice for disconnected @code{dprintf}.
5892 @end table
5894 @value{GDBN} does not check the validity of function and channel,
5895 relying on you to supply values that are meaningful for the contexts
5896 in which they are being used.  For instance, the function and channel
5897 may be the values of local variables, but if that is the case, then
5898 all enabled dynamic prints must be at locations within the scope of
5899 those locals.  If evaluation fails, @value{GDBN} will report an error.
5901 @node Save Breakpoints
5902 @subsection How to save breakpoints to a file
5904 To save breakpoint definitions to a file use the @w{@code{save
5905 breakpoints}} command.
5907 @table @code
5908 @kindex save breakpoints
5909 @cindex save breakpoints to a file for future sessions
5910 @item save breakpoints [@var{filename}]
5911 This command saves all current breakpoint definitions together with
5912 their commands and ignore counts, into a file @file{@var{filename}}
5913 suitable for use in a later debugging session.  This includes all
5914 types of breakpoints (breakpoints, watchpoints, catchpoints,
5915 tracepoints).  To read the saved breakpoint definitions, use the
5916 @code{source} command (@pxref{Command Files}).  Note that watchpoints
5917 with expressions involving local variables may fail to be recreated
5918 because it may not be possible to access the context where the
5919 watchpoint is valid anymore.  Because the saved breakpoint definitions
5920 are simply a sequence of @value{GDBN} commands that recreate the
5921 breakpoints, you can edit the file in your favorite editing program,
5922 and remove the breakpoint definitions you're not interested in, or
5923 that can no longer be recreated.
5924 @end table
5926 @node Static Probe Points
5927 @subsection Static Probe Points
5929 @cindex static probe point, SystemTap
5930 @cindex static probe point, DTrace
5931 @value{GDBN} supports @dfn{SDT} probes in the code.  @acronym{SDT} stands
5932 for Statically Defined Tracing, and the probes are designed to have a tiny
5933 runtime code and data footprint, and no dynamic relocations.
5935 Currently, the following types of probes are supported on
5936 ELF-compatible systems:
5938 @itemize @bullet
5940 @item @code{SystemTap} (@uref{http://sourceware.org/systemtap/})
5941 @acronym{SDT} probes@footnote{See
5942 @uref{http://sourceware.org/systemtap/wiki/AddingUserSpaceProbingToApps}
5943 for more information on how to add @code{SystemTap} @acronym{SDT}
5944 probes in your applications.}.  @code{SystemTap} probes are usable
5945 from assembly, C and C@t{++} languages@footnote{See
5946 @uref{http://sourceware.org/systemtap/wiki/UserSpaceProbeImplementation}
5947 for a good reference on how the @acronym{SDT} probes are implemented.}.  
5949 @item @code{DTrace} (@uref{http://oss.oracle.com/projects/DTrace})
5950 @acronym{USDT} probes.  @code{DTrace} probes are usable from C and
5951 C@t{++} languages.
5952 @end itemize
5954 @cindex semaphores on static probe points
5955 Some @code{SystemTap} probes have an associated semaphore variable;
5956 for instance, this happens automatically if you defined your probe
5957 using a DTrace-style @file{.d} file.  If your probe has a semaphore,
5958 @value{GDBN} will automatically enable it when you specify a
5959 breakpoint using the @samp{-probe-stap} notation.  But, if you put a
5960 breakpoint at a probe's location by some other method (e.g.,
5961 @code{break file:line}), then @value{GDBN} will not automatically set
5962 the semaphore.  @code{DTrace} probes do not support semaphores.
5964 You can examine the available static static probes using @code{info
5965 probes}, with optional arguments:
5967 @table @code
5968 @kindex info probes
5969 @item info probes @r{[}@var{type}@r{]} @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5970 If given, @var{type} is either @code{stap} for listing
5971 @code{SystemTap} probes or @code{dtrace} for listing @code{DTrace}
5972 probes.  If omitted all probes are listed regardless of their types.
5974 If given, @var{provider} is a regular expression used to match against provider
5975 names when selecting which probes to list.  If omitted, probes by all
5976 probes from all providers are listed.
5978 If given, @var{name} is a regular expression to match against probe names
5979 when selecting which probes to list.  If omitted, probe names are not
5980 considered when deciding whether to display them.
5982 If given, @var{objfile} is a regular expression used to select which
5983 object files (executable or shared libraries) to examine.  If not
5984 given, all object files are considered.
5986 @item info probes all
5987 List the available static probes, from all types.
5988 @end table
5990 @cindex enabling and disabling probes
5991 Some probe points can be enabled and/or disabled.  The effect of
5992 enabling or disabling a probe depends on the type of probe being
5993 handled.  Some @code{DTrace} probes can be enabled or
5994 disabled, but @code{SystemTap} probes cannot be disabled.
5996 You can enable (or disable) one or more probes using the following
5997 commands, with optional arguments:
5999 @table @code
6000 @kindex enable probes
6001 @item enable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
6002 If given, @var{provider} is a regular expression used to match against
6003 provider names when selecting which probes to enable.  If omitted,
6004 all probes from all providers are enabled.
6006 If given, @var{name} is a regular expression to match against probe
6007 names when selecting which probes to enable.  If omitted, probe names
6008 are not considered when deciding whether to enable them.
6010 If given, @var{objfile} is a regular expression used to select which
6011 object files (executable or shared libraries) to examine.  If not
6012 given, all object files are considered.
6014 @kindex disable probes
6015 @item disable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
6016 See the @code{enable probes} command above for a description of the
6017 optional arguments accepted by this command.
6018 @end table
6020 @vindex $_probe_arg@r{, convenience variable}
6021 A probe may specify up to twelve arguments.  These are available at the
6022 point at which the probe is defined---that is, when the current PC is
6023 at the probe's location.  The arguments are available using the
6024 convenience variables (@pxref{Convenience Vars})
6025 @code{$_probe_arg0}@dots{}@code{$_probe_arg11}.  In @code{SystemTap}
6026 probes each probe argument is an integer of the appropriate size;
6027 types are not preserved.  In @code{DTrace} probes types are preserved
6028 provided that they are recognized as such by @value{GDBN}; otherwise
6029 the value of the probe argument will be a long integer.  The
6030 convenience variable @code{$_probe_argc} holds the number of arguments
6031 at the current probe point.
6033 These variables are always available, but attempts to access them at
6034 any location other than a probe point will cause @value{GDBN} to give
6035 an error message.
6038 @c  @ifclear BARETARGET
6039 @node Error in Breakpoints
6040 @subsection ``Cannot insert breakpoints''
6042 If you request too many active hardware-assisted breakpoints and
6043 watchpoints, you will see this error message:
6045 @c FIXME: the precise wording of this message may change; the relevant
6046 @c source change is not committed yet (Sep 3, 1999).
6047 @smallexample
6048 Stopped; cannot insert breakpoints.
6049 You may have requested too many hardware breakpoints and watchpoints.
6050 @end smallexample
6052 @noindent
6053 This message is printed when you attempt to resume the program, since
6054 only then @value{GDBN} knows exactly how many hardware breakpoints and
6055 watchpoints it needs to insert.
6057 When this message is printed, you need to disable or remove some of the
6058 hardware-assisted breakpoints and watchpoints, and then continue.
6060 @node Breakpoint-related Warnings
6061 @subsection ``Breakpoint address adjusted...''
6062 @cindex breakpoint address adjusted
6064 Some processor architectures place constraints on the addresses at
6065 which breakpoints may be placed.  For architectures thus constrained,
6066 @value{GDBN} will attempt to adjust the breakpoint's address to comply
6067 with the constraints dictated by the architecture.
6069 One example of such an architecture is the Fujitsu FR-V.  The FR-V is
6070 a VLIW architecture in which a number of RISC-like instructions may be
6071 bundled together for parallel execution.  The FR-V architecture
6072 constrains the location of a breakpoint instruction within such a
6073 bundle to the instruction with the lowest address.  @value{GDBN}
6074 honors this constraint by adjusting a breakpoint's address to the
6075 first in the bundle.
6077 It is not uncommon for optimized code to have bundles which contain
6078 instructions from different source statements, thus it may happen that
6079 a breakpoint's address will be adjusted from one source statement to
6080 another.  Since this adjustment may significantly alter @value{GDBN}'s
6081 breakpoint related behavior from what the user expects, a warning is
6082 printed when the breakpoint is first set and also when the breakpoint
6083 is hit.
6085 A warning like the one below is printed when setting a breakpoint
6086 that's been subject to address adjustment:
6088 @smallexample
6089 warning: Breakpoint address adjusted from 0x00010414 to 0x00010410.
6090 @end smallexample
6092 Such warnings are printed both for user settable and @value{GDBN}'s
6093 internal breakpoints.  If you see one of these warnings, you should
6094 verify that a breakpoint set at the adjusted address will have the
6095 desired affect.  If not, the breakpoint in question may be removed and
6096 other breakpoints may be set which will have the desired behavior.
6097 E.g., it may be sufficient to place the breakpoint at a later
6098 instruction.  A conditional breakpoint may also be useful in some
6099 cases to prevent the breakpoint from triggering too often.
6101 @value{GDBN} will also issue a warning when stopping at one of these
6102 adjusted breakpoints:
6104 @smallexample
6105 warning: Breakpoint 1 address previously adjusted from 0x00010414
6106 to 0x00010410.
6107 @end smallexample
6109 When this warning is encountered, it may be too late to take remedial
6110 action except in cases where the breakpoint is hit earlier or more
6111 frequently than expected.
6113 @node Continuing and Stepping
6114 @section Continuing and Stepping
6116 @cindex stepping
6117 @cindex continuing
6118 @cindex resuming execution
6119 @dfn{Continuing} means resuming program execution until your program
6120 completes normally.  In contrast, @dfn{stepping} means executing just
6121 one more ``step'' of your program, where ``step'' may mean either one
6122 line of source code, or one machine instruction (depending on what
6123 particular command you use).  Either when continuing or when stepping,
6124 your program may stop even sooner, due to a breakpoint or a signal.  (If
6125 it stops due to a signal, you may want to use @code{handle}, or use
6126 @samp{signal 0} to resume execution (@pxref{Signals, ,Signals}),
6127 or you may step into the signal's handler (@pxref{stepping and signal
6128 handlers}).)
6130 @table @code
6131 @kindex continue
6132 @kindex c @r{(@code{continue})}
6133 @kindex fg @r{(resume foreground execution)}
6134 @item continue @r{[}@var{ignore-count}@r{]}
6135 @itemx c @r{[}@var{ignore-count}@r{]}
6136 @itemx fg @r{[}@var{ignore-count}@r{]}
6137 Resume program execution, at the address where your program last stopped;
6138 any breakpoints set at that address are bypassed.  The optional argument
6139 @var{ignore-count} allows you to specify a further number of times to
6140 ignore a breakpoint at this location; its effect is like that of
6141 @code{ignore} (@pxref{Conditions, ,Break Conditions}).
6143 The argument @var{ignore-count} is meaningful only when your program
6144 stopped due to a breakpoint.  At other times, the argument to
6145 @code{continue} is ignored.
6147 The synonyms @code{c} and @code{fg} (for @dfn{foreground}, as the
6148 debugged program is deemed to be the foreground program) are provided
6149 purely for convenience, and have exactly the same behavior as
6150 @code{continue}.
6151 @end table
6153 To resume execution at a different place, you can use @code{return}
6154 (@pxref{Returning, ,Returning from a Function}) to go back to the
6155 calling function; or @code{jump} (@pxref{Jumping, ,Continuing at a
6156 Different Address}) to go to an arbitrary location in your program.
6158 A typical technique for using stepping is to set a breakpoint
6159 (@pxref{Breakpoints, ,Breakpoints; Watchpoints; and Catchpoints}) at the
6160 beginning of the function or the section of your program where a problem
6161 is believed to lie, run your program until it stops at that breakpoint,
6162 and then step through the suspect area, examining the variables that are
6163 interesting, until you see the problem happen.
6165 @table @code
6166 @kindex step
6167 @kindex s @r{(@code{step})}
6168 @item step
6169 Continue running your program until control reaches a different source
6170 line, then stop it and return control to @value{GDBN}.  This command is
6171 abbreviated @code{s}.
6173 @quotation
6174 @c "without debugging information" is imprecise; actually "without line
6175 @c numbers in the debugging information".  (gcc -g1 has debugging info but
6176 @c not line numbers).  But it seems complex to try to make that
6177 @c distinction here.
6178 @emph{Warning:} If you use the @code{step} command while control is
6179 within a function that was compiled without debugging information,
6180 execution proceeds until control reaches a function that does have
6181 debugging information.  Likewise, it will not step into a function which
6182 is compiled without debugging information.  To step through functions
6183 without debugging information, use the @code{stepi} command, described
6184 below.
6185 @end quotation
6187 The @code{step} command only stops at the first instruction of a source
6188 line.  This prevents the multiple stops that could otherwise occur in
6189 @code{switch} statements, @code{for} loops, etc.  @code{step} continues
6190 to stop if a function that has debugging information is called within
6191 the line.  In other words, @code{step} @emph{steps inside} any functions
6192 called within the line.
6194 Also, the @code{step} command only enters a function if there is line
6195 number information for the function.  Otherwise it acts like the
6196 @code{next} command.  This avoids problems when using @code{cc -gl}
6197 on @acronym{MIPS} machines.  Previously, @code{step} entered subroutines if there
6198 was any debugging information about the routine.
6200 @item step @var{count}
6201 Continue running as in @code{step}, but do so @var{count} times.  If a
6202 breakpoint is reached, or a signal not related to stepping occurs before
6203 @var{count} steps, stepping stops right away.
6205 @kindex next
6206 @kindex n @r{(@code{next})}
6207 @item next @r{[}@var{count}@r{]}
6208 Continue to the next source line in the current (innermost) stack frame.
6209 This is similar to @code{step}, but function calls that appear within
6210 the line of code are executed without stopping.  Execution stops when
6211 control reaches a different line of code at the original stack level
6212 that was executing when you gave the @code{next} command.  This command
6213 is abbreviated @code{n}.
6215 An argument @var{count} is a repeat count, as for @code{step}.
6218 @c  FIX ME!!  Do we delete this, or is there a way it fits in with
6219 @c  the following paragraph?   ---  Vctoria
6221 @c  @code{next} within a function that lacks debugging information acts like
6222 @c  @code{step}, but any function calls appearing within the code of the
6223 @c  function are executed without stopping.
6225 The @code{next} command only stops at the first instruction of a
6226 source line.  This prevents multiple stops that could otherwise occur in
6227 @code{switch} statements, @code{for} loops, etc.
6229 @kindex set step-mode
6230 @item set step-mode
6231 @cindex functions without line info, and stepping
6232 @cindex stepping into functions with no line info
6233 @itemx set step-mode on
6234 The @code{set step-mode on} command causes the @code{step} command to
6235 stop at the first instruction of a function which contains no debug line
6236 information rather than stepping over it.
6238 This is useful in cases where you may be interested in inspecting the
6239 machine instructions of a function which has no symbolic info and do not
6240 want @value{GDBN} to automatically skip over this function.
6242 @item set step-mode off
6243 Causes the @code{step} command to step over any functions which contains no
6244 debug information.  This is the default.
6246 @item show step-mode
6247 Show whether @value{GDBN} will stop in or step over functions without
6248 source line debug information.
6250 @kindex finish
6251 @kindex fin @r{(@code{finish})}
6252 @item finish
6253 Continue running until just after function in the selected stack frame
6254 returns.  Print the returned value (if any).  This command can be
6255 abbreviated as @code{fin}.
6257 Contrast this with the @code{return} command (@pxref{Returning,
6258 ,Returning from a Function}).
6260 @kindex set print finish
6261 @kindex show print finish
6262 @item set print finish @r{[}on|off@r{]}
6263 @itemx show print finish
6264 By default the @code{finish} command will show the value that is
6265 returned by the function.  This can be disabled using @code{set print
6266 finish off}.  When disabled, the value is still entered into the value
6267 history (@pxref{Value History}), but not displayed.
6269 @kindex until
6270 @kindex u @r{(@code{until})}
6271 @cindex run until specified location
6272 @item until
6273 @itemx u
6274 Continue running until a source line past the current line, in the
6275 current stack frame, is reached.  This command is used to avoid single
6276 stepping through a loop more than once.  It is like the @code{next}
6277 command, except that when @code{until} encounters a jump, it
6278 automatically continues execution until the program counter is greater
6279 than the address of the jump.
6281 This means that when you reach the end of a loop after single stepping
6282 though it, @code{until} makes your program continue execution until it
6283 exits the loop.  In contrast, a @code{next} command at the end of a loop
6284 simply steps back to the beginning of the loop, which forces you to step
6285 through the next iteration.
6287 @code{until} always stops your program if it attempts to exit the current
6288 stack frame.
6290 @code{until} may produce somewhat counterintuitive results if the order
6291 of machine code does not match the order of the source lines.  For
6292 example, in the following excerpt from a debugging session, the @code{f}
6293 (@code{frame}) command shows that execution is stopped at line
6294 @code{206}; yet when we use @code{until}, we get to line @code{195}:
6296 @smallexample
6297 (@value{GDBP}) f
6298 #0  main (argc=4, argv=0xf7fffae8) at m4.c:206
6299 206                 expand_input();
6300 (@value{GDBP}) until
6301 195             for ( ; argc > 0; NEXTARG) @{
6302 @end smallexample
6304 This happened because, for execution efficiency, the compiler had
6305 generated code for the loop closure test at the end, rather than the
6306 start, of the loop---even though the test in a C @code{for}-loop is
6307 written before the body of the loop.  The @code{until} command appeared
6308 to step back to the beginning of the loop when it advanced to this
6309 expression; however, it has not really gone to an earlier
6310 statement---not in terms of the actual machine code.
6312 @code{until} with no argument works by means of single
6313 instruction stepping, and hence is slower than @code{until} with an
6314 argument.
6316 @item until @var{location}
6317 @itemx u @var{location}
6318 Continue running your program until either the specified @var{location} is
6319 reached, or the current stack frame returns.  The location is any of
6320 the forms described in @ref{Specify Location}.
6321 This form of the command uses temporary breakpoints, and
6322 hence is quicker than @code{until} without an argument.  The specified
6323 location is actually reached only if it is in the current frame.  This
6324 implies that @code{until} can be used to skip over recursive function
6325 invocations.  For instance in the code below, if the current location is
6326 line @code{96}, issuing @code{until 99} will execute the program up to
6327 line @code{99} in the same invocation of factorial, i.e., after the inner
6328 invocations have returned.
6330 @smallexample
6331 94      int factorial (int value)
6332 95      @{
6333 96          if (value > 1) @{
6334 97            value *= factorial (value - 1);
6335 98          @}
6336 99          return (value);
6337 100     @}
6338 @end smallexample
6341 @kindex advance @var{location}
6342 @item advance @var{location}
6343 Continue running the program up to the given @var{location}.  An argument is
6344 required, which should be of one of the forms described in
6345 @ref{Specify Location}.
6346 Execution will also stop upon exit from the current stack
6347 frame.  This command is similar to @code{until}, but @code{advance} will
6348 not skip over recursive function calls, and the target location doesn't
6349 have to be in the same frame as the current one.
6352 @kindex stepi
6353 @kindex si @r{(@code{stepi})}
6354 @item stepi
6355 @itemx stepi @var{arg}
6356 @itemx si
6357 Execute one machine instruction, then stop and return to the debugger.
6359 It is often useful to do @samp{display/i $pc} when stepping by machine
6360 instructions.  This makes @value{GDBN} automatically display the next
6361 instruction to be executed, each time your program stops.  @xref{Auto
6362 Display,, Automatic Display}.
6364 An argument is a repeat count, as in @code{step}.
6366 @need 750
6367 @kindex nexti
6368 @kindex ni @r{(@code{nexti})}
6369 @item nexti
6370 @itemx nexti @var{arg}
6371 @itemx ni
6372 Execute one machine instruction, but if it is a function call,
6373 proceed until the function returns.
6375 An argument is a repeat count, as in @code{next}.
6377 @end table
6379 @anchor{range stepping}
6380 @cindex range stepping
6381 @cindex target-assisted range stepping
6382 By default, and if available, @value{GDBN} makes use of
6383 target-assisted @dfn{range stepping}.  In other words, whenever you
6384 use a stepping command (e.g., @code{step}, @code{next}), @value{GDBN}
6385 tells the target to step the corresponding range of instruction
6386 addresses instead of issuing multiple single-steps.  This speeds up
6387 line stepping, particularly for remote targets.  Ideally, there should
6388 be no reason you would want to turn range stepping off.  However, it's
6389 possible that a bug in the debug info, a bug in the remote stub (for
6390 remote targets), or even a bug in @value{GDBN} could make line
6391 stepping behave incorrectly when target-assisted range stepping is
6392 enabled.  You can use the following command to turn off range stepping
6393 if necessary:
6395 @table @code
6396 @kindex set range-stepping
6397 @kindex show range-stepping
6398 @item set range-stepping
6399 @itemx show range-stepping
6400 Control whether range stepping is enabled.
6402 If @code{on}, and the target supports it, @value{GDBN} tells the
6403 target to step a range of addresses itself, instead of issuing
6404 multiple single-steps.  If @code{off}, @value{GDBN} always issues
6405 single-steps, even if range stepping is supported by the target.  The
6406 default is @code{on}.
6408 @end table
6410 @node Skipping Over Functions and Files
6411 @section Skipping Over Functions and Files
6412 @cindex skipping over functions and files
6414 The program you are debugging may contain some functions which are
6415 uninteresting to debug.  The @code{skip} command lets you tell @value{GDBN} to
6416 skip a function, all functions in a file or a particular function in
6417 a particular file when stepping.
6419 For example, consider the following C function:
6421 @smallexample
6422 101     int func()
6423 102     @{
6424 103         foo(boring());
6425 104         bar(boring());
6426 105     @}
6427 @end smallexample
6429 @noindent
6430 Suppose you wish to step into the functions @code{foo} and @code{bar}, but you
6431 are not interested in stepping through @code{boring}.  If you run @code{step}
6432 at line 103, you'll enter @code{boring()}, but if you run @code{next}, you'll
6433 step over both @code{foo} and @code{boring}!
6435 One solution is to @code{step} into @code{boring} and use the @code{finish}
6436 command to immediately exit it.  But this can become tedious if @code{boring}
6437 is called from many places.
6439 A more flexible solution is to execute @kbd{skip boring}.  This instructs
6440 @value{GDBN} never to step into @code{boring}.  Now when you execute
6441 @code{step} at line 103, you'll step over @code{boring} and directly into
6442 @code{foo}.
6444 Functions may be skipped by providing either a function name, linespec
6445 (@pxref{Specify Location}), regular expression that matches the function's
6446 name, file name or a @code{glob}-style pattern that matches the file name.
6448 On Posix systems the form of the regular expression is
6449 ``Extended Regular Expressions''.  See for example @samp{man 7 regex}
6450 on @sc{gnu}/Linux systems.  On non-Posix systems the form of the regular
6451 expression is whatever is provided by the @code{regcomp} function of
6452 the underlying system.
6453 See for example @samp{man 7 glob} on @sc{gnu}/Linux systems for a
6454 description of @code{glob}-style patterns.
6456 @table @code
6457 @kindex skip
6458 @item skip @r{[}@var{options}@r{]}
6459 The basic form of the @code{skip} command takes zero or more options
6460 that specify what to skip.
6461 The @var{options} argument is any useful combination of the following:
6463 @table @code
6464 @item -file @var{file}
6465 @itemx -fi @var{file}
6466 Functions in @var{file} will be skipped over when stepping.
6468 @item -gfile @var{file-glob-pattern}
6469 @itemx -gfi @var{file-glob-pattern}
6470 @cindex skipping over files via glob-style patterns
6471 Functions in files matching @var{file-glob-pattern} will be skipped
6472 over when stepping.
6474 @smallexample
6475 (gdb) skip -gfi utils/*.c
6476 @end smallexample
6478 @item -function @var{linespec}
6479 @itemx -fu @var{linespec}
6480 Functions named by @var{linespec} or the function containing the line
6481 named by @var{linespec} will be skipped over when stepping.
6482 @xref{Specify Location}.
6484 @item -rfunction @var{regexp}
6485 @itemx -rfu @var{regexp}
6486 @cindex skipping over functions via regular expressions
6487 Functions whose name matches @var{regexp} will be skipped over when stepping.
6489 This form is useful for complex function names.
6490 For example, there is generally no need to step into C@t{++} @code{std::string}
6491 constructors or destructors.  Plus with C@t{++} templates it can be hard to
6492 write out the full name of the function, and often it doesn't matter what
6493 the template arguments are.  Specifying the function to be skipped as a
6494 regular expression makes this easier.
6496 @smallexample
6497 (gdb) skip -rfu ^std::(allocator|basic_string)<.*>::~?\1 *\(
6498 @end smallexample
6500 If you want to skip every templated C@t{++} constructor and destructor
6501 in the @code{std} namespace you can do:
6503 @smallexample
6504 (gdb) skip -rfu ^std::([a-zA-z0-9_]+)<.*>::~?\1 *\(
6505 @end smallexample
6506 @end table
6508 If no options are specified, the function you're currently debugging
6509 will be skipped.
6511 @kindex skip function
6512 @item skip function @r{[}@var{linespec}@r{]}
6513 After running this command, the function named by @var{linespec} or the
6514 function containing the line named by @var{linespec} will be skipped over when
6515 stepping.  @xref{Specify Location}.
6517 If you do not specify @var{linespec}, the function you're currently debugging
6518 will be skipped.
6520 (If you have a function called @code{file} that you want to skip, use
6521 @kbd{skip function file}.)
6523 @kindex skip file
6524 @item skip file @r{[}@var{filename}@r{]}
6525 After running this command, any function whose source lives in @var{filename}
6526 will be skipped over when stepping.
6528 @smallexample
6529 (gdb) skip file boring.c
6530 File boring.c will be skipped when stepping.
6531 @end smallexample
6533 If you do not specify @var{filename}, functions whose source lives in the file
6534 you're currently debugging will be skipped.
6535 @end table
6537 Skips can be listed, deleted, disabled, and enabled, much like breakpoints.
6538 These are the commands for managing your list of skips:
6540 @table @code
6541 @kindex info skip
6542 @item info skip @r{[}@var{range}@r{]}
6543 Print details about the specified skip(s).  If @var{range} is not specified,
6544 print a table with details about all functions and files marked for skipping.
6545 @code{info skip} prints the following information about each skip:
6547 @table @emph
6548 @item Identifier
6549 A number identifying this skip.
6550 @item Enabled or Disabled
6551 Enabled skips are marked with @samp{y}.
6552 Disabled skips are marked with @samp{n}.
6553 @item Glob
6554 If the file name is a @samp{glob} pattern this is @samp{y}.
6555 Otherwise it is @samp{n}.
6556 @item File
6557 The name or @samp{glob} pattern of the file to be skipped.
6558 If no file is specified this is @samp{<none>}.
6559 @item RE
6560 If the function name is a @samp{regular expression} this is @samp{y}.
6561 Otherwise it is @samp{n}.
6562 @item Function
6563 The name or regular expression of the function to skip.
6564 If no function is specified this is @samp{<none>}.
6565 @end table
6567 @kindex skip delete
6568 @item skip delete @r{[}@var{range}@r{]}
6569 Delete the specified skip(s).  If @var{range} is not specified, delete all
6570 skips.
6572 @kindex skip enable
6573 @item skip enable @r{[}@var{range}@r{]}
6574 Enable the specified skip(s).  If @var{range} is not specified, enable all
6575 skips.
6577 @kindex skip disable
6578 @item skip disable @r{[}@var{range}@r{]}
6579 Disable the specified skip(s).  If @var{range} is not specified, disable all
6580 skips.
6582 @kindex set debug skip
6583 @item set debug skip @r{[}on|off@r{]}
6584 Set whether to print the debug output about skipping files and functions.
6586 @kindex show debug skip
6587 @item show debug skip
6588 Show whether the debug output about skipping files and functions is printed.
6590 @end table
6592 @node Signals
6593 @section Signals
6594 @cindex signals
6596 A signal is an asynchronous event that can happen in a program.  The
6597 operating system defines the possible kinds of signals, and gives each
6598 kind a name and a number.  For example, in Unix @code{SIGINT} is the
6599 signal a program gets when you type an interrupt character (often @kbd{Ctrl-c});
6600 @code{SIGSEGV} is the signal a program gets from referencing a place in
6601 memory far away from all the areas in use; @code{SIGALRM} occurs when
6602 the alarm clock timer goes off (which happens only if your program has
6603 requested an alarm).
6605 @cindex fatal signals
6606 Some signals, including @code{SIGALRM}, are a normal part of the
6607 functioning of your program.  Others, such as @code{SIGSEGV}, indicate
6608 errors; these signals are @dfn{fatal} (they kill your program immediately) if the
6609 program has not specified in advance some other way to handle the signal.
6610 @code{SIGINT} does not indicate an error in your program, but it is normally
6611 fatal so it can carry out the purpose of the interrupt: to kill the program.
6613 @value{GDBN} has the ability to detect any occurrence of a signal in your
6614 program.  You can tell @value{GDBN} in advance what to do for each kind of
6615 signal.
6617 @cindex handling signals
6618 Normally, @value{GDBN} is set up to let the non-erroneous signals like
6619 @code{SIGALRM} be silently passed to your program
6620 (so as not to interfere with their role in the program's functioning)
6621 but to stop your program immediately whenever an error signal happens.
6622 You can change these settings with the @code{handle} command.
6624 @table @code
6625 @kindex info signals
6626 @kindex info handle
6627 @item info signals
6628 @itemx info handle
6629 Print a table of all the kinds of signals and how @value{GDBN} has been told to
6630 handle each one.  You can use this to see the signal numbers of all
6631 the defined types of signals.
6633 @item info signals @var{sig}
6634 Similar, but print information only about the specified signal number.
6636 @code{info handle} is an alias for @code{info signals}.
6638 @item catch signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
6639 Set a catchpoint for the indicated signals.  @xref{Set Catchpoints},
6640 for details about this command.
6642 @kindex handle
6643 @item handle @var{signal} @r{[}@var{keywords}@dots{}@r{]}
6644 Change the way @value{GDBN} handles signal @var{signal}.  The @var{signal}
6645 can be the number of a signal or its name (with or without the
6646 @samp{SIG} at the beginning); a list of signal numbers of the form
6647 @samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
6648 known signals.  Optional arguments @var{keywords}, described below,
6649 say what change to make.
6650 @end table
6652 @c @group
6653 The keywords allowed by the @code{handle} command can be abbreviated.
6654 Their full names are:
6656 @table @code
6657 @item nostop
6658 @value{GDBN} should not stop your program when this signal happens.  It may
6659 still print a message telling you that the signal has come in.
6661 @item stop
6662 @value{GDBN} should stop your program when this signal happens.  This implies
6663 the @code{print} keyword as well.
6665 @item print
6666 @value{GDBN} should print a message when this signal happens.
6668 @item noprint
6669 @value{GDBN} should not mention the occurrence of the signal at all.  This
6670 implies the @code{nostop} keyword as well.
6672 @item pass
6673 @itemx noignore
6674 @value{GDBN} should allow your program to see this signal; your program
6675 can handle the signal, or else it may terminate if the signal is fatal
6676 and not handled.  @code{pass} and @code{noignore} are synonyms.
6678 @item nopass
6679 @itemx ignore
6680 @value{GDBN} should not allow your program to see this signal.
6681 @code{nopass} and @code{ignore} are synonyms.
6682 @end table
6683 @c @end group
6685 When a signal stops your program, the signal is not visible to the
6686 program until you
6687 continue.  Your program sees the signal then, if @code{pass} is in
6688 effect for the signal in question @emph{at that time}.  In other words,
6689 after @value{GDBN} reports a signal, you can use the @code{handle}
6690 command with @code{pass} or @code{nopass} to control whether your
6691 program sees that signal when you continue.
6693 The default is set to @code{nostop}, @code{noprint}, @code{pass} for
6694 non-erroneous signals such as @code{SIGALRM}, @code{SIGWINCH} and
6695 @code{SIGCHLD}, and to @code{stop}, @code{print}, @code{pass} for the
6696 erroneous signals.
6698 You can also use the @code{signal} command to prevent your program from
6699 seeing a signal, or cause it to see a signal it normally would not see,
6700 or to give it any signal at any time.  For example, if your program stopped
6701 due to some sort of memory reference error, you might store correct
6702 values into the erroneous variables and continue, hoping to see more
6703 execution; but your program would probably terminate immediately as
6704 a result of the fatal signal once it saw the signal.  To prevent this,
6705 you can continue with @samp{signal 0}.  @xref{Signaling, ,Giving your
6706 Program a Signal}.
6708 @cindex stepping and signal handlers
6709 @anchor{stepping and signal handlers}
6711 @value{GDBN} optimizes for stepping the mainline code.  If a signal
6712 that has @code{handle nostop} and @code{handle pass} set arrives while
6713 a stepping command (e.g., @code{stepi}, @code{step}, @code{next}) is
6714 in progress, @value{GDBN} lets the signal handler run and then resumes
6715 stepping the mainline code once the signal handler returns.  In other
6716 words, @value{GDBN} steps over the signal handler.  This prevents
6717 signals that you've specified as not interesting (with @code{handle
6718 nostop}) from changing the focus of debugging unexpectedly.  Note that
6719 the signal handler itself may still hit a breakpoint, stop for another
6720 signal that has @code{handle stop} in effect, or for any other event
6721 that normally results in stopping the stepping command sooner.  Also
6722 note that @value{GDBN} still informs you that the program received a
6723 signal if @code{handle print} is set.
6725 @anchor{stepping into signal handlers}
6727 If you set @code{handle pass} for a signal, and your program sets up a
6728 handler for it, then issuing a stepping command, such as @code{step}
6729 or @code{stepi}, when your program is stopped due to the signal will
6730 step @emph{into} the signal handler (if the target supports that).
6732 Likewise, if you use the @code{queue-signal} command to queue a signal
6733 to be delivered to the current thread when execution of the thread
6734 resumes (@pxref{Signaling, ,Giving your Program a Signal}), then a
6735 stepping command will step into the signal handler.
6737 Here's an example, using @code{stepi} to step to the first instruction
6738 of @code{SIGUSR1}'s handler:
6740 @smallexample
6741 (@value{GDBP}) handle SIGUSR1
6742 Signal        Stop      Print   Pass to program Description
6743 SIGUSR1       Yes       Yes     Yes             User defined signal 1
6744 (@value{GDBP}) c
6745 Continuing.
6747 Program received signal SIGUSR1, User defined signal 1.
6748 main () sigusr1.c:28
6749 28        p = 0;
6750 (@value{GDBP}) si
6751 sigusr1_handler () at sigusr1.c:9
6752 9       @{
6753 @end smallexample
6755 The same, but using @code{queue-signal} instead of waiting for the
6756 program to receive the signal first:
6758 @smallexample
6759 (@value{GDBP}) n
6760 28        p = 0;
6761 (@value{GDBP}) queue-signal SIGUSR1
6762 (@value{GDBP}) si
6763 sigusr1_handler () at sigusr1.c:9
6764 9       @{
6765 (@value{GDBP})
6766 @end smallexample
6768 @cindex extra signal information
6769 @anchor{extra signal information}
6771 On some targets, @value{GDBN} can inspect extra signal information
6772 associated with the intercepted signal, before it is actually
6773 delivered to the program being debugged.  This information is exported
6774 by the convenience variable @code{$_siginfo}, and consists of data
6775 that is passed by the kernel to the signal handler at the time of the
6776 receipt of a signal.  The data type of the information itself is
6777 target dependent.  You can see the data type using the @code{ptype
6778 $_siginfo} command.  On Unix systems, it typically corresponds to the
6779 standard @code{siginfo_t} type, as defined in the @file{signal.h}
6780 system header.
6782 Here's an example, on a @sc{gnu}/Linux system, printing the stray
6783 referenced address that raised a segmentation fault.
6785 @smallexample
6786 @group
6787 (@value{GDBP}) continue
6788 Program received signal SIGSEGV, Segmentation fault.
6789 0x0000000000400766 in main ()
6790 69        *(int *)p = 0;
6791 (@value{GDBP}) ptype $_siginfo
6792 type = struct @{
6793     int si_signo;
6794     int si_errno;
6795     int si_code;
6796     union @{
6797         int _pad[28];
6798         struct @{...@} _kill;
6799         struct @{...@} _timer;
6800         struct @{...@} _rt;
6801         struct @{...@} _sigchld;
6802         struct @{...@} _sigfault;
6803         struct @{...@} _sigpoll;
6804     @} _sifields;
6806 (@value{GDBP}) ptype $_siginfo._sifields._sigfault
6807 type = struct @{
6808     void *si_addr;
6810 (@value{GDBP}) p $_siginfo._sifields._sigfault.si_addr
6811 $1 = (void *) 0x7ffff7ff7000
6812 @end group
6813 @end smallexample
6815 Depending on target support, @code{$_siginfo} may also be writable.
6817 @cindex Intel MPX boundary violations
6818 @cindex boundary violations, Intel MPX
6819 On some targets, a @code{SIGSEGV} can be caused by a boundary
6820 violation, i.e., accessing an address outside of the allowed range.
6821 In those cases @value{GDBN} may displays additional information,
6822 depending on how @value{GDBN} has been told to handle the signal.
6823 With @code{handle stop SIGSEGV}, @value{GDBN} displays the violation
6824 kind: "Upper" or "Lower", the memory address accessed and the
6825 bounds, while with @code{handle nostop SIGSEGV} no additional
6826 information is displayed.
6828 The usual output of a segfault is:
6829 @smallexample
6830 Program received signal SIGSEGV, Segmentation fault
6831 0x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
6832 68        value = *(p + len);
6833 @end smallexample
6835 While a bound violation is presented as:
6836 @smallexample
6837 Program received signal SIGSEGV, Segmentation fault
6838 Upper bound violation while accessing address 0x7fffffffc3b3
6839 Bounds: [lower = 0x7fffffffc390, upper = 0x7fffffffc3a3]
6840 0x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
6841 68        value = *(p + len);
6842 @end smallexample
6844 @node Thread Stops
6845 @section Stopping and Starting Multi-thread Programs
6847 @cindex stopped threads
6848 @cindex threads, stopped
6850 @cindex continuing threads
6851 @cindex threads, continuing
6853 @value{GDBN} supports debugging programs with multiple threads
6854 (@pxref{Threads,, Debugging Programs with Multiple Threads}).  There
6855 are two modes of controlling execution of your program within the
6856 debugger.  In the default mode, referred to as @dfn{all-stop mode},
6857 when any thread in your program stops (for example, at a breakpoint 
6858 or while being stepped), all other threads in the program are also stopped by 
6859 @value{GDBN}.  On some targets, @value{GDBN} also supports 
6860 @dfn{non-stop mode}, in which other threads can continue to run freely while
6861 you examine the stopped thread in the debugger.
6863 @menu
6864 * All-Stop Mode::               All threads stop when GDB takes control
6865 * Non-Stop Mode::               Other threads continue to execute
6866 * Background Execution::        Running your program asynchronously
6867 * Thread-Specific Breakpoints:: Controlling breakpoints
6868 * Interrupted System Calls::    GDB may interfere with system calls
6869 * Observer Mode::               GDB does not alter program behavior
6870 @end menu
6872 @node All-Stop Mode
6873 @subsection All-Stop Mode
6875 @cindex all-stop mode
6877 In all-stop mode, whenever your program stops under @value{GDBN} for any reason,
6878 @emph{all} threads of execution stop, not just the current thread.  This
6879 allows you to examine the overall state of the program, including
6880 switching between threads, without worrying that things may change
6881 underfoot.
6883 Conversely, whenever you restart the program, @emph{all} threads start
6884 executing.  @emph{This is true even when single-stepping} with commands
6885 like @code{step} or @code{next}.
6887 In particular, @value{GDBN} cannot single-step all threads in lockstep.
6888 Since thread scheduling is up to your debugging target's operating
6889 system (not controlled by @value{GDBN}), other threads may
6890 execute more than one statement while the current thread completes a
6891 single step.  Moreover, in general other threads stop in the middle of a
6892 statement, rather than at a clean statement boundary, when the program
6893 stops.
6895 You might even find your program stopped in another thread after
6896 continuing or even single-stepping.  This happens whenever some other
6897 thread runs into a breakpoint, a signal, or an exception before the
6898 first thread completes whatever you requested.
6900 @cindex automatic thread selection
6901 @cindex switching threads automatically
6902 @cindex threads, automatic switching
6903 Whenever @value{GDBN} stops your program, due to a breakpoint or a
6904 signal, it automatically selects the thread where that breakpoint or
6905 signal happened.  @value{GDBN} alerts you to the context switch with a
6906 message such as @samp{[Switching to Thread @var{n}]} to identify the
6907 thread.  
6909 On some OSes, you can modify @value{GDBN}'s default behavior by
6910 locking the OS scheduler to allow only a single thread to run.
6912 @table @code
6913 @item set scheduler-locking @var{mode}
6914 @cindex scheduler locking mode
6915 @cindex lock scheduler
6916 Set the scheduler locking mode.  It applies to normal execution,
6917 record mode, and replay mode.  If it is @code{off}, then there is no
6918 locking and any thread may run at any time.  If @code{on}, then only
6919 the current thread may run when the inferior is resumed.  The
6920 @code{step} mode optimizes for single-stepping; it prevents other
6921 threads from preempting the current thread while you are stepping, so
6922 that the focus of debugging does not change unexpectedly.  Other
6923 threads never get a chance to run when you step, and they are
6924 completely free to run when you use commands like @samp{continue},
6925 @samp{until}, or @samp{finish}.  However, unless another thread hits a
6926 breakpoint during its timeslice, @value{GDBN} does not change the
6927 current thread away from the thread that you are debugging.  The
6928 @code{replay} mode behaves like @code{off} in record mode and like
6929 @code{on} in replay mode.
6931 @item show scheduler-locking
6932 Display the current scheduler locking mode.
6933 @end table
6935 @cindex resume threads of multiple processes simultaneously
6936 By default, when you issue one of the execution commands such as
6937 @code{continue}, @code{next} or @code{step}, @value{GDBN} allows only
6938 threads of the current inferior to run.  For example, if @value{GDBN}
6939 is attached to two inferiors, each with two threads, the
6940 @code{continue} command resumes only the two threads of the current
6941 inferior.  This is useful, for example, when you debug a program that
6942 forks and you want to hold the parent stopped (so that, for instance,
6943 it doesn't run to exit), while you debug the child.  In other
6944 situations, you may not be interested in inspecting the current state
6945 of any of the processes @value{GDBN} is attached to, and you may want
6946 to resume them all until some breakpoint is hit.  In the latter case,
6947 you can instruct @value{GDBN} to allow all threads of all the
6948 inferiors to run with the @w{@code{set schedule-multiple}} command.
6950 @table @code
6951 @kindex set schedule-multiple
6952 @item set schedule-multiple
6953 Set the mode for allowing threads of multiple processes to be resumed
6954 when an execution command is issued.  When @code{on}, all threads of
6955 all processes are allowed to run.  When @code{off}, only the threads
6956 of the current process are resumed.  The default is @code{off}.  The
6957 @code{scheduler-locking} mode takes precedence when set to @code{on},
6958 or while you are stepping and set to @code{step}.
6960 @item show schedule-multiple
6961 Display the current mode for resuming the execution of threads of
6962 multiple processes.
6963 @end table
6965 @node Non-Stop Mode
6966 @subsection Non-Stop Mode
6968 @cindex non-stop mode
6970 @c This section is really only a place-holder, and needs to be expanded
6971 @c with more details.
6973 For some multi-threaded targets, @value{GDBN} supports an optional
6974 mode of operation in which you can examine stopped program threads in
6975 the debugger while other threads continue to execute freely.  This
6976 minimizes intrusion when debugging live systems, such as programs
6977 where some threads have real-time constraints or must continue to
6978 respond to external events.  This is referred to as @dfn{non-stop} mode.
6980 In non-stop mode, when a thread stops to report a debugging event,
6981 @emph{only} that thread is stopped; @value{GDBN} does not stop other
6982 threads as well, in contrast to the all-stop mode behavior.  Additionally,
6983 execution commands such as @code{continue} and @code{step} apply by default
6984 only to the current thread in non-stop mode, rather than all threads as
6985 in all-stop mode.  This allows you to control threads explicitly in
6986 ways that are not possible in all-stop mode --- for example, stepping
6987 one thread while allowing others to run freely, stepping
6988 one thread while holding all others stopped, or stepping several threads
6989 independently and simultaneously.
6991 To enter non-stop mode, use this sequence of commands before you run
6992 or attach to your program:
6994 @smallexample
6995 # If using the CLI, pagination breaks non-stop.
6996 set pagination off
6998 # Finally, turn it on!
6999 set non-stop on
7000 @end smallexample
7002 You can use these commands to manipulate the non-stop mode setting:
7004 @table @code
7005 @kindex set non-stop
7006 @item set non-stop on
7007 Enable selection of non-stop mode.
7008 @item set non-stop off
7009 Disable selection of non-stop mode.
7010 @kindex show non-stop
7011 @item show non-stop
7012 Show the current non-stop enablement setting.
7013 @end table
7015 Note these commands only reflect whether non-stop mode is enabled,
7016 not whether the currently-executing program is being run in non-stop mode.
7017 In particular, the @code{set non-stop} preference is only consulted when
7018 @value{GDBN} starts or connects to the target program, and it is generally
7019 not possible to switch modes once debugging has started.  Furthermore,
7020 since not all targets support non-stop mode, even when you have enabled
7021 non-stop mode, @value{GDBN} may still fall back to all-stop operation by
7022 default.
7024 In non-stop mode, all execution commands apply only to the current thread
7025 by default.  That is, @code{continue} only continues one thread.
7026 To continue all threads, issue @code{continue -a} or @code{c -a}.
7028 You can use @value{GDBN}'s background execution commands
7029 (@pxref{Background Execution}) to run some threads in the background
7030 while you continue to examine or step others from @value{GDBN}.
7031 The MI execution commands (@pxref{GDB/MI Program Execution}) are
7032 always executed asynchronously in non-stop mode.
7034 Suspending execution is done with the @code{interrupt} command when
7035 running in the background, or @kbd{Ctrl-c} during foreground execution.
7036 In all-stop mode, this stops the whole process;
7037 but in non-stop mode the interrupt applies only to the current thread.
7038 To stop the whole program, use @code{interrupt -a}.
7040 Other execution commands do not currently support the @code{-a} option.
7042 In non-stop mode, when a thread stops, @value{GDBN} doesn't automatically make
7043 that thread current, as it does in all-stop mode.  This is because the
7044 thread stop notifications are asynchronous with respect to @value{GDBN}'s
7045 command interpreter, and it would be confusing if @value{GDBN} unexpectedly
7046 changed to a different thread just as you entered a command to operate on the
7047 previously current thread.
7049 @node Background Execution
7050 @subsection Background Execution
7052 @cindex foreground execution
7053 @cindex background execution
7054 @cindex asynchronous execution
7055 @cindex execution, foreground, background and asynchronous
7057 @value{GDBN}'s execution commands have two variants:  the normal
7058 foreground (synchronous) behavior, and a background
7059 (asynchronous) behavior.  In foreground execution, @value{GDBN} waits for
7060 the program to report that some thread has stopped before prompting for
7061 another command.  In background execution, @value{GDBN} immediately gives
7062 a command prompt so that you can issue other commands while your program runs.
7064 If the target doesn't support async mode, @value{GDBN} issues an error
7065 message if you attempt to use the background execution commands.
7067 @cindex @code{&}, background execution of commands
7068 To specify background execution, add a @code{&} to the command.  For example,
7069 the background form of the @code{continue} command is @code{continue&}, or
7070 just @code{c&}.  The execution commands that accept background execution
7071 are:
7073 @table @code
7074 @kindex run&
7075 @item run
7076 @xref{Starting, , Starting your Program}.
7078 @item attach
7079 @kindex attach&
7080 @xref{Attach, , Debugging an Already-running Process}.
7082 @item step
7083 @kindex step&
7084 @xref{Continuing and Stepping, step}.
7086 @item stepi
7087 @kindex stepi&
7088 @xref{Continuing and Stepping, stepi}.
7090 @item next
7091 @kindex next&
7092 @xref{Continuing and Stepping, next}.
7094 @item nexti
7095 @kindex nexti&
7096 @xref{Continuing and Stepping, nexti}.
7098 @item continue
7099 @kindex continue&
7100 @xref{Continuing and Stepping, continue}.
7102 @item finish
7103 @kindex finish&
7104 @xref{Continuing and Stepping, finish}.
7106 @item until
7107 @kindex until&
7108 @xref{Continuing and Stepping, until}.
7110 @end table
7112 Background execution is especially useful in conjunction with non-stop
7113 mode for debugging programs with multiple threads; see @ref{Non-Stop Mode}.
7114 However, you can also use these commands in the normal all-stop mode with
7115 the restriction that you cannot issue another execution command until the
7116 previous one finishes.  Examples of commands that are valid in all-stop
7117 mode while the program is running include @code{help} and @code{info break}.
7119 You can interrupt your program while it is running in the background by
7120 using the @code{interrupt} command.
7122 @table @code
7123 @kindex interrupt
7124 @item interrupt
7125 @itemx interrupt -a
7127 Suspend execution of the running program.  In all-stop mode,
7128 @code{interrupt} stops the whole process, but in non-stop mode, it stops
7129 only the current thread.  To stop the whole program in non-stop mode,
7130 use @code{interrupt -a}.
7131 @end table
7133 @node Thread-Specific Breakpoints
7134 @subsection Thread-Specific Breakpoints
7136 When your program has multiple threads (@pxref{Threads,, Debugging
7137 Programs with Multiple Threads}), you can choose whether to set
7138 breakpoints on all threads, or on a particular thread.
7140 @table @code
7141 @cindex breakpoints and threads
7142 @cindex thread breakpoints
7143 @kindex break @dots{} thread @var{thread-id}
7144 @item break @var{location} thread @var{thread-id}
7145 @itemx break @var{location} thread @var{thread-id} if @dots{}
7146 @var{location} specifies source lines; there are several ways of
7147 writing them (@pxref{Specify Location}), but the effect is always to
7148 specify some source line.
7150 Use the qualifier @samp{thread @var{thread-id}} with a breakpoint command
7151 to specify that you only want @value{GDBN} to stop the program when a
7152 particular thread reaches this breakpoint.  The @var{thread-id} specifier
7153 is one of the thread identifiers assigned by @value{GDBN}, shown
7154 in the first column of the @samp{info threads} display.
7156 If you do not specify @samp{thread @var{thread-id}} when you set a
7157 breakpoint, the breakpoint applies to @emph{all} threads of your
7158 program.
7160 You can use the @code{thread} qualifier on conditional breakpoints as
7161 well; in this case, place @samp{thread @var{thread-id}} before or
7162 after the breakpoint condition, like this:
7164 @smallexample
7165 (@value{GDBP}) break frik.c:13 thread 28 if bartab > lim
7166 @end smallexample
7168 @end table
7170 Thread-specific breakpoints are automatically deleted when
7171 @value{GDBN} detects the corresponding thread is no longer in the
7172 thread list.  For example:
7174 @smallexample
7175 (@value{GDBP}) c
7176 Thread-specific breakpoint 3 deleted - thread 28 no longer in the thread list.
7177 @end smallexample
7179 There are several ways for a thread to disappear, such as a regular
7180 thread exit, but also when you detach from the process with the
7181 @code{detach} command (@pxref{Attach, ,Debugging an Already-running
7182 Process}), or if @value{GDBN} loses the remote connection
7183 (@pxref{Remote Debugging}), etc.  Note that with some targets,
7184 @value{GDBN} is only able to detect a thread has exited when the user
7185 explictly asks for the thread list with the @code{info threads}
7186 command.
7188 @node Interrupted System Calls
7189 @subsection Interrupted System Calls 
7191 @cindex thread breakpoints and system calls
7192 @cindex system calls and thread breakpoints
7193 @cindex premature return from system calls
7194 There is an unfortunate side effect when using @value{GDBN} to debug
7195 multi-threaded programs.  If one thread stops for a
7196 breakpoint, or for some other reason, and another thread is blocked in a
7197 system call, then the system call may return prematurely.  This is a
7198 consequence of the interaction between multiple threads and the signals
7199 that @value{GDBN} uses to implement breakpoints and other events that
7200 stop execution.
7202 To handle this problem, your program should check the return value of
7203 each system call and react appropriately.  This is good programming
7204 style anyways.
7206 For example, do not write code like this:
7208 @smallexample
7209   sleep (10);
7210 @end smallexample
7212 The call to @code{sleep} will return early if a different thread stops
7213 at a breakpoint or for some other reason.
7215 Instead, write this:
7217 @smallexample
7218   int unslept = 10;
7219   while (unslept > 0)
7220     unslept = sleep (unslept);
7221 @end smallexample
7223 A system call is allowed to return early, so the system is still
7224 conforming to its specification.  But @value{GDBN} does cause your
7225 multi-threaded program to behave differently than it would without
7226 @value{GDBN}.
7228 Also, @value{GDBN} uses internal breakpoints in the thread library to
7229 monitor certain events such as thread creation and thread destruction.
7230 When such an event happens, a system call in another thread may return
7231 prematurely, even though your program does not appear to stop.
7233 @node Observer Mode
7234 @subsection Observer Mode
7236 If you want to build on non-stop mode and observe program behavior
7237 without any chance of disruption by @value{GDBN}, you can set
7238 variables to disable all of the debugger's attempts to modify state,
7239 whether by writing memory, inserting breakpoints, etc.  These operate
7240 at a low level, intercepting operations from all commands.
7242 When all of these are set to @code{off}, then @value{GDBN} is said to
7243 be @dfn{observer mode}.  As a convenience, the variable
7244 @code{observer} can be set to disable these, plus enable non-stop
7245 mode.
7247 Note that @value{GDBN} will not prevent you from making nonsensical
7248 combinations of these settings. For instance, if you have enabled
7249 @code{may-insert-breakpoints} but disabled @code{may-write-memory},
7250 then breakpoints that work by writing trap instructions into the code
7251 stream will still not be able to be placed.
7253 @table @code
7255 @kindex observer
7256 @item set observer on
7257 @itemx set observer off
7258 When set to @code{on}, this disables all the permission variables
7259 below (except for @code{insert-fast-tracepoints}), plus enables
7260 non-stop debugging.  Setting this to @code{off} switches back to
7261 normal debugging, though remaining in non-stop mode.
7263 @item show observer
7264 Show whether observer mode is on or off.
7266 @kindex may-write-registers
7267 @item set may-write-registers on
7268 @itemx set may-write-registers off
7269 This controls whether @value{GDBN} will attempt to alter the values of
7270 registers, such as with assignment expressions in @code{print}, or the
7271 @code{jump} command.  It defaults to @code{on}.
7273 @item show may-write-registers
7274 Show the current permission to write registers.
7276 @kindex may-write-memory
7277 @item set may-write-memory on
7278 @itemx set may-write-memory off
7279 This controls whether @value{GDBN} will attempt to alter the contents
7280 of memory, such as with assignment expressions in @code{print}.  It
7281 defaults to @code{on}.
7283 @item show may-write-memory
7284 Show the current permission to write memory.
7286 @kindex may-insert-breakpoints
7287 @item set may-insert-breakpoints on
7288 @itemx set may-insert-breakpoints off
7289 This controls whether @value{GDBN} will attempt to insert breakpoints.
7290 This affects all breakpoints, including internal breakpoints defined
7291 by @value{GDBN}.  It defaults to @code{on}.
7293 @item show may-insert-breakpoints
7294 Show the current permission to insert breakpoints.
7296 @kindex may-insert-tracepoints
7297 @item set may-insert-tracepoints on
7298 @itemx set may-insert-tracepoints off
7299 This controls whether @value{GDBN} will attempt to insert (regular)
7300 tracepoints at the beginning of a tracing experiment.  It affects only
7301 non-fast tracepoints, fast tracepoints being under the control of
7302 @code{may-insert-fast-tracepoints}.  It defaults to @code{on}.
7304 @item show may-insert-tracepoints
7305 Show the current permission to insert tracepoints.
7307 @kindex may-insert-fast-tracepoints
7308 @item set may-insert-fast-tracepoints on
7309 @itemx set may-insert-fast-tracepoints off
7310 This controls whether @value{GDBN} will attempt to insert fast
7311 tracepoints at the beginning of a tracing experiment.  It affects only
7312 fast tracepoints, regular (non-fast) tracepoints being under the
7313 control of @code{may-insert-tracepoints}.  It defaults to @code{on}.
7315 @item show may-insert-fast-tracepoints
7316 Show the current permission to insert fast tracepoints.
7318 @kindex may-interrupt
7319 @item set may-interrupt on
7320 @itemx set may-interrupt off
7321 This controls whether @value{GDBN} will attempt to interrupt or stop
7322 program execution.  When this variable is @code{off}, the
7323 @code{interrupt} command will have no effect, nor will
7324 @kbd{Ctrl-c}. It defaults to @code{on}.
7326 @item show may-interrupt
7327 Show the current permission to interrupt or stop the program.
7329 @end table
7331 @node Reverse Execution
7332 @chapter Running programs backward
7333 @cindex reverse execution
7334 @cindex running programs backward
7336 When you are debugging a program, it is not unusual to realize that
7337 you have gone too far, and some event of interest has already happened.
7338 If the target environment supports it, @value{GDBN} can allow you to
7339 ``rewind'' the program by running it backward.
7341 A target environment that supports reverse execution should be able
7342 to ``undo'' the changes in machine state that have taken place as the
7343 program was executing normally.  Variables, registers etc.@: should
7344 revert to their previous values.  Obviously this requires a great
7345 deal of sophistication on the part of the target environment; not
7346 all target environments can support reverse execution.
7348 When a program is executed in reverse, the instructions that
7349 have most recently been executed are ``un-executed'', in reverse
7350 order.  The program counter runs backward, following the previous
7351 thread of execution in reverse.  As each instruction is ``un-executed'',
7352 the values of memory and/or registers that were changed by that
7353 instruction are reverted to their previous states.  After executing
7354 a piece of source code in reverse, all side effects of that code
7355 should be ``undone'', and all variables should be returned to their
7356 prior values@footnote{
7357 Note that some side effects are easier to undo than others.  For instance,
7358 memory and registers are relatively easy, but device I/O is hard.  Some
7359 targets may be able undo things like device I/O, and some may not.
7361 The contract between @value{GDBN} and the reverse executing target
7362 requires only that the target do something reasonable when
7363 @value{GDBN} tells it to execute backwards, and then report the 
7364 results back to @value{GDBN}.  Whatever the target reports back to
7365 @value{GDBN}, @value{GDBN} will report back to the user.  @value{GDBN}
7366 assumes that the memory and registers that the target reports are in a
7367 consistent state, but @value{GDBN} accepts whatever it is given.
7370 On some platforms, @value{GDBN} has built-in support for reverse
7371 execution, activated with the @code{record} or @code{record btrace}
7372 commands.  @xref{Process Record and Replay}.  Some remote targets,
7373 typically full system emulators, support reverse execution directly
7374 without requiring any special command.
7376 If you are debugging in a target environment that supports
7377 reverse execution, @value{GDBN} provides the following commands.
7379 @table @code
7380 @kindex reverse-continue
7381 @kindex rc @r{(@code{reverse-continue})}
7382 @item reverse-continue @r{[}@var{ignore-count}@r{]}
7383 @itemx rc @r{[}@var{ignore-count}@r{]}
7384 Beginning at the point where your program last stopped, start executing
7385 in reverse.  Reverse execution will stop for breakpoints and synchronous
7386 exceptions (signals), just like normal execution.  Behavior of
7387 asynchronous signals depends on the target environment.
7389 @kindex reverse-step
7390 @kindex rs @r{(@code{step})}
7391 @item reverse-step @r{[}@var{count}@r{]}
7392 Run the program backward until control reaches the start of a
7393 different source line; then stop it, and return control to @value{GDBN}.
7395 Like the @code{step} command, @code{reverse-step} will only stop
7396 at the beginning of a source line.  It ``un-executes'' the previously
7397 executed source line.  If the previous source line included calls to
7398 debuggable functions, @code{reverse-step} will step (backward) into
7399 the called function, stopping at the beginning of the @emph{last}
7400 statement in the called function (typically a return statement).
7402 Also, as with the @code{step} command, if non-debuggable functions are
7403 called, @code{reverse-step} will run thru them backward without stopping.
7405 @kindex reverse-stepi
7406 @kindex rsi @r{(@code{reverse-stepi})}
7407 @item reverse-stepi @r{[}@var{count}@r{]}
7408 Reverse-execute one machine instruction.  Note that the instruction
7409 to be reverse-executed is @emph{not} the one pointed to by the program
7410 counter, but the instruction executed prior to that one.  For instance,
7411 if the last instruction was a jump, @code{reverse-stepi} will take you
7412 back from the destination of the jump to the jump instruction itself.
7414 @kindex reverse-next
7415 @kindex rn @r{(@code{reverse-next})}
7416 @item reverse-next @r{[}@var{count}@r{]}
7417 Run backward to the beginning of the previous line executed in
7418 the current (innermost) stack frame.  If the line contains function
7419 calls, they will be ``un-executed'' without stopping.  Starting from
7420 the first line of a function, @code{reverse-next} will take you back
7421 to the caller of that function, @emph{before} the function was called,
7422 just as the normal @code{next} command would take you from the last 
7423 line of a function back to its return to its caller
7424 @footnote{Unless the code is too heavily optimized.}.
7426 @kindex reverse-nexti
7427 @kindex rni @r{(@code{reverse-nexti})}
7428 @item reverse-nexti @r{[}@var{count}@r{]}
7429 Like @code{nexti}, @code{reverse-nexti} executes a single instruction
7430 in reverse, except that called functions are ``un-executed'' atomically.
7431 That is, if the previously executed instruction was a return from
7432 another function, @code{reverse-nexti} will continue to execute
7433 in reverse until the call to that function (from the current stack
7434 frame) is reached.
7436 @kindex reverse-finish
7437 @item reverse-finish
7438 Just as the @code{finish} command takes you to the point where the
7439 current function returns, @code{reverse-finish} takes you to the point
7440 where it was called.  Instead of ending up at the end of the current
7441 function invocation, you end up at the beginning.
7443 @kindex set exec-direction
7444 @item set exec-direction
7445 Set the direction of target execution.
7446 @item set exec-direction reverse
7447 @cindex execute forward or backward in time
7448 @value{GDBN} will perform all execution commands in reverse, until the
7449 exec-direction mode is changed to ``forward''.  Affected commands include
7450 @code{step, stepi, next, nexti, continue, and finish}.  The @code{return}
7451 command cannot be used in reverse mode.
7452 @item set exec-direction forward
7453 @value{GDBN} will perform all execution commands in the normal fashion.
7454 This is the default.
7455 @end table
7458 @node Process Record and Replay
7459 @chapter Recording Inferior's Execution and Replaying It
7460 @cindex process record and replay
7461 @cindex recording inferior's execution and replaying it
7463 On some platforms, @value{GDBN} provides a special @dfn{process record
7464 and replay} target that can record a log of the process execution, and
7465 replay it later with both forward and reverse execution commands.
7467 @cindex replay mode
7468 When this target is in use, if the execution log includes the record
7469 for the next instruction, @value{GDBN} will debug in @dfn{replay
7470 mode}.  In the replay mode, the inferior does not really execute code
7471 instructions.  Instead, all the events that normally happen during
7472 code execution are taken from the execution log.  While code is not
7473 really executed in replay mode, the values of registers (including the
7474 program counter register) and the memory of the inferior are still
7475 changed as they normally would.  Their contents are taken from the
7476 execution log.
7478 @cindex record mode
7479 If the record for the next instruction is not in the execution log,
7480 @value{GDBN} will debug in @dfn{record mode}.  In this mode, the
7481 inferior executes normally, and @value{GDBN} records the execution log
7482 for future replay.
7484 The process record and replay target supports reverse execution
7485 (@pxref{Reverse Execution}), even if the platform on which the
7486 inferior runs does not.  However, the reverse execution is limited in
7487 this case by the range of the instructions recorded in the execution
7488 log.  In other words, reverse execution on platforms that don't
7489 support it directly can only be done in the replay mode.
7491 When debugging in the reverse direction, @value{GDBN} will work in
7492 replay mode as long as the execution log includes the record for the
7493 previous instruction; otherwise, it will work in record mode, if the
7494 platform supports reverse execution, or stop if not.
7496 Currently, process record and replay is supported on ARM, Aarch64,
7497 Moxie, PowerPC, PowerPC64, S/390, and x86 (i386/amd64) running
7498 GNU/Linux.  Process record and replay can be used both when native
7499 debugging, and when remote debugging via @code{gdbserver}.
7501 For architecture environments that support process record and replay,
7502 @value{GDBN} provides the following commands:
7504 @table @code
7505 @kindex target record
7506 @kindex target record-full
7507 @kindex target record-btrace
7508 @kindex record
7509 @kindex record full
7510 @kindex record btrace
7511 @kindex record btrace bts
7512 @kindex record btrace pt
7513 @kindex record bts
7514 @kindex record pt
7515 @kindex rec
7516 @kindex rec full
7517 @kindex rec btrace
7518 @kindex rec btrace bts
7519 @kindex rec btrace pt
7520 @kindex rec bts
7521 @kindex rec pt
7522 @item record @var{method}
7523 This command starts the process record and replay target.  The
7524 recording method can be specified as parameter.  Without a parameter
7525 the command uses the @code{full} recording method.  The following
7526 recording methods are available:
7528 @table @code
7529 @item full
7530 Full record/replay recording using @value{GDBN}'s software record and
7531 replay implementation.  This method allows replaying and reverse
7532 execution.
7534 @item btrace @var{format}
7535 Hardware-supported instruction recording, supported on Intel
7536 processors.  This method does not record data.  Further, the data is
7537 collected in a ring buffer so old data will be overwritten when the
7538 buffer is full.  It allows limited reverse execution.  Variables and
7539 registers are not available during reverse execution.  In remote
7540 debugging, recording continues on disconnect.  Recorded data can be
7541 inspected after reconnecting.  The recording may be stopped using
7542 @code{record stop}.
7544 The recording format can be specified as parameter.  Without a parameter
7545 the command chooses the recording format.  The following recording
7546 formats are available:
7548 @table @code
7549 @item bts
7550 @cindex branch trace store
7551 Use the @dfn{Branch Trace Store} (@acronym{BTS}) recording format.  In
7552 this format, the processor stores a from/to record for each executed
7553 branch in the btrace ring buffer.
7555 @item pt
7556 @cindex Intel Processor Trace
7557 Use the @dfn{Intel Processor Trace} recording format.  In this
7558 format, the processor stores the execution trace in a compressed form
7559 that is afterwards decoded by @value{GDBN}.
7561 The trace can be recorded with very low overhead.  The compressed
7562 trace format also allows small trace buffers to already contain a big
7563 number of instructions compared to @acronym{BTS}.
7565 Decoding the recorded execution trace, on the other hand, is more
7566 expensive than decoding @acronym{BTS} trace.  This is mostly due to the
7567 increased number of instructions to process.  You should increase the
7568 buffer-size with care.
7569 @end table
7571 Not all recording formats may be available on all processors.
7572 @end table
7574 The process record and replay target can only debug a process that is
7575 already running.  Therefore, you need first to start the process with
7576 the @kbd{run} or @kbd{start} commands, and then start the recording
7577 with the @kbd{record @var{method}} command.
7579 @cindex displaced stepping, and process record and replay
7580 Displaced stepping (@pxref{Maintenance Commands,, displaced stepping})
7581 will be automatically disabled when process record and replay target
7582 is started.  That's because the process record and replay target
7583 doesn't support displaced stepping.
7585 @cindex non-stop mode, and process record and replay
7586 @cindex asynchronous execution, and process record and replay
7587 If the inferior is in the non-stop mode (@pxref{Non-Stop Mode}) or in
7588 the asynchronous execution mode (@pxref{Background Execution}), not
7589 all recording methods are available.  The @code{full} recording method
7590 does not support these two modes.
7592 @kindex record stop
7593 @kindex rec s
7594 @item record stop
7595 Stop the process record and replay target.  When process record and
7596 replay target stops, the entire execution log will be deleted and the
7597 inferior will either be terminated, or will remain in its final state.
7599 When you stop the process record and replay target in record mode (at
7600 the end of the execution log), the inferior will be stopped at the
7601 next instruction that would have been recorded.  In other words, if
7602 you record for a while and then stop recording, the inferior process
7603 will be left in the same state as if the recording never happened.
7605 On the other hand, if the process record and replay target is stopped
7606 while in replay mode (that is, not at the end of the execution log,
7607 but at some earlier point), the inferior process will become ``live''
7608 at that earlier state, and it will then be possible to continue the
7609 usual ``live'' debugging of the process from that state.
7611 When the inferior process exits, or @value{GDBN} detaches from it,
7612 process record and replay target will automatically stop itself.
7614 @kindex record goto
7615 @item record goto
7616 Go to a specific location in the execution log.  There are several
7617 ways to specify the location to go to:
7619 @table @code
7620 @item record goto begin
7621 @itemx record goto start
7622 Go to the beginning of the execution log.
7624 @item record goto end
7625 Go to the end of the execution log.
7627 @item record goto @var{n}
7628 Go to instruction number @var{n} in the execution log.
7629 @end table
7631 @kindex record save
7632 @item record save @var{filename}
7633 Save the execution log to a file @file{@var{filename}}.
7634 Default filename is @file{gdb_record.@var{process_id}}, where
7635 @var{process_id} is the process ID of the inferior.
7637 This command may not be available for all recording methods.
7639 @kindex record restore
7640 @item record restore @var{filename}
7641 Restore the execution log from a file @file{@var{filename}}.
7642 File must have been created with @code{record save}.
7644 @kindex set record full
7645 @item set record full insn-number-max @var{limit}
7646 @itemx set record full insn-number-max unlimited
7647 Set the limit of instructions to be recorded for the @code{full}
7648 recording method.  Default value is 200000.
7650 If @var{limit} is a positive number, then @value{GDBN} will start
7651 deleting instructions from the log once the number of the record
7652 instructions becomes greater than @var{limit}.  For every new recorded
7653 instruction, @value{GDBN} will delete the earliest recorded
7654 instruction to keep the number of recorded instructions at the limit.
7655 (Since deleting recorded instructions loses information, @value{GDBN}
7656 lets you control what happens when the limit is reached, by means of
7657 the @code{stop-at-limit} option, described below.)
7659 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will never
7660 delete recorded instructions from the execution log.  The number of
7661 recorded instructions is limited only by the available memory.
7663 @kindex show record full
7664 @item show record full insn-number-max
7665 Show the limit of instructions to be recorded with the @code{full}
7666 recording method.
7668 @item set record full stop-at-limit
7669 Control the behavior of the  @code{full} recording method when the
7670 number of recorded instructions reaches the limit.  If ON (the
7671 default), @value{GDBN} will stop when the limit is reached for the
7672 first time and ask you whether you want to stop the inferior or
7673 continue running it and recording the execution log.  If you decide
7674 to continue recording, each new recorded instruction will cause the
7675 oldest one to be deleted.
7677 If this option is OFF, @value{GDBN} will automatically delete the
7678 oldest record to make room for each new one, without asking.
7680 @item show record full stop-at-limit
7681 Show the current setting of @code{stop-at-limit}.
7683 @item set record full memory-query
7684 Control the behavior when @value{GDBN} is unable to record memory
7685 changes caused by an instruction for the @code{full} recording method.
7686 If ON, @value{GDBN} will query whether to stop the inferior in that
7687 case.
7689 If this option is OFF (the default), @value{GDBN} will automatically
7690 ignore the effect of such instructions on memory.  Later, when
7691 @value{GDBN} replays this execution log, it will mark the log of this
7692 instruction as not accessible, and it will not affect the replay
7693 results.
7695 @item show record full memory-query
7696 Show the current setting of @code{memory-query}.
7698 @kindex set record btrace
7699 The @code{btrace} record target does not trace data.  As a
7700 convenience, when replaying, @value{GDBN} reads read-only memory off
7701 the live program directly, assuming that the addresses of the
7702 read-only areas don't change.  This for example makes it possible to
7703 disassemble code while replaying, but not to print variables.
7704 In some cases, being able to inspect variables might be useful.
7705 You can use the following command for that:
7707 @item set record btrace replay-memory-access
7708 Control the behavior of the @code{btrace} recording method when
7709 accessing memory during replay.  If @code{read-only} (the default),
7710 @value{GDBN} will only allow accesses to read-only memory.
7711 If @code{read-write}, @value{GDBN} will allow accesses to read-only
7712 and to read-write memory.  Beware that the accessed memory corresponds
7713 to the live target and not necessarily to the current replay
7714 position.
7716 @item set record btrace cpu @var{identifier}
7717 Set the processor to be used for enabling workarounds for processor
7718 errata when decoding the trace.
7720 Processor errata are defects in processor operation, caused by its
7721 design or manufacture.  They can cause a trace not to match the
7722 specification.  This, in turn, may cause trace decode to fail.
7723 @value{GDBN} can detect erroneous trace packets and correct them, thus
7724 avoiding the decoding failures.  These corrections are known as
7725 @dfn{errata workarounds}, and are enabled based on the processor on
7726 which the trace was recorded.
7728 By default, @value{GDBN} attempts to detect the processor
7729 automatically, and apply the necessary workarounds for it.  However,
7730 you may need to specify the processor if @value{GDBN} does not yet
7731 support it.  This command allows you to do that, and also allows to
7732 disable the workarounds.
7734 The argument @var{identifier} identifies the @sc{cpu} and is of the
7735 form: @code{@var{vendor}:@var{processor identifier}}.  In addition,
7736 there are two special identifiers, @code{none} and @code{auto}
7737 (default).
7739 The following vendor identifiers and corresponding processor
7740 identifiers are currently supported:
7742 @multitable @columnfractions .1 .9
7744 @item @code{intel}
7745 @tab @var{family}/@var{model}[/@var{stepping}]
7747 @end multitable
7749 On GNU/Linux systems, the processor @var{family}, @var{model}, and
7750 @var{stepping} can be obtained from @code{/proc/cpuinfo}.
7752 If @var{identifier} is @code{auto}, enable errata workarounds for the
7753 processor on which the trace was recorded.  If @var{identifier} is
7754 @code{none}, errata workarounds are disabled.
7756 For example, when using an old @value{GDBN} on a new system, decode
7757 may fail because @value{GDBN} does not support the new processor.  It
7758 often suffices to specify an older processor that @value{GDBN}
7759 supports.
7761 @smallexample
7762 (gdb) info record
7763 Active record target: record-btrace
7764 Recording format: Intel Processor Trace.
7765 Buffer size: 16kB.
7766 Failed to configure the Intel Processor Trace decoder: unknown cpu.
7767 (gdb) set record btrace cpu intel:6/158
7768 (gdb) info record
7769 Active record target: record-btrace
7770 Recording format: Intel Processor Trace.
7771 Buffer size: 16kB.
7772 Recorded 84872 instructions in 3189 functions (0 gaps) for thread 1 (...).
7773 @end smallexample
7775 @kindex show record btrace
7776 @item show record btrace replay-memory-access
7777 Show the current setting of @code{replay-memory-access}.
7779 @item show record btrace cpu
7780 Show the processor to be used for enabling trace decode errata
7781 workarounds.
7783 @kindex set record btrace bts
7784 @item set record btrace bts buffer-size @var{size}
7785 @itemx set record btrace bts buffer-size unlimited
7786 Set the requested ring buffer size for branch tracing in @acronym{BTS}
7787 format.  Default is 64KB.
7789 If @var{size} is a positive number, then @value{GDBN} will try to
7790 allocate a buffer of at least @var{size} bytes for each new thread
7791 that uses the btrace recording method and the @acronym{BTS} format.
7792 The actually obtained buffer size may differ from the requested
7793 @var{size}.  Use the @code{info record} command to see the actual
7794 buffer size for each thread that uses the btrace recording method and
7795 the @acronym{BTS} format.
7797 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7798 allocate a buffer of 4MB.
7800 Bigger buffers mean longer traces.  On the other hand, @value{GDBN} will
7801 also need longer to process the branch trace data before it can be used.
7803 @item show record btrace bts buffer-size @var{size}
7804 Show the current setting of the requested ring buffer size for branch
7805 tracing in @acronym{BTS} format.
7807 @kindex set record btrace pt
7808 @item set record btrace pt buffer-size @var{size}
7809 @itemx set record btrace pt buffer-size unlimited
7810 Set the requested ring buffer size for branch tracing in Intel
7811 Processor Trace format.  Default is 16KB.
7813 If @var{size} is a positive number, then @value{GDBN} will try to
7814 allocate a buffer of at least @var{size} bytes for each new thread
7815 that uses the btrace recording method and the Intel Processor Trace
7816 format.  The actually obtained buffer size may differ from the
7817 requested @var{size}.  Use the @code{info record} command to see the
7818 actual buffer size for each thread.
7820 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7821 allocate a buffer of 4MB.
7823 Bigger buffers mean longer traces.  On the other hand, @value{GDBN} will
7824 also need longer to process the branch trace data before it can be used.
7826 @item show record btrace pt buffer-size @var{size}
7827 Show the current setting of the requested ring buffer size for branch
7828 tracing in Intel Processor Trace format.
7830 @kindex info record
7831 @item info record
7832 Show various statistics about the recording depending on the recording
7833 method:
7835 @table @code
7836 @item full
7837 For the @code{full} recording method, it shows the state of process
7838 record and its in-memory execution log buffer, including:
7840 @itemize @bullet
7841 @item
7842 Whether in record mode or replay mode.
7843 @item
7844 Lowest recorded instruction number (counting from when the current execution log started recording instructions).
7845 @item
7846 Highest recorded instruction number.
7847 @item
7848 Current instruction about to be replayed (if in replay mode).
7849 @item
7850 Number of instructions contained in the execution log.
7851 @item
7852 Maximum number of instructions that may be contained in the execution log.
7853 @end itemize
7855 @item btrace
7856 For the @code{btrace} recording method, it shows:
7858 @itemize @bullet
7859 @item
7860 Recording format.
7861 @item
7862 Number of instructions that have been recorded.
7863 @item
7864 Number of blocks of sequential control-flow formed by the recorded
7865 instructions.
7866 @item
7867 Whether in record mode or replay mode.
7868 @end itemize
7870 For the @code{bts} recording format, it also shows:
7871 @itemize @bullet
7872 @item
7873 Size of the perf ring buffer.
7874 @end itemize
7876 For the @code{pt} recording format, it also shows:
7877 @itemize @bullet
7878 @item
7879 Size of the perf ring buffer.
7880 @end itemize
7881 @end table
7883 @kindex record delete
7884 @kindex rec del
7885 @item record delete
7886 When record target runs in replay mode (``in the past''), delete the
7887 subsequent execution log and begin to record a new execution log starting
7888 from the current address.  This means you will abandon the previously
7889 recorded ``future'' and begin recording a new ``future''.
7891 @kindex record instruction-history
7892 @kindex rec instruction-history
7893 @item record instruction-history
7894 Disassembles instructions from the recorded execution log.  By
7895 default, ten instructions are disassembled.  This can be changed using
7896 the @code{set record instruction-history-size} command.  Instructions
7897 are printed in execution order.
7899 It can also print mixed source+disassembly if you specify the the
7900 @code{/m} or @code{/s} modifier, and print the raw instructions in hex
7901 as well as in symbolic form by specifying the @code{/r} modifier.
7903 The current position marker is printed for the instruction at the
7904 current program counter value.  This instruction can appear multiple
7905 times in the trace and the current position marker will be printed
7906 every time.  To omit the current position marker, specify the
7907 @code{/p} modifier.
7909 To better align the printed instructions when the trace contains
7910 instructions from more than one function, the function name may be
7911 omitted by specifying the @code{/f} modifier.
7913 Speculatively executed instructions are prefixed with @samp{?}.  This
7914 feature is not available for all recording formats.
7916 There are several ways to specify what part of the execution log to
7917 disassemble:
7919 @table @code
7920 @item record instruction-history @var{insn}
7921 Disassembles ten instructions starting from instruction number
7922 @var{insn}.
7924 @item record instruction-history @var{insn}, +/-@var{n}
7925 Disassembles @var{n} instructions around instruction number
7926 @var{insn}.  If @var{n} is preceded with @code{+}, disassembles
7927 @var{n} instructions after instruction number @var{insn}.  If
7928 @var{n} is preceded with @code{-}, disassembles @var{n}
7929 instructions before instruction number @var{insn}.
7931 @item record instruction-history
7932 Disassembles ten more instructions after the last disassembly.
7934 @item record instruction-history -
7935 Disassembles ten more instructions before the last disassembly.
7937 @item record instruction-history @var{begin}, @var{end}
7938 Disassembles instructions beginning with instruction number
7939 @var{begin} until instruction number @var{end}.  The instruction
7940 number @var{end} is included.
7941 @end table
7943 This command may not be available for all recording methods.
7945 @kindex set record
7946 @item set record instruction-history-size @var{size}
7947 @itemx set record instruction-history-size unlimited
7948 Define how many instructions to disassemble in the @code{record
7949 instruction-history} command.  The default value is 10.
7950 A @var{size} of @code{unlimited} means unlimited instructions.
7952 @kindex show record
7953 @item show record instruction-history-size
7954 Show how many instructions to disassemble in the @code{record
7955 instruction-history} command.
7957 @kindex record function-call-history
7958 @kindex rec function-call-history
7959 @item record function-call-history
7960 Prints the execution history at function granularity.  For each sequence
7961 of instructions that belong to the same function, it prints the name of
7962 that function, the source lines for this instruction sequence (if the
7963 @code{/l} modifier is specified), and the instructions numbers that form
7964 the sequence (if the @code{/i} modifier is specified).  The function names
7965 are indented to reflect the call stack depth if the @code{/c} modifier is
7966 specified.  The @code{/l}, @code{/i}, and @code{/c} modifiers can be given
7967 together.
7969 @smallexample
7970 (@value{GDBP}) @b{list 1, 10}
7971 1   void foo (void)
7972 2   @{
7973 3   @}
7975 5   void bar (void)
7976 6   @{
7977 7     ...
7978 8     foo ();
7979 9     ...
7980 10  @}
7981 (@value{GDBP}) @b{record function-call-history /ilc}
7982 1  bar     inst 1,4     at foo.c:6,8
7983 2    foo   inst 5,10    at foo.c:2,3
7984 3  bar     inst 11,13   at foo.c:9,10
7985 @end smallexample
7987 By default, ten functions are printed.  This can be changed using the
7988 @code{set record function-call-history-size} command.  Functions are
7989 printed in execution order.  There are several ways to specify what
7990 to print:
7992 @table @code
7993 @item record function-call-history @var{func}
7994 Prints ten functions starting from function number @var{func}.
7996 @item record function-call-history @var{func}, +/-@var{n}
7997 Prints @var{n} functions around function number @var{func}.  If
7998 @var{n} is preceded with @code{+}, prints @var{n} functions after
7999 function number @var{func}.  If @var{n} is preceded with @code{-},
8000 prints @var{n} functions before function number @var{func}.
8002 @item record function-call-history
8003 Prints ten more functions after the last ten-function print.
8005 @item record function-call-history -
8006 Prints ten more functions before the last ten-function print.
8008 @item record function-call-history @var{begin}, @var{end}
8009 Prints functions beginning with function number @var{begin} until
8010 function number @var{end}.  The function number @var{end} is included.
8011 @end table
8013 This command may not be available for all recording methods.
8015 @item set record function-call-history-size @var{size}
8016 @itemx set record function-call-history-size unlimited
8017 Define how many functions to print in the
8018 @code{record function-call-history} command.  The default value is 10.
8019 A size of @code{unlimited} means unlimited functions.
8021 @item show record function-call-history-size
8022 Show how many functions to print in the
8023 @code{record function-call-history} command.
8024 @end table
8027 @node Stack
8028 @chapter Examining the Stack
8030 When your program has stopped, the first thing you need to know is where it
8031 stopped and how it got there.
8033 @cindex call stack
8034 Each time your program performs a function call, information about the call
8035 is generated.
8036 That information includes the location of the call in your program,
8037 the arguments of the call,
8038 and the local variables of the function being called.
8039 The information is saved in a block of data called a @dfn{stack frame}.
8040 The stack frames are allocated in a region of memory called the @dfn{call
8041 stack}.
8043 When your program stops, the @value{GDBN} commands for examining the
8044 stack allow you to see all of this information.
8046 @cindex selected frame
8047 One of the stack frames is @dfn{selected} by @value{GDBN} and many
8048 @value{GDBN} commands refer implicitly to the selected frame.  In
8049 particular, whenever you ask @value{GDBN} for the value of a variable in
8050 your program, the value is found in the selected frame.  There are
8051 special @value{GDBN} commands to select whichever frame you are
8052 interested in.  @xref{Selection, ,Selecting a Frame}.
8054 When your program stops, @value{GDBN} automatically selects the
8055 currently executing frame and describes it briefly, similar to the
8056 @code{frame} command (@pxref{Frame Info, ,Information about a Frame}).
8058 @menu
8059 * Frames::                      Stack frames
8060 * Backtrace::                   Backtraces
8061 * Selection::                   Selecting a frame
8062 * Frame Info::                  Information on a frame
8063 * Frame Apply::                 Applying a command to several frames
8064 * Frame Filter Management::     Managing frame filters
8066 @end menu
8068 @node Frames
8069 @section Stack Frames
8071 @cindex frame, definition
8072 @cindex stack frame
8073 The call stack is divided up into contiguous pieces called @dfn{stack
8074 frames}, or @dfn{frames} for short; each frame is the data associated
8075 with one call to one function.  The frame contains the arguments given
8076 to the function, the function's local variables, and the address at
8077 which the function is executing.
8079 @cindex initial frame
8080 @cindex outermost frame
8081 @cindex innermost frame
8082 When your program is started, the stack has only one frame, that of the
8083 function @code{main}.  This is called the @dfn{initial} frame or the
8084 @dfn{outermost} frame.  Each time a function is called, a new frame is
8085 made.  Each time a function returns, the frame for that function invocation
8086 is eliminated.  If a function is recursive, there can be many frames for
8087 the same function.  The frame for the function in which execution is
8088 actually occurring is called the @dfn{innermost} frame.  This is the most
8089 recently created of all the stack frames that still exist.
8091 @cindex frame pointer
8092 Inside your program, stack frames are identified by their addresses.  A
8093 stack frame consists of many bytes, each of which has its own address; each
8094 kind of computer has a convention for choosing one byte whose
8095 address serves as the address of the frame.  Usually this address is kept
8096 in a register called the @dfn{frame pointer register}
8097 (@pxref{Registers, $fp}) while execution is going on in that frame.
8099 @cindex frame level
8100 @cindex frame number
8101 @value{GDBN} labels each existing stack frame with a @dfn{level}, a
8102 number that is zero for the innermost frame, one for the frame that
8103 called it, and so on upward.  These level numbers give you a way of
8104 designating stack frames in @value{GDBN} commands.  The terms
8105 @dfn{frame number} and @dfn{frame level} can be used interchangeably to
8106 describe this number.
8108 @c The -fomit-frame-pointer below perennially causes hbox overflow
8109 @c underflow problems.
8110 @cindex frameless execution
8111 Some compilers provide a way to compile functions so that they operate
8112 without stack frames.  (For example, the @value{NGCC} option
8113 @smallexample
8114 @samp{-fomit-frame-pointer}
8115 @end smallexample
8116 generates functions without a frame.)
8117 This is occasionally done with heavily used library functions to save
8118 the frame setup time.  @value{GDBN} has limited facilities for dealing
8119 with these function invocations.  If the innermost function invocation
8120 has no stack frame, @value{GDBN} nevertheless regards it as though
8121 it had a separate frame, which is numbered zero as usual, allowing
8122 correct tracing of the function call chain.  However, @value{GDBN} has
8123 no provision for frameless functions elsewhere in the stack.
8125 @node Backtrace
8126 @section Backtraces
8128 @cindex traceback
8129 @cindex call stack traces
8130 A backtrace is a summary of how your program got where it is.  It shows one
8131 line per frame, for many frames, starting with the currently executing
8132 frame (frame zero), followed by its caller (frame one), and on up the
8133 stack.
8135 @anchor{backtrace-command}
8136 @kindex backtrace
8137 @kindex bt @r{(@code{backtrace})}
8138 To print a backtrace of the entire stack, use the @code{backtrace}
8139 command, or its alias @code{bt}.  This command will print one line per
8140 frame for frames in the stack.  By default, all stack frames are
8141 printed.  You can stop the backtrace at any time by typing the system
8142 interrupt character, normally @kbd{Ctrl-c}.
8144 @table @code
8145 @item backtrace [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8146 @itemx bt [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8147 Print the backtrace of the entire stack.
8149 The optional @var{count} can be one of the following:
8151 @table @code
8152 @item @var{n}
8153 @itemx @var{n}
8154 Print only the innermost @var{n} frames, where @var{n} is a positive
8155 number.
8157 @item -@var{n}
8158 @itemx -@var{n}
8159 Print only the outermost @var{n} frames, where @var{n} is a positive
8160 number.
8161 @end table
8163 Options:
8165 @table @code
8166 @item -full
8167 Print the values of the local variables also.  This can be combined
8168 with the optional @var{count} to limit the number of frames shown.
8170 @item -no-filters
8171 Do not run Python frame filters on this backtrace.  @xref{Frame
8172 Filter API}, for more information.  Additionally use @ref{disable
8173 frame-filter all} to turn off all frame filters.  This is only
8174 relevant when @value{GDBN} has been configured with @code{Python}
8175 support.
8177 @item -hide
8178 A Python frame filter might decide to ``elide'' some frames.  Normally
8179 such elided frames are still printed, but they are indented relative
8180 to the filtered frames that cause them to be elided.  The @code{-hide}
8181 option causes elided frames to not be printed at all.
8182 @end table
8184 The @code{backtrace} command also supports a number of options that
8185 allow overriding relevant global print settings as set by @code{set
8186 backtrace} and @code{set print} subcommands:
8188 @table @code
8189 @item -past-main [@code{on}|@code{off}]
8190 Set whether backtraces should continue past @code{main}.  Related setting:
8191 @ref{set backtrace past-main}.
8193 @item -past-entry [@code{on}|@code{off}]
8194 Set whether backtraces should continue past the entry point of a program.
8195 Related setting: @ref{set backtrace past-entry}.
8197 @item -entry-values @code{no}|@code{only}|@code{preferred}|@code{if-needed}|@code{both}|@code{compact}|@code{default}
8198 Set printing of function arguments at function entry.
8199 Related setting: @ref{set print entry-values}.
8201 @item -frame-arguments @code{all}|@code{scalars}|@code{none}
8202 Set printing of non-scalar frame arguments.
8203 Related setting: @ref{set print frame-arguments}.
8205 @item -raw-frame-arguments [@code{on}|@code{off}]
8206 Set whether to print frame arguments in raw form.
8207 Related setting: @ref{set print raw-frame-arguments}.
8209 @item -frame-info @code{auto}|@code{source-line}|@code{location}|@code{source-and-location}|@code{location-and-address}|@code{short-location}
8210 Set printing of frame information.
8211 Related setting: @ref{set print frame-info}.
8212 @end table
8214 The optional @var{qualifier} is maintained for backward compatibility.
8215 It can be one of the following:
8217 @table @code
8218 @item full
8219 Equivalent to the @code{-full} option.
8221 @item no-filters
8222 Equivalent to the @code{-no-filters} option.
8224 @item hide
8225 Equivalent to the @code{-hide} option.
8226 @end table
8228 @end table
8230 @kindex where
8231 @kindex info stack
8232 The names @code{where} and @code{info stack} (abbreviated @code{info s})
8233 are additional aliases for @code{backtrace}.
8235 @cindex multiple threads, backtrace
8236 In a multi-threaded program, @value{GDBN} by default shows the
8237 backtrace only for the current thread.  To display the backtrace for
8238 several or all of the threads, use the command @code{thread apply}
8239 (@pxref{Threads, thread apply}).  For example, if you type @kbd{thread
8240 apply all backtrace}, @value{GDBN} will display the backtrace for all
8241 the threads; this is handy when you debug a core dump of a
8242 multi-threaded program.
8244 Each line in the backtrace shows the frame number and the function name.
8245 The program counter value is also shown---unless you use @code{set
8246 print address off}.  The backtrace also shows the source file name and
8247 line number, as well as the arguments to the function.  The program
8248 counter value is omitted if it is at the beginning of the code for that
8249 line number.
8251 Here is an example of a backtrace.  It was made with the command
8252 @samp{bt 3}, so it shows the innermost three frames.
8254 @smallexample
8255 @group
8256 #0  m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
8257     at builtin.c:993
8258 #1  0x6e38 in expand_macro (sym=0x2b600, data=...) at macro.c:242
8259 #2  0x6840 in expand_token (obs=0x0, t=177664, td=0xf7fffb08)
8260     at macro.c:71
8261 (More stack frames follow...)
8262 @end group
8263 @end smallexample
8265 @noindent
8266 The display for frame zero does not begin with a program counter
8267 value, indicating that your program has stopped at the beginning of the
8268 code for line @code{993} of @code{builtin.c}.
8270 @noindent
8271 The value of parameter @code{data} in frame 1 has been replaced by
8272 @code{@dots{}}.  By default, @value{GDBN} prints the value of a parameter
8273 only if it is a scalar (integer, pointer, enumeration, etc).  See command
8274 @kbd{set print frame-arguments} in @ref{Print Settings} for more details
8275 on how to configure the way function parameter values are printed.
8276 The command @kbd{set print frame-info} (@pxref{Print Settings}) controls
8277 what frame information is printed.
8279 @cindex optimized out, in backtrace
8280 @cindex function call arguments, optimized out
8281 If your program was compiled with optimizations, some compilers will
8282 optimize away arguments passed to functions if those arguments are
8283 never used after the call.  Such optimizations generate code that
8284 passes arguments through registers, but doesn't store those arguments
8285 in the stack frame.  @value{GDBN} has no way of displaying such
8286 arguments in stack frames other than the innermost one.  Here's what
8287 such a backtrace might look like:
8289 @smallexample
8290 @group
8291 #0  m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
8292     at builtin.c:993
8293 #1  0x6e38 in expand_macro (sym=<optimized out>) at macro.c:242
8294 #2  0x6840 in expand_token (obs=0x0, t=<optimized out>, td=0xf7fffb08)
8295     at macro.c:71
8296 (More stack frames follow...)
8297 @end group
8298 @end smallexample
8300 @noindent
8301 The values of arguments that were not saved in their stack frames are
8302 shown as @samp{<optimized out>}.
8304 If you need to display the values of such optimized-out arguments,
8305 either deduce that from other variables whose values depend on the one
8306 you are interested in, or recompile without optimizations.
8308 @cindex backtrace beyond @code{main} function
8309 @cindex program entry point
8310 @cindex startup code, and backtrace
8311 Most programs have a standard user entry point---a place where system
8312 libraries and startup code transition into user code.  For C this is
8313 @code{main}@footnote{
8314 Note that embedded programs (the so-called ``free-standing''
8315 environment) are not required to have a @code{main} function as the
8316 entry point.  They could even have multiple entry points.}.
8317 When @value{GDBN} finds the entry function in a backtrace
8318 it will terminate the backtrace, to avoid tracing into highly
8319 system-specific (and generally uninteresting) code.
8321 If you need to examine the startup code, or limit the number of levels
8322 in a backtrace, you can change this behavior:
8324 @table @code
8325 @item set backtrace past-main
8326 @itemx set backtrace past-main on
8327 @anchor{set backtrace past-main}
8328 @kindex set backtrace
8329 Backtraces will continue past the user entry point.
8331 @item set backtrace past-main off
8332 Backtraces will stop when they encounter the user entry point.  This is the
8333 default.
8335 @item show backtrace past-main
8336 @kindex show backtrace
8337 Display the current user entry point backtrace policy.
8339 @item set backtrace past-entry
8340 @itemx set backtrace past-entry on
8341 @anchor{set backtrace past-entry}
8342 Backtraces will continue past the internal entry point of an application.
8343 This entry point is encoded by the linker when the application is built,
8344 and is likely before the user entry point @code{main} (or equivalent) is called.
8346 @item set backtrace past-entry off
8347 Backtraces will stop when they encounter the internal entry point of an
8348 application.  This is the default.
8350 @item show backtrace past-entry
8351 Display the current internal entry point backtrace policy.
8353 @item set backtrace limit @var{n}
8354 @itemx set backtrace limit 0
8355 @itemx set backtrace limit unlimited
8356 @anchor{set backtrace limit}
8357 @cindex backtrace limit
8358 Limit the backtrace to @var{n} levels.  A value of @code{unlimited}
8359 or zero means unlimited levels.
8361 @item show backtrace limit
8362 Display the current limit on backtrace levels.
8363 @end table
8365 You can control how file names are displayed.
8367 @table @code
8368 @item set filename-display
8369 @itemx set filename-display relative
8370 @cindex filename-display
8371 Display file names relative to the compilation directory.  This is the default.
8373 @item set filename-display basename
8374 Display only basename of a filename.
8376 @item set filename-display absolute
8377 Display an absolute filename.
8379 @item show filename-display
8380 Show the current way to display filenames.
8381 @end table
8383 @node Selection
8384 @section Selecting a Frame
8386 Most commands for examining the stack and other data in your program work on
8387 whichever stack frame is selected at the moment.  Here are the commands for
8388 selecting a stack frame; all of them finish by printing a brief description
8389 of the stack frame just selected.
8391 @table @code
8392 @kindex frame@r{, selecting}
8393 @kindex f @r{(@code{frame})}
8394 @item frame @r{[} @var{frame-selection-spec} @r{]}
8395 @item f @r{[} @var{frame-selection-spec} @r{]}
8396 The @command{frame} command allows different stack frames to be
8397 selected.  The @var{frame-selection-spec} can be any of the following:
8399 @table @code
8400 @kindex frame level
8401 @item @var{num}
8402 @item level @var{num}
8403 Select frame level @var{num}.  Recall that frame zero is the innermost
8404 (currently executing) frame, frame one is the frame that called the
8405 innermost one, and so on.  The highest level frame is usually the one
8406 for @code{main}.
8408 As this is the most common method of navigating the frame stack, the
8409 string @command{level} can be omitted.  For example, the following two
8410 commands are equivalent:
8412 @smallexample
8413 (@value{GDBP}) frame 3
8414 (@value{GDBP}) frame level 3
8415 @end smallexample
8417 @kindex frame address
8418 @item address @var{stack-address}
8419 Select the frame with stack address @var{stack-address}.  The
8420 @var{stack-address} for a frame can be seen in the output of
8421 @command{info frame}, for example:
8423 @smallexample
8424 (gdb) info frame
8425 Stack level 1, frame at 0x7fffffffda30:
8426  rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
8427  tail call frame, caller of frame at 0x7fffffffda30
8428  source language c++.
8429  Arglist at unknown address.
8430  Locals at unknown address, Previous frame's sp is 0x7fffffffda30
8431 @end smallexample
8433 The @var{stack-address} for this frame is @code{0x7fffffffda30} as
8434 indicated by the line:
8436 @smallexample
8437 Stack level 1, frame at 0x7fffffffda30:
8438 @end smallexample
8440 @kindex frame function
8441 @item function @var{function-name}
8442 Select the stack frame for function @var{function-name}.  If there are
8443 multiple stack frames for function @var{function-name} then the inner
8444 most stack frame is selected.
8446 @kindex frame view
8447 @item view @var{stack-address} @r{[} @var{pc-addr} @r{]}
8448 View a frame that is not part of @value{GDBN}'s backtrace.  The frame
8449 viewed has stack address @var{stack-addr}, and optionally, a program
8450 counter address of @var{pc-addr}.
8452 This is useful mainly if the chaining of stack frames has been
8453 damaged by a bug, making it impossible for @value{GDBN} to assign
8454 numbers properly to all frames.  In addition, this can be useful
8455 when your program has multiple stacks and switches between them.
8457 When viewing a frame outside the current backtrace using
8458 @command{frame view} then you can always return to the original
8459 stack using one of the previous stack frame selection instructions,
8460 for example @command{frame level 0}.
8462 @end table
8464 @kindex up
8465 @item up @var{n}
8466 Move @var{n} frames up the stack; @var{n} defaults to 1.  For positive
8467 numbers @var{n}, this advances toward the outermost frame, to higher
8468 frame numbers, to frames that have existed longer.
8470 @kindex down
8471 @kindex do @r{(@code{down})}
8472 @item down @var{n}
8473 Move @var{n} frames down the stack; @var{n} defaults to 1.  For
8474 positive numbers @var{n}, this advances toward the innermost frame, to
8475 lower frame numbers, to frames that were created more recently.
8476 You may abbreviate @code{down} as @code{do}.
8477 @end table
8479 All of these commands end by printing two lines of output describing the
8480 frame.  The first line shows the frame number, the function name, the
8481 arguments, and the source file and line number of execution in that
8482 frame.  The second line shows the text of that source line.
8484 @need 1000
8485 For example:
8487 @smallexample
8488 @group
8489 (@value{GDBP}) up
8490 #1  0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc)
8491     at env.c:10
8492 10              read_input_file (argv[i]);
8493 @end group
8494 @end smallexample
8496 After such a printout, the @code{list} command with no arguments
8497 prints ten lines centered on the point of execution in the frame.
8498 You can also edit the program at the point of execution with your favorite
8499 editing program by typing @code{edit}.
8500 @xref{List, ,Printing Source Lines},
8501 for details.
8503 @table @code
8504 @kindex select-frame
8505 @item select-frame @r{[} @var{frame-selection-spec} @r{]}
8506 The @code{select-frame} command is a variant of @code{frame} that does
8507 not display the new frame after selecting it.  This command is
8508 intended primarily for use in @value{GDBN} command scripts, where the
8509 output might be unnecessary and distracting.  The
8510 @var{frame-selection-spec} is as for the @command{frame} command
8511 described in @ref{Selection, ,Selecting a Frame}.
8513 @kindex down-silently
8514 @kindex up-silently
8515 @item up-silently @var{n}
8516 @itemx down-silently @var{n}
8517 These two commands are variants of @code{up} and @code{down},
8518 respectively; they differ in that they do their work silently, without
8519 causing display of the new frame.  They are intended primarily for use
8520 in @value{GDBN} command scripts, where the output might be unnecessary and
8521 distracting.
8522 @end table
8524 @node Frame Info
8525 @section Information About a Frame
8527 There are several other commands to print information about the selected
8528 stack frame.
8530 @table @code
8531 @item frame
8532 @itemx f
8533 When used without any argument, this command does not change which
8534 frame is selected, but prints a brief description of the currently
8535 selected stack frame.  It can be abbreviated @code{f}.  With an
8536 argument, this command is used to select a stack frame.
8537 @xref{Selection, ,Selecting a Frame}.
8539 @kindex info frame
8540 @kindex info f @r{(@code{info frame})}
8541 @item info frame
8542 @itemx info f
8543 This command prints a verbose description of the selected stack frame,
8544 including:
8546 @itemize @bullet
8547 @item
8548 the address of the frame
8549 @item
8550 the address of the next frame down (called by this frame)
8551 @item
8552 the address of the next frame up (caller of this frame)
8553 @item
8554 the language in which the source code corresponding to this frame is written
8555 @item
8556 the address of the frame's arguments
8557 @item
8558 the address of the frame's local variables
8559 @item
8560 the program counter saved in it (the address of execution in the caller frame)
8561 @item
8562 which registers were saved in the frame
8563 @end itemize
8565 @noindent The verbose description is useful when
8566 something has gone wrong that has made the stack format fail to fit
8567 the usual conventions.
8569 @item info frame @r{[} @var{frame-selection-spec} @r{]}
8570 @itemx info f @r{[} @var{frame-selection-spec} @r{]}
8571 Print a verbose description of the frame selected by
8572 @var{frame-selection-spec}.  The @var{frame-selection-spec} is the
8573 same as for the @command{frame} command (@pxref{Selection, ,Selecting
8574 a Frame}).  The selected frame remains unchanged by this command.
8576 @kindex info args
8577 @item info args [-q]
8578 Print the arguments of the selected frame, each on a separate line.
8580 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8581 printing header information and messages explaining why no argument
8582 have been printed.
8584 @item info args [-q] [-t @var{type_regexp}] [@var{regexp}]
8585 Like @kbd{info args}, but only print the arguments selected
8586 with the provided regexp(s).
8588 If @var{regexp} is provided, print only the arguments whose names
8589 match the regular expression @var{regexp}.
8591 If @var{type_regexp} is provided, print only the arguments whose
8592 types, as printed by the @code{whatis} command, match
8593 the regular expression @var{type_regexp}.
8594 If @var{type_regexp} contains space(s), it should be enclosed in
8595 quote characters.  If needed, use backslash to escape the meaning
8596 of special characters or quotes.
8598 If both @var{regexp} and @var{type_regexp} are provided, an argument
8599 is printed only if its name matches @var{regexp} and its type matches
8600 @var{type_regexp}.
8602 @item info locals [-q]
8603 @kindex info locals
8604 Print the local variables of the selected frame, each on a separate
8605 line.  These are all variables (declared either static or automatic)
8606 accessible at the point of execution of the selected frame.
8608 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8609 printing header information and messages explaining why no local variables
8610 have been printed.
8612 @item info locals [-q] [-t @var{type_regexp}] [@var{regexp}]
8613 Like @kbd{info locals}, but only print the local variables selected
8614 with the provided regexp(s).
8616 If @var{regexp} is provided, print only the local variables whose names
8617 match the regular expression @var{regexp}.
8619 If @var{type_regexp} is provided, print only the local variables whose
8620 types, as printed by the @code{whatis} command, match
8621 the regular expression @var{type_regexp}.
8622 If @var{type_regexp} contains space(s), it should be enclosed in
8623 quote characters.  If needed, use backslash to escape the meaning
8624 of special characters or quotes.
8626 If both @var{regexp} and @var{type_regexp} are provided, a local variable
8627 is printed only if its name matches @var{regexp} and its type matches
8628 @var{type_regexp}.
8630 The command @kbd{info locals -q -t @var{type_regexp}} can usefully be
8631 combined with the commands @kbd{frame apply} and @kbd{thread apply}.
8632 For example, your program might use Resource Acquisition Is
8633 Initialization types (RAII) such as @code{lock_something_t}: each
8634 local variable of type @code{lock_something_t} automatically places a
8635 lock that is destroyed when the variable goes out of scope.  You can
8636 then list all acquired locks in your program by doing
8637 @smallexample
8638 thread apply all -s frame apply all -s info locals -q -t lock_something_t
8639 @end smallexample
8640 @noindent
8641 or the equivalent shorter form
8642 @smallexample
8643 tfaas i lo -q -t lock_something_t
8644 @end smallexample
8646 @end table
8648 @node Frame Apply
8649 @section Applying a Command to Several Frames.
8650 @kindex frame apply
8651 @cindex apply command to several frames
8652 @table @code
8653 @item frame apply [all | @var{count} | @var{-count} | level @var{level}@dots{}] [@var{option}]@dots{} @var{command}
8654 The @code{frame apply} command allows you to apply the named
8655 @var{command} to one or more frames.
8657 @table @code
8658 @item @code{all}
8659 Specify @code{all} to apply @var{command} to all frames.
8661 @item @var{count}
8662 Use @var{count} to apply @var{command} to the innermost @var{count}
8663 frames, where @var{count} is a positive number.
8665 @item @var{-count}
8666 Use @var{-count} to apply @var{command} to the outermost @var{count}
8667 frames, where @var{count} is a positive number.
8669 @item @code{level}
8670 Use @code{level} to apply @var{command} to the set of frames identified
8671 by the @var{level} list.  @var{level} is a frame level or a range of frame
8672 levels as @var{level1}-@var{level2}.  The frame level is the number shown
8673 in the first field of the @samp{backtrace} command output.
8674 E.g., @samp{2-4 6-8 3} indicates to apply @var{command} for the frames
8675 at levels 2, 3, 4, 6, 7, 8, and then again on frame at level 3.
8677 @end table
8679 Note that the frames on which @code{frame apply} applies a command are
8680 also influenced by the @code{set backtrace} settings such as @code{set
8681 backtrace past-main} and @code{set backtrace limit N}.
8682 @xref{Backtrace,,Backtraces}.
8684 The @code{frame apply} command also supports a number of options that
8685 allow overriding relevant @code{set backtrace} settings:
8687 @table @code
8688 @item -past-main [@code{on}|@code{off}]
8689 Whether backtraces should continue past @code{main}.
8690 Related setting: @ref{set backtrace past-main}.
8692 @item -past-entry [@code{on}|@code{off}]
8693 Whether backtraces should continue past the entry point of a program.
8694 Related setting: @ref{set backtrace past-entry}.
8695 @end table
8697 By default, @value{GDBN} displays some frame information before the
8698 output produced by @var{command}, and an error raised during the
8699 execution of a @var{command} will abort @code{frame apply}.  The
8700 following options can be used to fine-tune these behaviors:
8702 @table @code
8703 @item -c
8704 The flag @code{-c}, which stands for @samp{continue}, causes any
8705 errors in @var{command} to be displayed, and the execution of
8706 @code{frame apply} then continues.
8707 @item -s
8708 The flag @code{-s}, which stands for @samp{silent}, causes any errors
8709 or empty output produced by a @var{command} to be silently ignored.
8710 That is, the execution continues, but the frame information and errors
8711 are not printed.
8712 @item -q
8713 The flag @code{-q} (@samp{quiet}) disables printing the frame
8714 information.
8715 @end table
8717 The following example shows how the flags @code{-c} and @code{-s} are
8718 working when applying the command @code{p j} to all frames, where
8719 variable @code{j} can only be successfully printed in the outermost
8720 @code{#1 main} frame.
8722 @smallexample
8723 @group
8724 (gdb) frame apply all p j
8725 #0  some_function (i=5) at fun.c:4
8726 No symbol "j" in current context.
8727 (gdb) frame apply all -c p j
8728 #0  some_function (i=5) at fun.c:4
8729 No symbol "j" in current context.
8730 #1  0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8731 $1 = 5
8732 (gdb) frame apply all -s p j
8733 #1  0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8734 $2 = 5
8735 (gdb)
8736 @end group
8737 @end smallexample
8739 By default, @samp{frame apply}, prints the frame location
8740 information before the command output:
8742 @smallexample
8743 @group
8744 (gdb) frame apply all p $sp
8745 #0  some_function (i=5) at fun.c:4
8746 $4 = (void *) 0xffffd1e0
8747 #1  0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8748 $5 = (void *) 0xffffd1f0
8749 (gdb)
8750 @end group
8751 @end smallexample
8753 If the flag @code{-q} is given, no frame information is printed:
8754 @smallexample
8755 @group
8756 (gdb) frame apply all -q p $sp
8757 $12 = (void *) 0xffffd1e0
8758 $13 = (void *) 0xffffd1f0
8759 (gdb)
8760 @end group
8761 @end smallexample
8763 @end table
8765 @table @code
8767 @kindex faas
8768 @cindex apply a command to all frames (ignoring errors and empty output)
8769 @item faas @var{command}
8770 Shortcut for @code{frame apply all -s @var{command}}.
8771 Applies @var{command} on all frames, ignoring errors and empty output.
8773 It can for example be used to print a local variable or a function
8774 argument without knowing the frame where this variable or argument
8775 is, using:
8776 @smallexample
8777 (@value{GDBP}) faas p some_local_var_i_do_not_remember_where_it_is
8778 @end smallexample
8780 The @code{faas} command accepts the same options as the @code{frame
8781 apply} command.  @xref{Frame Apply,,frame apply}.
8783 Note that the command @code{tfaas @var{command}} applies @var{command}
8784 on all frames of all threads.  See @xref{Threads,,Threads}.
8785 @end table
8788 @node Frame Filter Management
8789 @section Management of Frame Filters.
8790 @cindex managing frame filters
8792 Frame filters are Python based utilities to manage and decorate the
8793 output of frames.  @xref{Frame Filter API}, for further information.
8795 Managing frame filters is performed by several commands available
8796 within @value{GDBN}, detailed here.
8798 @table @code
8799 @kindex info frame-filter
8800 @item info frame-filter
8801 Print a list of installed frame filters from all dictionaries, showing
8802 their name, priority and enabled status.
8804 @kindex disable frame-filter
8805 @anchor{disable frame-filter all}
8806 @item disable frame-filter @var{filter-dictionary} @var{filter-name}
8807 Disable a frame filter in the dictionary matching
8808 @var{filter-dictionary} and @var{filter-name}.  The
8809 @var{filter-dictionary} may be @code{all}, @code{global},
8810 @code{progspace}, or the name of the object file where the frame filter
8811 dictionary resides.  When @code{all} is specified, all frame filters
8812 across all dictionaries are disabled.  The @var{filter-name} is the name
8813 of the frame filter and is used when @code{all} is not the option for
8814 @var{filter-dictionary}.  A disabled frame-filter is not deleted, it
8815 may be enabled again later.
8817 @kindex enable frame-filter
8818 @item enable frame-filter @var{filter-dictionary} @var{filter-name}
8819 Enable a frame filter in the dictionary matching
8820 @var{filter-dictionary} and @var{filter-name}.  The
8821 @var{filter-dictionary} may be @code{all}, @code{global},
8822 @code{progspace} or the name of the object file where the frame filter
8823 dictionary resides.  When @code{all} is specified, all frame filters across
8824 all dictionaries are enabled.  The @var{filter-name} is the name of the frame
8825 filter and is used when @code{all} is not the option for
8826 @var{filter-dictionary}.
8828 Example:
8830 @smallexample
8831 (gdb) info frame-filter
8833 global frame-filters:
8834   Priority  Enabled  Name
8835   1000      No       PrimaryFunctionFilter
8836   100       Yes      Reverse
8838 progspace /build/test frame-filters:
8839   Priority  Enabled  Name
8840   100       Yes      ProgspaceFilter
8842 objfile /build/test frame-filters:
8843   Priority  Enabled  Name
8844   999       Yes      BuildProgramFilter
8846 (gdb) disable frame-filter /build/test BuildProgramFilter
8847 (gdb) info frame-filter
8849 global frame-filters:
8850   Priority  Enabled  Name
8851   1000      No       PrimaryFunctionFilter
8852   100       Yes      Reverse
8854 progspace /build/test frame-filters:
8855   Priority  Enabled  Name
8856   100       Yes      ProgspaceFilter
8858 objfile /build/test frame-filters:
8859   Priority  Enabled  Name
8860   999       No       BuildProgramFilter
8862 (gdb) enable frame-filter global PrimaryFunctionFilter
8863 (gdb) info frame-filter
8865 global frame-filters:
8866   Priority  Enabled  Name
8867   1000      Yes      PrimaryFunctionFilter
8868   100       Yes      Reverse
8870 progspace /build/test frame-filters:
8871   Priority  Enabled  Name
8872   100       Yes      ProgspaceFilter
8874 objfile /build/test frame-filters:
8875   Priority  Enabled  Name
8876   999       No       BuildProgramFilter
8877 @end smallexample
8879 @kindex set frame-filter priority
8880 @item set frame-filter priority @var{filter-dictionary} @var{filter-name} @var{priority}
8881 Set the @var{priority} of a frame filter in the dictionary matching
8882 @var{filter-dictionary}, and the frame filter name matching
8883 @var{filter-name}.  The @var{filter-dictionary} may be @code{global},
8884 @code{progspace} or the name of the object file where the frame filter
8885 dictionary resides.  The @var{priority} is an integer.
8887 @kindex show frame-filter priority
8888 @item show frame-filter priority @var{filter-dictionary} @var{filter-name}
8889 Show the @var{priority} of a frame filter in the dictionary matching
8890 @var{filter-dictionary}, and the frame filter name matching
8891 @var{filter-name}.  The @var{filter-dictionary} may be @code{global},
8892 @code{progspace} or the name of the object file where the frame filter
8893 dictionary resides.
8895 Example:
8897 @smallexample
8898 (gdb) info frame-filter
8900 global frame-filters:
8901   Priority  Enabled  Name
8902   1000      Yes      PrimaryFunctionFilter
8903   100       Yes      Reverse
8905 progspace /build/test frame-filters:
8906   Priority  Enabled  Name
8907   100       Yes      ProgspaceFilter
8909 objfile /build/test frame-filters:
8910   Priority  Enabled  Name
8911   999       No       BuildProgramFilter
8913 (gdb) set frame-filter priority global Reverse 50
8914 (gdb) info frame-filter
8916 global frame-filters:
8917   Priority  Enabled  Name
8918   1000      Yes      PrimaryFunctionFilter
8919   50        Yes      Reverse
8921 progspace /build/test frame-filters:
8922   Priority  Enabled  Name
8923   100       Yes      ProgspaceFilter
8925 objfile /build/test frame-filters:
8926   Priority  Enabled  Name
8927   999       No       BuildProgramFilter
8928 @end smallexample
8929 @end table
8931 @node Source
8932 @chapter Examining Source Files
8934 @value{GDBN} can print parts of your program's source, since the debugging
8935 information recorded in the program tells @value{GDBN} what source files were
8936 used to build it.  When your program stops, @value{GDBN} spontaneously prints
8937 the line where it stopped.  Likewise, when you select a stack frame
8938 (@pxref{Selection, ,Selecting a Frame}), @value{GDBN} prints the line where
8939 execution in that frame has stopped.  You can print other portions of
8940 source files by explicit command.
8942 If you use @value{GDBN} through its @sc{gnu} Emacs interface, you may
8943 prefer to use Emacs facilities to view source; see @ref{Emacs, ,Using
8944 @value{GDBN} under @sc{gnu} Emacs}.
8946 @menu
8947 * List::                        Printing source lines
8948 * Specify Location::            How to specify code locations
8949 * Edit::                        Editing source files
8950 * Search::                      Searching source files
8951 * Source Path::                 Specifying source directories
8952 * Machine Code::                Source and machine code
8953 * Disable Reading Source::      Disable Reading Source Code
8954 @end menu
8956 @node List
8957 @section Printing Source Lines
8959 @kindex list
8960 @kindex l @r{(@code{list})}
8961 To print lines from a source file, use the @code{list} command
8962 (abbreviated @code{l}).  By default, ten lines are printed.
8963 There are several ways to specify what part of the file you want to
8964 print; see @ref{Specify Location}, for the full list.
8966 Here are the forms of the @code{list} command most commonly used:
8968 @table @code
8969 @item list @var{linenum}
8970 Print lines centered around line number @var{linenum} in the
8971 current source file.
8973 @item list @var{function}
8974 Print lines centered around the beginning of function
8975 @var{function}.
8977 @item list
8978 Print more lines.  If the last lines printed were printed with a
8979 @code{list} command, this prints lines following the last lines
8980 printed; however, if the last line printed was a solitary line printed
8981 as part of displaying a stack frame (@pxref{Stack, ,Examining the
8982 Stack}), this prints lines centered around that line.
8984 @item list -
8985 Print lines just before the lines last printed.
8986 @end table
8988 @cindex @code{list}, how many lines to display
8989 By default, @value{GDBN} prints ten source lines with any of these forms of
8990 the @code{list} command.  You can change this using @code{set listsize}:
8992 @table @code
8993 @kindex set listsize
8994 @item set listsize @var{count}
8995 @itemx set listsize unlimited
8996 Make the @code{list} command display @var{count} source lines (unless
8997 the @code{list} argument explicitly specifies some other number).
8998 Setting @var{count} to @code{unlimited} or 0 means there's no limit.
9000 @kindex show listsize
9001 @item show listsize
9002 Display the number of lines that @code{list} prints.
9003 @end table
9005 Repeating a @code{list} command with @key{RET} discards the argument,
9006 so it is equivalent to typing just @code{list}.  This is more useful
9007 than listing the same lines again.  An exception is made for an
9008 argument of @samp{-}; that argument is preserved in repetition so that
9009 each repetition moves up in the source file.
9011 In general, the @code{list} command expects you to supply zero, one or two
9012 @dfn{locations}.  Locations specify source lines; there are several ways
9013 of writing them (@pxref{Specify Location}), but the effect is always
9014 to specify some source line.
9016 Here is a complete description of the possible arguments for @code{list}:
9018 @table @code
9019 @item list @var{location}
9020 Print lines centered around the line specified by @var{location}.
9022 @item list @var{first},@var{last}
9023 Print lines from @var{first} to @var{last}.  Both arguments are
9024 locations.  When a @code{list} command has two locations, and the
9025 source file of the second location is omitted, this refers to
9026 the same source file as the first location.
9028 @item list ,@var{last}
9029 Print lines ending with @var{last}.
9031 @item list @var{first},
9032 Print lines starting with @var{first}.
9034 @item list +
9035 Print lines just after the lines last printed.
9037 @item list -
9038 Print lines just before the lines last printed.
9040 @item list
9041 As described in the preceding table.
9042 @end table
9044 @node Specify Location
9045 @section Specifying a Location
9046 @cindex specifying location
9047 @cindex location
9048 @cindex source location
9050 Several @value{GDBN} commands accept arguments that specify a location
9051 of your program's code.  Since @value{GDBN} is a source-level
9052 debugger, a location usually specifies some line in the source code.
9053 Locations may be specified using three different formats:
9054 linespec locations, explicit locations, or address locations.
9056 @menu
9057 * Linespec Locations::                Linespec locations
9058 * Explicit Locations::                Explicit locations
9059 * Address Locations::                 Address locations
9060 @end menu
9062 @node Linespec Locations
9063 @subsection Linespec Locations
9064 @cindex linespec locations
9066 A @dfn{linespec} is a colon-separated list of source location parameters such
9067 as file name, function name, etc.  Here are all the different ways of
9068 specifying a linespec:
9070 @table @code
9071 @item @var{linenum}
9072 Specifies the line number @var{linenum} of the current source file.
9074 @item -@var{offset}
9075 @itemx +@var{offset}
9076 Specifies the line @var{offset} lines before or after the @dfn{current
9077 line}.  For the @code{list} command, the current line is the last one
9078 printed; for the breakpoint commands, this is the line at which
9079 execution stopped in the currently selected @dfn{stack frame}
9080 (@pxref{Frames, ,Frames}, for a description of stack frames.)  When
9081 used as the second of the two linespecs in a @code{list} command,
9082 this specifies the line @var{offset} lines up or down from the first
9083 linespec.
9085 @item @var{filename}:@var{linenum}
9086 Specifies the line @var{linenum} in the source file @var{filename}.
9087 If @var{filename} is a relative file name, then it will match any
9088 source file name with the same trailing components.  For example, if
9089 @var{filename} is @samp{gcc/expr.c}, then it will match source file
9090 name of @file{/build/trunk/gcc/expr.c}, but not
9091 @file{/build/trunk/libcpp/expr.c} or @file{/build/trunk/gcc/x-expr.c}.
9093 @item @var{function}
9094 Specifies the line that begins the body of the function @var{function}.
9095 For example, in C, this is the line with the open brace.
9097 By default, in C@t{++} and Ada, @var{function} is interpreted as
9098 specifying all functions named @var{function} in all scopes.  For
9099 C@t{++}, this means in all namespaces and classes.  For Ada, this
9100 means in all packages.
9102 For example, assuming a program with C@t{++} symbols named
9103 @code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9104 func}} and @w{@kbd{break B::func}} set a breakpoint on both symbols.
9106 Commands that accept a linespec let you override this with the
9107 @code{-qualified} option.  For example, @w{@kbd{break -qualified
9108 func}} sets a breakpoint on a free-function named @code{func} ignoring
9109 any C@t{++} class methods and namespace functions called @code{func}.
9111 @xref{Explicit Locations}.
9113 @item @var{function}:@var{label}
9114 Specifies the line where @var{label} appears in @var{function}.
9116 @item @var{filename}:@var{function}
9117 Specifies the line that begins the body of the function @var{function}
9118 in the file @var{filename}.  You only need the file name with a
9119 function name to avoid ambiguity when there are identically named
9120 functions in different source files.
9122 @item @var{label}
9123 Specifies the line at which the label named @var{label} appears
9124 in the function corresponding to the currently selected stack frame.
9125 If there is no current selected stack frame (for instance, if the inferior
9126 is not running), then @value{GDBN} will not search for a label.
9128 @cindex breakpoint at static probe point
9129 @item -pstap|-probe-stap @r{[}@var{objfile}:@r{[}@var{provider}:@r{]}@r{]}@var{name}
9130 The @sc{gnu}/Linux tool @code{SystemTap} provides a way for
9131 applications to embed static probes.  @xref{Static Probe Points}, for more
9132 information on finding and using static probes.  This form of linespec
9133 specifies the location of such a static probe.
9135 If @var{objfile} is given, only probes coming from that shared library
9136 or executable matching @var{objfile} as a regular expression are considered.
9137 If @var{provider} is given, then only probes from that provider are considered.
9138 If several probes match the spec, @value{GDBN} will insert a breakpoint at
9139 each one of those probes.
9140 @end table
9142 @node Explicit Locations
9143 @subsection Explicit Locations
9144 @cindex explicit locations
9146 @dfn{Explicit locations} allow the user to directly specify the source
9147 location's parameters using option-value pairs.
9149 Explicit locations are useful when several functions, labels, or
9150 file names have the same name (base name for files) in the program's
9151 sources.  In these cases, explicit locations point to the source
9152 line you meant more accurately and unambiguously.  Also, using
9153 explicit locations might be faster in large programs.
9155 For example, the linespec @samp{foo:bar} may refer to a function @code{bar}
9156 defined in the file named @file{foo} or the label @code{bar} in a function
9157 named @code{foo}.  @value{GDBN} must search either the file system or
9158 the symbol table to know.
9160 The list of valid explicit location options is summarized in the
9161 following table:
9163 @table @code
9164 @item -source @var{filename}
9165 The value specifies the source file name.  To differentiate between
9166 files with the same base name, prepend as many directories as is necessary
9167 to uniquely identify the desired file, e.g., @file{foo/bar/baz.c}.  Otherwise
9168 @value{GDBN} will use the first file it finds with the given base
9169 name.   This option requires the use of either @code{-function} or @code{-line}.
9171 @item -function @var{function}
9172 The value specifies the name of a function.  Operations
9173 on function locations unmodified by other options (such as @code{-label}
9174 or @code{-line}) refer to the line that begins the body of the function.
9175 In C, for example, this is the line with the open brace.
9177 By default, in C@t{++} and Ada, @var{function} is interpreted as
9178 specifying all functions named @var{function} in all scopes.  For
9179 C@t{++}, this means in all namespaces and classes.  For Ada, this
9180 means in all packages.
9182 For example, assuming a program with C@t{++} symbols named
9183 @code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9184 -function func}} and @w{@kbd{break -function B::func}} set a
9185 breakpoint on both symbols.
9187 You can use the @kbd{-qualified} flag to override this (see below).
9189 @item -qualified
9191 This flag makes @value{GDBN} interpret a function name specified with
9192 @kbd{-function} as a complete fully-qualified name.
9194 For example, assuming a C@t{++} program with symbols named
9195 @code{A::B::func} and @code{B::func}, the @w{@kbd{break -qualified
9196 -function B::func}} command sets a breakpoint on @code{B::func}, only.
9198 (Note: the @kbd{-qualified} option can precede a linespec as well
9199 (@pxref{Linespec Locations}), so the particular example above could be
9200 simplified as @w{@kbd{break -qualified B::func}}.)
9202 @item -label @var{label}
9203 The value specifies the name of a label.  When the function
9204 name is not specified, the label is searched in the function of the currently
9205 selected stack frame.
9207 @item -line @var{number}
9208 The value specifies a line offset for the location.  The offset may either
9209 be absolute (@code{-line 3}) or relative (@code{-line +3}), depending on
9210 the command.  When specified without any other options, the line offset is
9211 relative to the current line.
9212 @end table
9214 Explicit location options may be abbreviated by omitting any non-unique
9215 trailing characters from the option name, e.g., @w{@kbd{break -s main.c -li 3}}.
9217 @node Address Locations
9218 @subsection Address Locations
9219 @cindex address locations
9221 @dfn{Address locations} indicate a specific program address.  They have
9222 the generalized form *@var{address}.
9224 For line-oriented commands, such as @code{list} and @code{edit}, this
9225 specifies a source line that contains @var{address}.  For @code{break} and
9226 other breakpoint-oriented commands, this can be used to set breakpoints in
9227 parts of your program which do not have debugging information or
9228 source files.
9230 Here @var{address} may be any expression valid in the current working
9231 language (@pxref{Languages, working language}) that specifies a code
9232 address.  In addition, as a convenience, @value{GDBN} extends the
9233 semantics of expressions used in locations to cover several situations
9234 that frequently occur during debugging.  Here are the various forms
9235 of @var{address}:
9237 @table @code
9238 @item @var{expression}
9239 Any expression valid in the current working language.
9241 @item @var{funcaddr}
9242 An address of a function or procedure derived from its name.  In C,
9243 C@t{++}, Objective-C, Fortran, minimal, and assembly, this is
9244 simply the function's name @var{function} (and actually a special case
9245 of a valid expression).  In Pascal and Modula-2, this is
9246 @code{&@var{function}}.  In Ada, this is @code{@var{function}'Address}
9247 (although the Pascal form also works).
9249 This form specifies the address of the function's first instruction,
9250 before the stack frame and arguments have been set up.
9252 @item '@var{filename}':@var{funcaddr}
9253 Like @var{funcaddr} above, but also specifies the name of the source
9254 file explicitly.  This is useful if the name of the function does not
9255 specify the function unambiguously, e.g., if there are several
9256 functions with identical names in different source files.
9257 @end table
9259 @node Edit
9260 @section Editing Source Files
9261 @cindex editing source files
9263 @kindex edit
9264 @kindex e @r{(@code{edit})}
9265 To edit the lines in a source file, use the @code{edit} command.
9266 The editing program of your choice
9267 is invoked with the current line set to
9268 the active line in the program.
9269 Alternatively, there are several ways to specify what part of the file you
9270 want to print if you want to see other parts of the program:
9272 @table @code
9273 @item edit @var{location}
9274 Edit the source file specified by @code{location}.  Editing starts at
9275 that @var{location}, e.g., at the specified source line of the
9276 specified file.  @xref{Specify Location}, for all the possible forms
9277 of the @var{location} argument; here are the forms of the @code{edit}
9278 command most commonly used:
9280 @table @code
9281 @item edit @var{number}
9282 Edit the current source file with @var{number} as the active line number.
9284 @item edit @var{function}
9285 Edit the file containing @var{function} at the beginning of its definition.
9286 @end table
9288 @end table
9290 @subsection Choosing your Editor
9291 You can customize @value{GDBN} to use any editor you want
9292 @footnote{
9293 The only restriction is that your editor (say @code{ex}), recognizes the
9294 following command-line syntax:
9295 @smallexample
9296 ex +@var{number} file
9297 @end smallexample
9298 The optional numeric value +@var{number} specifies the number of the line in
9299 the file where to start editing.}.
9300 By default, it is @file{@value{EDITOR}}, but you can change this
9301 by setting the environment variable @env{EDITOR} before using
9302 @value{GDBN}.  For example, to configure @value{GDBN} to use the
9303 @code{vi} editor, you could use these commands with the @code{sh} shell:
9304 @smallexample
9305 EDITOR=/usr/bin/vi
9306 export EDITOR
9307 gdb @dots{}
9308 @end smallexample
9309 or in the @code{csh} shell,
9310 @smallexample
9311 setenv EDITOR /usr/bin/vi
9312 gdb @dots{}
9313 @end smallexample
9315 @node Search
9316 @section Searching Source Files
9317 @cindex searching source files
9319 There are two commands for searching through the current source file for a
9320 regular expression.
9322 @table @code
9323 @kindex search
9324 @kindex forward-search
9325 @kindex fo @r{(@code{forward-search})}
9326 @item forward-search @var{regexp}
9327 @itemx search @var{regexp}
9328 The command @samp{forward-search @var{regexp}} checks each line,
9329 starting with the one following the last line listed, for a match for
9330 @var{regexp}.  It lists the line that is found.  You can use the
9331 synonym @samp{search @var{regexp}} or abbreviate the command name as
9332 @code{fo}.
9334 @kindex reverse-search
9335 @item reverse-search @var{regexp}
9336 The command @samp{reverse-search @var{regexp}} checks each line, starting
9337 with the one before the last line listed and going backward, for a match
9338 for @var{regexp}.  It lists the line that is found.  You can abbreviate
9339 this command as @code{rev}.
9340 @end table
9342 @node Source Path
9343 @section Specifying Source Directories
9345 @cindex source path
9346 @cindex directories for source files
9347 Executable programs sometimes do not record the directories of the source
9348 files from which they were compiled, just the names.  Even when they do,
9349 the directories could be moved between the compilation and your debugging
9350 session.  @value{GDBN} has a list of directories to search for source files;
9351 this is called the @dfn{source path}.  Each time @value{GDBN} wants a source file,
9352 it tries all the directories in the list, in the order they are present
9353 in the list, until it finds a file with the desired name.
9355 For example, suppose an executable references the file
9356 @file{/usr/src/foo-1.0/lib/foo.c}, does not record a compilation
9357 directory, and the @dfn{source path} is @file{/mnt/cross}.
9358 @value{GDBN} would look for the source file in the following
9359 locations:
9361 @enumerate
9363 @item @file{/usr/src/foo-1.0/lib/foo.c}
9364 @item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9365 @item @file{/mnt/cross/foo.c}
9367 @end enumerate
9369 If the source file is not present at any of the above locations then
9370 an error is printed.  @value{GDBN} does not look up the parts of the
9371 source file name, such as @file{/mnt/cross/src/foo-1.0/lib/foo.c}.
9372 Likewise, the subdirectories of the source path are not searched: if
9373 the source path is @file{/mnt/cross}, and the binary refers to
9374 @file{foo.c}, @value{GDBN} would not find it under
9375 @file{/mnt/cross/usr/src/foo-1.0/lib}.
9377 Plain file names, relative file names with leading directories, file
9378 names containing dots, etc.@: are all treated as described above,
9379 except that non-absolute file names are not looked up literally.  If
9380 the @dfn{source path} is @file{/mnt/cross}, the source file is
9381 recorded as @file{../lib/foo.c}, and no compilation directory is
9382 recorded, then @value{GDBN} will search in the following locations:
9384 @enumerate
9386 @item @file{/mnt/cross/../lib/foo.c}
9387 @item @file{/mnt/cross/foo.c}
9389 @end enumerate
9391 @kindex cdir
9392 @kindex cwd
9393 @vindex $cdir@r{, convenience variable}
9394 @vindex $cwd@r{, convenience variable}
9395 @cindex compilation directory
9396 @cindex current directory
9397 @cindex working directory
9398 @cindex directory, current
9399 @cindex directory, compilation
9400 The @dfn{source path} will always include two special entries
9401 @samp{$cdir} and @samp{$cwd}, these refer to the compilation directory
9402 (if one is recorded) and the current working directory respectively.
9404 @samp{$cdir} causes @value{GDBN} to search within the compilation
9405 directory, if one is recorded in the debug information.  If no
9406 compilation directory is recorded in the debug information then
9407 @samp{$cdir} is ignored.
9409 @samp{$cwd} is not the same as @samp{.}---the former tracks the
9410 current working directory as it changes during your @value{GDBN}
9411 session, while the latter is immediately expanded to the current
9412 directory at the time you add an entry to the source path.
9414 If a compilation directory is recorded in the debug information, and
9415 @value{GDBN} has not found the source file after the first search
9416 using @dfn{source path}, then @value{GDBN} will combine the
9417 compilation directory and the filename, and then search for the source
9418 file again using the @dfn{source path}.
9420 For example, if the executable records the source file as
9421 @file{/usr/src/foo-1.0/lib/foo.c}, the compilation directory is
9422 recorded as @file{/project/build}, and the @dfn{source path} is
9423 @file{/mnt/cross:$cdir:$cwd} while the current working directory of
9424 the @value{GDBN} session is @file{/home/user}, then @value{GDBN} will
9425 search for the source file in the following locations:
9427 @enumerate
9429 @item @file{/usr/src/foo-1.0/lib/foo.c}
9430 @item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9431 @item @file{/project/build/usr/src/foo-1.0/lib/foo.c}
9432 @item @file{/home/user/usr/src/foo-1.0/lib/foo.c}
9433 @item @file{/mnt/cross/project/build/usr/src/foo-1.0/lib/foo.c}
9434 @item @file{/project/build/project/build/usr/src/foo-1.0/lib/foo.c}
9435 @item @file{/home/user/project/build/usr/src/foo-1.0/lib/foo.c}
9436 @item @file{/mnt/cross/foo.c}
9437 @item @file{/project/build/foo.c}
9438 @item @file{/home/user/foo.c}
9440 @end enumerate
9442 If the file name in the previous example had been recorded in the
9443 executable as a relative path rather than an absolute path, then the
9444 first look up would not have occurred, but all of the remaining steps
9445 would be similar.
9447 When searching for source files on MS-DOS and MS-Windows, where
9448 absolute paths start with a drive letter (e.g.@:
9449 @file{C:/project/foo.c}), @value{GDBN} will remove the drive letter
9450 from the file name before appending it to a search directory from
9451 @dfn{source path}; for instance if the executable references the
9452 source file @file{C:/project/foo.c} and @dfn{source path} is set to
9453 @file{D:/mnt/cross}, then @value{GDBN} will search in the following
9454 locations for the source file:
9456 @enumerate
9458 @item @file{C:/project/foo.c}
9459 @item @file{D:/mnt/cross/project/foo.c}
9460 @item @file{D:/mnt/cross/foo.c}
9462 @end enumerate
9464 Note that the executable search path is @emph{not} used to locate the
9465 source files.
9467 Whenever you reset or rearrange the source path, @value{GDBN} clears out
9468 any information it has cached about where source files are found and where
9469 each line is in the file.
9471 @kindex directory
9472 @kindex dir
9473 When you start @value{GDBN}, its source path includes only @samp{$cdir}
9474 and @samp{$cwd}, in that order.
9475 To add other directories, use the @code{directory} command.
9477 The search path is used to find both program source files and @value{GDBN}
9478 script files (read using the @samp{-command} option and @samp{source} command).
9480 In addition to the source path, @value{GDBN} provides a set of commands
9481 that manage a list of source path substitution rules.  A @dfn{substitution
9482 rule} specifies how to rewrite source directories stored in the program's
9483 debug information in case the sources were moved to a different
9484 directory between compilation and debugging.  A rule is made of
9485 two strings, the first specifying what needs to be rewritten in
9486 the path, and the second specifying how it should be rewritten.
9487 In @ref{set substitute-path}, we name these two parts @var{from} and
9488 @var{to} respectively.  @value{GDBN} does a simple string replacement
9489 of @var{from} with @var{to} at the start of the directory part of the
9490 source file name, and uses that result instead of the original file
9491 name to look up the sources.
9493 Using the previous example, suppose the @file{foo-1.0} tree has been
9494 moved from @file{/usr/src} to @file{/mnt/cross}, then you can tell
9495 @value{GDBN} to replace @file{/usr/src} in all source path names with
9496 @file{/mnt/cross}.  The first lookup will then be
9497 @file{/mnt/cross/foo-1.0/lib/foo.c} in place of the original location
9498 of @file{/usr/src/foo-1.0/lib/foo.c}.  To define a source path
9499 substitution rule, use the @code{set substitute-path} command
9500 (@pxref{set substitute-path}).
9502 To avoid unexpected substitution results, a rule is applied only if the
9503 @var{from} part of the directory name ends at a directory separator.
9504 For instance, a rule substituting  @file{/usr/source} into
9505 @file{/mnt/cross} will be applied to @file{/usr/source/foo-1.0} but
9506 not to @file{/usr/sourceware/foo-2.0}.  And because the substitution
9507 is applied only at the beginning of the directory name, this rule will
9508 not be applied to @file{/root/usr/source/baz.c} either.
9510 In many cases, you can achieve the same result using the @code{directory}
9511 command.  However, @code{set substitute-path} can be more efficient in
9512 the case where the sources are organized in a complex tree with multiple
9513 subdirectories.  With the @code{directory} command, you need to add each
9514 subdirectory of your project.  If you moved the entire tree while
9515 preserving its internal organization, then @code{set substitute-path}
9516 allows you to direct the debugger to all the sources with one single
9517 command.
9519 @code{set substitute-path} is also more than just a shortcut command.
9520 The source path is only used if the file at the original location no
9521 longer exists.  On the other hand, @code{set substitute-path} modifies
9522 the debugger behavior to look at the rewritten location instead.  So, if
9523 for any reason a source file that is not relevant to your executable is
9524 located at the original location, a substitution rule is the only
9525 method available to point @value{GDBN} at the new location.
9527 @cindex @samp{--with-relocated-sources}
9528 @cindex default source path substitution
9529 You can configure a default source path substitution rule by
9530 configuring @value{GDBN} with the
9531 @samp{--with-relocated-sources=@var{dir}} option.  The @var{dir}
9532 should be the name of a directory under @value{GDBN}'s configured
9533 prefix (set with @samp{--prefix} or @samp{--exec-prefix}), and
9534 directory names in debug information under @var{dir} will be adjusted
9535 automatically if the installed @value{GDBN} is moved to a new
9536 location.  This is useful if @value{GDBN}, libraries or executables
9537 with debug information and corresponding source code are being moved
9538 together.
9540 @table @code
9541 @item directory @var{dirname} @dots{}
9542 @item dir @var{dirname} @dots{}
9543 Add directory @var{dirname} to the front of the source path.  Several
9544 directory names may be given to this command, separated by @samp{:}
9545 (@samp{;} on MS-DOS and MS-Windows, where @samp{:} usually appears as
9546 part of absolute file names) or
9547 whitespace.  You may specify a directory that is already in the source
9548 path; this moves it forward, so @value{GDBN} searches it sooner.
9550 The special strings @samp{$cdir} (to refer to the compilation
9551 directory, if one is recorded), and @samp{$cwd} (to refer to the
9552 current working directory) can also be included in the list of
9553 directories @var{dirname}.  Though these will already be in the source
9554 path they will be moved forward in the list so @value{GDBN} searches
9555 them sooner.
9557 @item directory
9558 Reset the source path to its default value (@samp{$cdir:$cwd} on Unix systems).  This requires confirmation.
9560 @c RET-repeat for @code{directory} is explicitly disabled, but since
9561 @c repeating it would be a no-op we do not say that.  (thanks to RMS)
9563 @item set directories @var{path-list}
9564 @kindex set directories
9565 Set the source path to @var{path-list}.
9566 @samp{$cdir:$cwd} are added if missing.
9568 @item show directories
9569 @kindex show directories
9570 Print the source path: show which directories it contains.
9572 @anchor{set substitute-path}
9573 @item set substitute-path @var{from} @var{to}
9574 @kindex set substitute-path
9575 Define a source path substitution rule, and add it at the end of the
9576 current list of existing substitution rules.  If a rule with the same
9577 @var{from} was already defined, then the old rule is also deleted.
9579 For example, if the file @file{/foo/bar/baz.c} was moved to
9580 @file{/mnt/cross/baz.c}, then the command
9582 @smallexample
9583 (@value{GDBP}) set substitute-path /foo/bar /mnt/cross
9584 @end smallexample
9586 @noindent
9587 will tell @value{GDBN} to replace @samp{/foo/bar} with
9588 @samp{/mnt/cross}, which will allow @value{GDBN} to find the file
9589 @file{baz.c} even though it was moved.
9591 In the case when more than one substitution rule have been defined,
9592 the rules are evaluated one by one in the order where they have been
9593 defined.  The first one matching, if any, is selected to perform
9594 the substitution.
9596 For instance, if we had entered the following commands:
9598 @smallexample
9599 (@value{GDBP}) set substitute-path /usr/src/include /mnt/include
9600 (@value{GDBP}) set substitute-path /usr/src /mnt/src
9601 @end smallexample
9603 @noindent
9604 @value{GDBN} would then rewrite @file{/usr/src/include/defs.h} into
9605 @file{/mnt/include/defs.h} by using the first rule.  However, it would
9606 use the second rule to rewrite @file{/usr/src/lib/foo.c} into
9607 @file{/mnt/src/lib/foo.c}.
9610 @item unset substitute-path [path]
9611 @kindex unset substitute-path
9612 If a path is specified, search the current list of substitution rules
9613 for a rule that would rewrite that path.  Delete that rule if found.
9614 A warning is emitted by the debugger if no rule could be found.
9616 If no path is specified, then all substitution rules are deleted.
9618 @item show substitute-path [path]
9619 @kindex show substitute-path
9620 If a path is specified, then print the source path substitution rule
9621 which would rewrite that path, if any.
9623 If no path is specified, then print all existing source path substitution
9624 rules.
9626 @end table
9628 If your source path is cluttered with directories that are no longer of
9629 interest, @value{GDBN} may sometimes cause confusion by finding the wrong
9630 versions of source.  You can correct the situation as follows:
9632 @enumerate
9633 @item
9634 Use @code{directory} with no argument to reset the source path to its default value.
9636 @item
9637 Use @code{directory} with suitable arguments to reinstall the
9638 directories you want in the source path.  You can add all the
9639 directories in one command.
9640 @end enumerate
9642 @node Machine Code
9643 @section Source and Machine Code
9644 @cindex source line and its code address
9646 You can use the command @code{info line} to map source lines to program
9647 addresses (and vice versa), and the command @code{disassemble} to display
9648 a range of addresses as machine instructions.  You can use the command
9649 @code{set disassemble-next-line} to set whether to disassemble next
9650 source line when execution stops.  When run under @sc{gnu} Emacs
9651 mode, the @code{info line} command causes the arrow to point to the
9652 line specified.  Also, @code{info line} prints addresses in symbolic form as
9653 well as hex.
9655 @table @code
9656 @kindex info line
9657 @item info line
9658 @itemx info line @var{location}
9659 Print the starting and ending addresses of the compiled code for
9660 source line @var{location}.  You can specify source lines in any of
9661 the ways documented in @ref{Specify Location}.  With no @var{location}
9662 information about the current source line is printed.
9663 @end table
9665 For example, we can use @code{info line} to discover the location of
9666 the object code for the first line of function
9667 @code{m4_changequote}:
9669 @smallexample
9670 (@value{GDBP}) info line m4_changequote
9671 Line 895 of "builtin.c" starts at pc 0x634c <m4_changequote> and \
9672         ends at 0x6350 <m4_changequote+4>.
9673 @end smallexample
9675 @noindent
9676 @cindex code address and its source line
9677 We can also inquire (using @code{*@var{addr}} as the form for
9678 @var{location}) what source line covers a particular address:
9679 @smallexample
9680 (@value{GDBP}) info line *0x63ff
9681 Line 926 of "builtin.c" starts at pc 0x63e4 <m4_changequote+152> and \
9682         ends at 0x6404 <m4_changequote+184>.
9683 @end smallexample
9685 @cindex @code{$_} and @code{info line}
9686 @cindex @code{x} command, default address
9687 @kindex x@r{(examine), and} info line
9688 After @code{info line}, the default address for the @code{x} command
9689 is changed to the starting address of the line, so that @samp{x/i} is
9690 sufficient to begin examining the machine code (@pxref{Memory,
9691 ,Examining Memory}).  Also, this address is saved as the value of the
9692 convenience variable @code{$_} (@pxref{Convenience Vars, ,Convenience
9693 Variables}).
9695 @cindex info line, repeated calls
9696 After @code{info line}, using @code{info line} again without
9697 specifying a location will display information about the next source
9698 line.
9700 @table @code
9701 @kindex disassemble
9702 @cindex assembly instructions
9703 @cindex instructions, assembly
9704 @cindex machine instructions
9705 @cindex listing machine instructions
9706 @item disassemble
9707 @itemx disassemble /m
9708 @itemx disassemble /s
9709 @itemx disassemble /r
9710 This specialized command dumps a range of memory as machine
9711 instructions.  It can also print mixed source+disassembly by specifying
9712 the @code{/m} or @code{/s} modifier and print the raw instructions in hex
9713 as well as in symbolic form by specifying the @code{/r} modifier.
9714 The default memory range is the function surrounding the
9715 program counter of the selected frame.  A single argument to this
9716 command is a program counter value; @value{GDBN} dumps the function
9717 surrounding this value.  When two arguments are given, they should
9718 be separated by a comma, possibly surrounded by whitespace.  The
9719 arguments specify a range of addresses to dump, in one of two forms:
9721 @table @code
9722 @item @var{start},@var{end}
9723 the addresses from @var{start} (inclusive) to @var{end} (exclusive)
9724 @item @var{start},+@var{length}
9725 the addresses from @var{start} (inclusive) to
9726 @code{@var{start}+@var{length}} (exclusive).
9727 @end table
9729 @noindent
9730 When 2 arguments are specified, the name of the function is also
9731 printed (since there could be several functions in the given range).
9733 The argument(s) can be any expression yielding a numeric value, such as
9734 @samp{0x32c4}, @samp{&main+10} or @samp{$pc - 8}.
9736 If the range of memory being disassembled contains current program counter,
9737 the instruction at that location is shown with a @code{=>} marker.
9738 @end table
9740 The following example shows the disassembly of a range of addresses of
9741 HP PA-RISC 2.0 code:
9743 @smallexample
9744 (@value{GDBP}) disas 0x32c4, 0x32e4
9745 Dump of assembler code from 0x32c4 to 0x32e4:
9746    0x32c4 <main+204>:      addil 0,dp
9747    0x32c8 <main+208>:      ldw 0x22c(sr0,r1),r26
9748    0x32cc <main+212>:      ldil 0x3000,r31
9749    0x32d0 <main+216>:      ble 0x3f8(sr4,r31)
9750    0x32d4 <main+220>:      ldo 0(r31),rp
9751    0x32d8 <main+224>:      addil -0x800,dp
9752    0x32dc <main+228>:      ldo 0x588(r1),r26
9753    0x32e0 <main+232>:      ldil 0x3000,r31
9754 End of assembler dump.
9755 @end smallexample
9757 Here is an example showing mixed source+assembly for Intel x86
9758 with @code{/m} or @code{/s}, when the program is stopped just after
9759 function prologue in a non-optimized function with no inline code.
9761 @smallexample
9762 (@value{GDBP}) disas /m main
9763 Dump of assembler code for function main:
9764 5       @{
9765    0x08048330 <+0>:    push   %ebp
9766    0x08048331 <+1>:    mov    %esp,%ebp
9767    0x08048333 <+3>:    sub    $0x8,%esp
9768    0x08048336 <+6>:    and    $0xfffffff0,%esp
9769    0x08048339 <+9>:    sub    $0x10,%esp
9771 6         printf ("Hello.\n");
9772 => 0x0804833c <+12>:   movl   $0x8048440,(%esp)
9773    0x08048343 <+19>:   call   0x8048284 <puts@@plt>
9775 7         return 0;
9776 8       @}
9777    0x08048348 <+24>:   mov    $0x0,%eax
9778    0x0804834d <+29>:   leave
9779    0x0804834e <+30>:   ret
9781 End of assembler dump.
9782 @end smallexample
9784 The @code{/m} option is deprecated as its output is not useful when
9785 there is either inlined code or re-ordered code.
9786 The @code{/s} option is the preferred choice.
9787 Here is an example for AMD x86-64 showing the difference between
9788 @code{/m} output and @code{/s} output.
9789 This example has one inline function defined in a header file,
9790 and the code is compiled with @samp{-O2} optimization.
9791 Note how the @code{/m} output is missing the disassembly of
9792 several instructions that are present in the @code{/s} output.
9794 @file{foo.h}:
9796 @smallexample
9798 foo (int a)
9800   if (a < 0)
9801     return a * 2;
9802   if (a == 0)
9803     return 1;
9804   return a + 10;
9806 @end smallexample
9808 @file{foo.c}:
9810 @smallexample
9811 #include "foo.h"
9812 volatile int x, y;
9814 main ()
9816   x = foo (y);
9817   return 0;
9819 @end smallexample
9821 @smallexample
9822 (@value{GDBP}) disas /m main
9823 Dump of assembler code for function main:
9824 5       @{
9826 6         x = foo (y);
9827    0x0000000000400400 <+0>:     mov    0x200c2e(%rip),%eax # 0x601034 <y>
9828    0x0000000000400417 <+23>:    mov    %eax,0x200c13(%rip) # 0x601030 <x>
9830 7         return 0;
9831 8       @}
9832    0x000000000040041d <+29>:    xor    %eax,%eax
9833    0x000000000040041f <+31>:    retq
9834    0x0000000000400420 <+32>:    add    %eax,%eax
9835    0x0000000000400422 <+34>:    jmp    0x400417 <main+23>
9837 End of assembler dump.
9838 (@value{GDBP}) disas /s main
9839 Dump of assembler code for function main:
9840 foo.c:
9841 5       @{
9842 6         x = foo (y);
9843    0x0000000000400400 <+0>:     mov    0x200c2e(%rip),%eax # 0x601034 <y>
9845 foo.h:
9846 4         if (a < 0)
9847    0x0000000000400406 <+6>:     test   %eax,%eax
9848    0x0000000000400408 <+8>:     js     0x400420 <main+32>
9850 6         if (a == 0)
9851 7           return 1;
9852 8         return a + 10;
9853    0x000000000040040a <+10>:    lea    0xa(%rax),%edx
9854    0x000000000040040d <+13>:    test   %eax,%eax
9855    0x000000000040040f <+15>:    mov    $0x1,%eax
9856    0x0000000000400414 <+20>:    cmovne %edx,%eax
9858 foo.c:
9859 6         x = foo (y);
9860    0x0000000000400417 <+23>:    mov    %eax,0x200c13(%rip) # 0x601030 <x>
9862 7         return 0;
9863 8       @}
9864    0x000000000040041d <+29>:    xor    %eax,%eax
9865    0x000000000040041f <+31>:    retq
9867 foo.h:
9868 5           return a * 2;
9869    0x0000000000400420 <+32>:    add    %eax,%eax
9870    0x0000000000400422 <+34>:    jmp    0x400417 <main+23>
9871 End of assembler dump.
9872 @end smallexample
9874 Here is another example showing raw instructions in hex for AMD x86-64,
9876 @smallexample
9877 (gdb) disas /r 0x400281,+10
9878 Dump of assembler code from 0x400281 to 0x40028b:
9879    0x0000000000400281:  38 36  cmp    %dh,(%rsi)
9880    0x0000000000400283:  2d 36 34 2e 73 sub    $0x732e3436,%eax
9881    0x0000000000400288:  6f     outsl  %ds:(%rsi),(%dx)
9882    0x0000000000400289:  2e 32 00       xor    %cs:(%rax),%al
9883 End of assembler dump.
9884 @end smallexample
9886 Addresses cannot be specified as a location (@pxref{Specify Location}).
9887 So, for example, if you want to disassemble function @code{bar}
9888 in file @file{foo.c}, you must type @samp{disassemble 'foo.c'::bar}
9889 and not @samp{disassemble foo.c:bar}.
9891 Some architectures have more than one commonly-used set of instruction
9892 mnemonics or other syntax.
9894 For programs that were dynamically linked and use shared libraries,
9895 instructions that call functions or branch to locations in the shared
9896 libraries might show a seemingly bogus location---it's actually a
9897 location of the relocation table.  On some architectures, @value{GDBN}
9898 might be able to resolve these to actual function names.
9900 @table @code
9901 @kindex set disassembler-options
9902 @cindex disassembler options
9903 @item set disassembler-options @var{option1}[,@var{option2}@dots{}]
9904 This command controls the passing of target specific information to
9905 the disassembler.  For a list of valid options, please refer to the
9906 @code{-M}/@code{--disassembler-options} section of the @samp{objdump}
9907 manual and/or the output of @kbd{objdump --help}
9908 (@pxref{objdump,,objdump,binutils,The GNU Binary Utilities}).
9909 The default value is the empty string.
9911 If it is necessary to specify more than one disassembler option, then
9912 multiple options can be placed together into a comma separated list.
9913 Currently this command is only supported on targets ARC, ARM, MIPS,
9914 PowerPC and S/390.
9916 @kindex show disassembler-options
9917 @item show disassembler-options
9918 Show the current setting of the disassembler options.
9919 @end table
9921 @table @code
9922 @kindex set disassembly-flavor
9923 @cindex Intel disassembly flavor
9924 @cindex AT&T disassembly flavor
9925 @item set disassembly-flavor @var{instruction-set}
9926 Select the instruction set to use when disassembling the
9927 program via the @code{disassemble} or @code{x/i} commands.
9929 Currently this command is only defined for the Intel x86 family.  You
9930 can set @var{instruction-set} to either @code{intel} or @code{att}.
9931 The default is @code{att}, the AT&T flavor used by default by Unix
9932 assemblers for x86-based targets.
9934 @kindex show disassembly-flavor
9935 @item show disassembly-flavor
9936 Show the current setting of the disassembly flavor.
9937 @end table
9939 @table @code
9940 @kindex set disassemble-next-line
9941 @kindex show disassemble-next-line
9942 @item set disassemble-next-line
9943 @itemx show disassemble-next-line
9944 Control whether or not @value{GDBN} will disassemble the next source
9945 line or instruction when execution stops.  If ON, @value{GDBN} will
9946 display disassembly of the next source line when execution of the
9947 program being debugged stops.  This is @emph{in addition} to
9948 displaying the source line itself, which @value{GDBN} always does if
9949 possible.  If the next source line cannot be displayed for some reason
9950 (e.g., if @value{GDBN} cannot find the source file, or there's no line
9951 info in the debug info), @value{GDBN} will display disassembly of the
9952 next @emph{instruction} instead of showing the next source line.  If
9953 AUTO, @value{GDBN} will display disassembly of next instruction only
9954 if the source line cannot be displayed.  This setting causes
9955 @value{GDBN} to display some feedback when you step through a function
9956 with no line info or whose source file is unavailable.  The default is
9957 OFF, which means never display the disassembly of the next line or
9958 instruction.
9959 @end table
9961 @node Disable Reading Source
9962 @section Disable Reading Source Code
9963 @cindex source code, disable access
9965 In some cases it can be desirable to prevent @value{GDBN} from
9966 accessing source code files.  One case where this might be desirable
9967 is if the source code files are located over a slow network
9968 connection.
9970 The following command can be used to control whether @value{GDBN}
9971 should access source code files or not:
9973 @table @code
9974 @kindex set source open
9975 @kindex show source open
9976 @item set source open @r{[}on@r{|}off@r{]}
9977 @itemx show source open
9978 When this option is @code{on}, which is the default, @value{GDBN} will
9979 access source code files when needed, for example to print source
9980 lines when @value{GDBN} stops, or in response to the @code{list}
9981 command.
9983 When this option is @code{off}, @value{GDBN} will not access source
9984 code files.
9985 @end table
9987 @node Data
9988 @chapter Examining Data
9990 @cindex printing data
9991 @cindex examining data
9992 @kindex print
9993 @kindex inspect
9994 The usual way to examine data in your program is with the @code{print}
9995 command (abbreviated @code{p}), or its synonym @code{inspect}.  It
9996 evaluates and prints the value of an expression of the language your
9997 program is written in (@pxref{Languages, ,Using @value{GDBN} with
9998 Different Languages}).  It may also print the expression using a
9999 Python-based pretty-printer (@pxref{Pretty Printing}).
10001 @table @code
10002 @item print [[@var{options}] --] @var{expr}
10003 @itemx print [[@var{options}] --] /@var{f} @var{expr}
10004 @var{expr} is an expression (in the source language).  By default the
10005 value of @var{expr} is printed in a format appropriate to its data type;
10006 you can choose a different format by specifying @samp{/@var{f}}, where
10007 @var{f} is a letter specifying the format; see @ref{Output Formats,,Output
10008 Formats}.
10010 @anchor{print options}
10011 The @code{print} command supports a number of options that allow
10012 overriding relevant global print settings as set by @code{set print}
10013 subcommands:
10015 @table @code
10016 @item -address [@code{on}|@code{off}]
10017 Set printing of addresses.
10018 Related setting: @ref{set print address}.
10020 @item -array [@code{on}|@code{off}]
10021 Pretty formatting of arrays.
10022 Related setting: @ref{set print array}.
10024 @item -array-indexes [@code{on}|@code{off}]
10025 Set printing of array indexes.
10026 Related setting: @ref{set print array-indexes}.
10028 @item -elements @var{number-of-elements}|@code{unlimited}
10029 Set limit on string chars or array elements to print.  The value
10030 @code{unlimited} causes there to be no limit.  Related setting:
10031 @ref{set print elements}.
10033 @item -max-depth @var{depth}|@code{unlimited}
10034 Set the threshold after which nested structures are replaced with
10035 ellipsis.  Related setting: @ref{set print max-depth}.
10037 @item -memory-tag-violations [@code{on}|@code{off}]
10038 Set printing of additional information about memory tag violations.
10039 @xref{set print memory-tag-violations}.
10041 @item -null-stop [@code{on}|@code{off}]
10042 Set printing of char arrays to stop at first null char.  Related
10043 setting: @ref{set print null-stop}.
10045 @item -object [@code{on}|@code{off}]
10046 Set printing C@t{++} virtual function tables.  Related setting:
10047 @ref{set print object}.
10049 @item -pretty [@code{on}|@code{off}]
10050 Set pretty formatting of structures.  Related setting: @ref{set print
10051 pretty}.
10053 @item -raw-values [@code{on}|@code{off}]
10054 Set whether to print values in raw form, bypassing any
10055 pretty-printers for that value.  Related setting: @ref{set print
10056 raw-values}.
10058 @item -repeats @var{number-of-repeats}|@code{unlimited}
10059 Set threshold for repeated print elements.  @code{unlimited} causes
10060 all elements to be individually printed.  Related setting: @ref{set
10061 print repeats}.
10063 @item -static-members [@code{on}|@code{off}]
10064 Set printing C@t{++} static members.  Related setting: @ref{set print
10065 static-members}.
10067 @item -symbol [@code{on}|@code{off}]
10068 Set printing of symbol names when printing pointers.  Related setting:
10069 @ref{set print symbol}.
10071 @item -union [@code{on}|@code{off}]
10072 Set printing of unions interior to structures.  Related setting:
10073 @ref{set print union}.
10075 @item -vtbl [@code{on}|@code{off}]
10076 Set printing of C++ virtual function tables.  Related setting:
10077 @ref{set print vtbl}.
10078 @end table
10080 Because the @code{print} command accepts arbitrary expressions which
10081 may look like options (including abbreviations), if you specify any
10082 command option, then you must use a double dash (@code{--}) to mark
10083 the end of option processing.
10085 For example, this prints the value of the @code{-p} expression:
10087 @smallexample
10088 (@value{GDBP}) print -p
10089 @end smallexample
10091 While this repeats the last value in the value history (see below)
10092 with the @code{-pretty} option in effect:
10094 @smallexample
10095 (@value{GDBP}) print -p --
10096 @end smallexample
10098 Here is an example including both on option and an expression:
10100 @smallexample
10101 @group
10102 (@value{GDBP}) print -pretty -- *myptr
10103 $1 = @{
10104   next = 0x0,
10105   flags = @{
10106     sweet = 1,
10107     sour = 1
10108   @},
10109   meat = 0x54 "Pork"
10111 @end group
10112 @end smallexample
10114 @item print [@var{options}]
10115 @itemx print [@var{options}] /@var{f}
10116 @cindex reprint the last value
10117 If you omit @var{expr}, @value{GDBN} displays the last value again (from the
10118 @dfn{value history}; @pxref{Value History, ,Value History}).  This allows you to
10119 conveniently inspect the same value in an alternative format.
10120 @end table
10122 If the architecture supports memory tagging, the @code{print} command will
10123 display pointer/memory tag mismatches if what is being printed is a pointer
10124 or reference type. @xref{Memory Tagging}.
10126 A more low-level way of examining data is with the @code{x} command.
10127 It examines data in memory at a specified address and prints it in a
10128 specified format.  @xref{Memory, ,Examining Memory}.
10130 If you are interested in information about types, or about how the
10131 fields of a struct or a class are declared, use the @code{ptype @var{expr}}
10132 command rather than @code{print}.  @xref{Symbols, ,Examining the Symbol
10133 Table}.
10135 @cindex exploring hierarchical data structures
10136 @kindex explore
10137 Another way of examining values of expressions and type information is
10138 through the Python extension command @code{explore} (available only if
10139 the @value{GDBN} build is configured with @code{--with-python}).  It
10140 offers an interactive way to start at the highest level (or, the most
10141 abstract level) of the data type of an expression (or, the data type
10142 itself) and explore all the way down to leaf scalar values/fields
10143 embedded in the higher level data types.
10145 @table @code
10146 @item explore @var{arg}
10147 @var{arg} is either an expression (in the source language), or a type
10148 visible in the current context of the program being debugged.
10149 @end table
10151 The working of the @code{explore} command can be illustrated with an
10152 example.  If a data type @code{struct ComplexStruct} is defined in your
10153 C program as
10155 @smallexample
10156 struct SimpleStruct
10158   int i;
10159   double d;
10162 struct ComplexStruct
10164   struct SimpleStruct *ss_p;
10165   int arr[10];
10167 @end smallexample
10169 @noindent
10170 followed by variable declarations as
10172 @smallexample
10173 struct SimpleStruct ss = @{ 10, 1.11 @};
10174 struct ComplexStruct cs = @{ &ss, @{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 @} @};
10175 @end smallexample
10177 @noindent
10178 then, the value of the variable @code{cs} can be explored using the
10179 @code{explore} command as follows.
10181 @smallexample
10182 (gdb) explore cs
10183 The value of `cs' is a struct/class of type `struct ComplexStruct' with
10184 the following fields:
10186   ss_p = <Enter 0 to explore this field of type `struct SimpleStruct *'>
10187    arr = <Enter 1 to explore this field of type `int [10]'>
10189 Enter the field number of choice:
10190 @end smallexample
10192 @noindent
10193 Since the fields of @code{cs} are not scalar values, you are being
10194 prompted to chose the field you want to explore.  Let's say you choose
10195 the field @code{ss_p} by entering @code{0}.  Then, since this field is a
10196 pointer, you will be asked if it is pointing to a single value.  From
10197 the declaration of @code{cs} above, it is indeed pointing to a single
10198 value, hence you enter @code{y}.  If you enter @code{n}, then you will
10199 be asked if it were pointing to an array of values, in which case this
10200 field will be explored as if it were an array.
10202 @smallexample
10203 `cs.ss_p' is a pointer to a value of type `struct SimpleStruct'
10204 Continue exploring it as a pointer to a single value [y/n]: y
10205 The value of `*(cs.ss_p)' is a struct/class of type `struct
10206 SimpleStruct' with the following fields:
10208   i = 10 .. (Value of type `int')
10209   d = 1.1100000000000001 .. (Value of type `double')
10211 Press enter to return to parent value:
10212 @end smallexample
10214 @noindent
10215 If the field @code{arr} of @code{cs} was chosen for exploration by
10216 entering @code{1} earlier, then since it is as array, you will be
10217 prompted to enter the index of the element in the array that you want
10218 to explore.
10220 @smallexample
10221 `cs.arr' is an array of `int'.
10222 Enter the index of the element you want to explore in `cs.arr': 5
10224 `(cs.arr)[5]' is a scalar value of type `int'.
10226 (cs.arr)[5] = 4
10228 Press enter to return to parent value: 
10229 @end smallexample
10231 In general, at any stage of exploration, you can go deeper towards the
10232 leaf values by responding to the prompts appropriately, or hit the
10233 return key to return to the enclosing data structure (the @i{higher}
10234 level data structure).
10236 Similar to exploring values, you can use the @code{explore} command to
10237 explore types.  Instead of specifying a value (which is typically a
10238 variable name or an expression valid in the current context of the
10239 program being debugged), you specify a type name.  If you consider the
10240 same example as above, your can explore the type
10241 @code{struct ComplexStruct} by passing the argument
10242 @code{struct ComplexStruct} to the @code{explore} command.
10244 @smallexample
10245 (gdb) explore struct ComplexStruct
10246 @end smallexample
10248 @noindent
10249 By responding to the prompts appropriately in the subsequent interactive
10250 session, you can explore the type @code{struct ComplexStruct} in a
10251 manner similar to how the value @code{cs} was explored in the above
10252 example.
10254 The @code{explore} command also has two sub-commands,
10255 @code{explore value} and @code{explore type}. The former sub-command is
10256 a way to explicitly specify that value exploration of the argument is
10257 being invoked, while the latter is a way to explicitly specify that type
10258 exploration of the argument is being invoked.
10260 @table @code
10261 @item explore value @var{expr}
10262 @cindex explore value
10263 This sub-command of @code{explore} explores the value of the
10264 expression @var{expr} (if @var{expr} is an expression valid in the
10265 current context of the program being debugged).  The behavior of this
10266 command is identical to that of the behavior of the @code{explore}
10267 command being passed the argument @var{expr}.
10269 @item explore type @var{arg}
10270 @cindex explore type
10271 This sub-command of @code{explore} explores the type of @var{arg} (if
10272 @var{arg} is a type visible in the current context of program being
10273 debugged), or the type of the value/expression @var{arg} (if @var{arg}
10274 is an expression valid in the current context of the program being
10275 debugged).  If @var{arg} is a type, then the behavior of this command is
10276 identical to that of the @code{explore} command being passed the
10277 argument @var{arg}.  If @var{arg} is an expression, then the behavior of
10278 this command will be identical to that of the @code{explore} command
10279 being passed the type of @var{arg} as the argument.
10280 @end table
10282 @menu
10283 * Expressions::                 Expressions
10284 * Ambiguous Expressions::       Ambiguous Expressions
10285 * Variables::                   Program variables
10286 * Arrays::                      Artificial arrays
10287 * Output Formats::              Output formats
10288 * Memory::                      Examining memory
10289 * Memory Tagging::              Memory Tagging
10290 * Auto Display::                Automatic display
10291 * Print Settings::              Print settings
10292 * Pretty Printing::             Python pretty printing
10293 * Value History::               Value history
10294 * Convenience Vars::            Convenience variables
10295 * Convenience Funs::            Convenience functions
10296 * Registers::                   Registers
10297 * Floating Point Hardware::     Floating point hardware
10298 * Vector Unit::                 Vector Unit
10299 * OS Information::              Auxiliary data provided by operating system
10300 * Memory Region Attributes::    Memory region attributes
10301 * Dump/Restore Files::          Copy between memory and a file
10302 * Core File Generation::        Cause a program dump its core
10303 * Character Sets::              Debugging programs that use a different
10304                                 character set than GDB does
10305 * Caching Target Data::         Data caching for targets
10306 * Searching Memory::            Searching memory for a sequence of bytes
10307 * Value Sizes::                 Managing memory allocated for values
10308 @end menu
10310 @node Expressions
10311 @section Expressions
10313 @cindex expressions
10314 @code{print} and many other @value{GDBN} commands accept an expression and
10315 compute its value.  Any kind of constant, variable or operator defined
10316 by the programming language you are using is valid in an expression in
10317 @value{GDBN}.  This includes conditional expressions, function calls,
10318 casts, and string constants.  It also includes preprocessor macros, if
10319 you compiled your program to include this information; see
10320 @ref{Compilation}.
10322 @cindex arrays in expressions
10323 @value{GDBN} supports array constants in expressions input by
10324 the user.  The syntax is @{@var{element}, @var{element}@dots{}@}.  For example,
10325 you can use the command @code{print @{1, 2, 3@}} to create an array
10326 of three integers.  If you pass an array to a function or assign it
10327 to a program variable, @value{GDBN} copies the array to memory that
10328 is @code{malloc}ed in the target program.
10330 Because C is so widespread, most of the expressions shown in examples in
10331 this manual are in C.  @xref{Languages, , Using @value{GDBN} with Different
10332 Languages}, for information on how to use expressions in other
10333 languages.
10335 In this section, we discuss operators that you can use in @value{GDBN}
10336 expressions regardless of your programming language.
10338 @cindex casts, in expressions
10339 Casts are supported in all languages, not just in C, because it is so
10340 useful to cast a number into a pointer in order to examine a structure
10341 at that address in memory.
10342 @c FIXME: casts supported---Mod2 true?
10344 @value{GDBN} supports these operators, in addition to those common
10345 to programming languages:
10347 @table @code
10348 @item @@
10349 @samp{@@} is a binary operator for treating parts of memory as arrays.
10350 @xref{Arrays, ,Artificial Arrays}, for more information.
10352 @item ::
10353 @samp{::} allows you to specify a variable in terms of the file or
10354 function where it is defined.  @xref{Variables, ,Program Variables}.
10356 @cindex @{@var{type}@}
10357 @cindex type casting memory
10358 @cindex memory, viewing as typed object
10359 @cindex casts, to view memory
10360 @item @{@var{type}@} @var{addr}
10361 Refers to an object of type @var{type} stored at address @var{addr} in
10362 memory.  The address @var{addr} may be any expression whose value is
10363 an integer or pointer (but parentheses are required around binary
10364 operators, just as in a cast).  This construct is allowed regardless
10365 of what kind of data is normally supposed to reside at @var{addr}.
10366 @end table
10368 @node Ambiguous Expressions
10369 @section Ambiguous Expressions
10370 @cindex ambiguous expressions
10372 Expressions can sometimes contain some ambiguous elements.  For instance,
10373 some programming languages (notably Ada, C@t{++} and Objective-C) permit
10374 a single function name to be defined several times, for application in
10375 different contexts.  This is called @dfn{overloading}.  Another example
10376 involving Ada is generics.  A @dfn{generic package} is similar to C@t{++}
10377 templates and is typically instantiated several times, resulting in
10378 the same function name being defined in different contexts.
10380 In some cases and depending on the language, it is possible to adjust
10381 the expression to remove the ambiguity.  For instance in C@t{++}, you
10382 can specify the signature of the function you want to break on, as in
10383 @kbd{break @var{function}(@var{types})}.  In Ada, using the fully
10384 qualified name of your function often makes the expression unambiguous
10385 as well.
10387 When an ambiguity that needs to be resolved is detected, the debugger
10388 has the capability to display a menu of numbered choices for each
10389 possibility, and then waits for the selection with the prompt @samp{>}.
10390 The first option is always @samp{[0] cancel}, and typing @kbd{0 @key{RET}}
10391 aborts the current command.  If the command in which the expression was
10392 used allows more than one choice to be selected, the next option in the
10393 menu is @samp{[1] all}, and typing @kbd{1 @key{RET}} selects all possible
10394 choices.
10396 For example, the following session excerpt shows an attempt to set a
10397 breakpoint at the overloaded symbol @code{String::after}.
10398 We choose three particular definitions of that function name:
10400 @c FIXME! This is likely to change to show arg type lists, at least
10401 @smallexample
10402 @group
10403 (@value{GDBP}) b String::after
10404 [0] cancel
10405 [1] all
10406 [2] file:String.cc; line number:867
10407 [3] file:String.cc; line number:860
10408 [4] file:String.cc; line number:875
10409 [5] file:String.cc; line number:853
10410 [6] file:String.cc; line number:846
10411 [7] file:String.cc; line number:735
10412 > 2 4 6
10413 Breakpoint 1 at 0xb26c: file String.cc, line 867.
10414 Breakpoint 2 at 0xb344: file String.cc, line 875.
10415 Breakpoint 3 at 0xafcc: file String.cc, line 846.
10416 Multiple breakpoints were set.
10417 Use the "delete" command to delete unwanted
10418  breakpoints.
10419 (@value{GDBP})
10420 @end group
10421 @end smallexample
10423 @table @code
10424 @kindex set multiple-symbols
10425 @item set multiple-symbols @var{mode}
10426 @cindex multiple-symbols menu
10428 This option allows you to adjust the debugger behavior when an expression
10429 is ambiguous.
10431 By default, @var{mode} is set to @code{all}.  If the command with which
10432 the expression is used allows more than one choice, then @value{GDBN}
10433 automatically selects all possible choices.  For instance, inserting
10434 a breakpoint on a function using an ambiguous name results in a breakpoint
10435 inserted on each possible match.  However, if a unique choice must be made,
10436 then @value{GDBN} uses the menu to help you disambiguate the expression.
10437 For instance, printing the address of an overloaded function will result
10438 in the use of the menu.
10440 When @var{mode} is set to @code{ask}, the debugger always uses the menu
10441 when an ambiguity is detected.
10443 Finally, when @var{mode} is set to @code{cancel}, the debugger reports
10444 an error due to the ambiguity and the command is aborted.
10446 @kindex show multiple-symbols
10447 @item show multiple-symbols
10448 Show the current value of the @code{multiple-symbols} setting.
10449 @end table
10451 @node Variables
10452 @section Program Variables
10454 The most common kind of expression to use is the name of a variable
10455 in your program.
10457 Variables in expressions are understood in the selected stack frame
10458 (@pxref{Selection, ,Selecting a Frame}); they must be either:
10460 @itemize @bullet
10461 @item
10462 global (or file-static)
10463 @end itemize
10465 @noindent or
10467 @itemize @bullet
10468 @item
10469 visible according to the scope rules of the
10470 programming language from the point of execution in that frame
10471 @end itemize
10473 @noindent This means that in the function
10475 @smallexample
10476 foo (a)
10477      int a;
10479   bar (a);
10480   @{
10481     int b = test ();
10482     bar (b);
10483   @}
10485 @end smallexample
10487 @noindent
10488 you can examine and use the variable @code{a} whenever your program is
10489 executing within the function @code{foo}, but you can only use or
10490 examine the variable @code{b} while your program is executing inside
10491 the block where @code{b} is declared.
10493 @cindex variable name conflict
10494 There is an exception: you can refer to a variable or function whose
10495 scope is a single source file even if the current execution point is not
10496 in this file.  But it is possible to have more than one such variable or
10497 function with the same name (in different source files).  If that
10498 happens, referring to that name has unpredictable effects.  If you wish,
10499 you can specify a static variable in a particular function or file by
10500 using the colon-colon (@code{::}) notation:
10502 @cindex colon-colon, context for variables/functions
10503 @ifnotinfo
10504 @c info cannot cope with a :: index entry, but why deprive hard copy readers?
10505 @cindex @code{::}, context for variables/functions
10506 @end ifnotinfo
10507 @smallexample
10508 @var{file}::@var{variable}
10509 @var{function}::@var{variable}
10510 @end smallexample
10512 @noindent
10513 Here @var{file} or @var{function} is the name of the context for the
10514 static @var{variable}.  In the case of file names, you can use quotes to
10515 make sure @value{GDBN} parses the file name as a single word---for example,
10516 to print a global value of @code{x} defined in @file{f2.c}:
10518 @smallexample
10519 (@value{GDBP}) p 'f2.c'::x
10520 @end smallexample
10522 The @code{::} notation is normally used for referring to
10523 static variables, since you typically disambiguate uses of local variables
10524 in functions by selecting the appropriate frame and using the
10525 simple name of the variable.  However, you may also use this notation
10526 to refer to local variables in frames enclosing the selected frame:
10528 @smallexample
10529 void
10530 foo (int a)
10532   if (a < 10)
10533     bar (a);
10534   else
10535     process (a);    /* Stop here */
10539 bar (int a)
10541   foo (a + 5);
10543 @end smallexample
10545 @noindent
10546 For example, if there is a breakpoint at the commented line,
10547 here is what you might see
10548 when the program stops after executing the call @code{bar(0)}:
10550 @smallexample
10551 (@value{GDBP}) p a
10552 $1 = 10
10553 (@value{GDBP}) p bar::a
10554 $2 = 5
10555 (@value{GDBP}) up 2
10556 #2  0x080483d0 in foo (a=5) at foobar.c:12
10557 (@value{GDBP}) p a
10558 $3 = 5
10559 (@value{GDBP}) p bar::a
10560 $4 = 0
10561 @end smallexample
10563 @cindex C@t{++} scope resolution
10564 These uses of @samp{::} are very rarely in conflict with the very
10565 similar use of the same notation in C@t{++}.  When they are in
10566 conflict, the C@t{++} meaning takes precedence; however, this can be
10567 overridden by quoting the file or function name with single quotes.
10569 For example, suppose the program is stopped in a method of a class
10570 that has a field named @code{includefile}, and there is also an
10571 include file named @file{includefile} that defines a variable,
10572 @code{some_global}.
10574 @smallexample
10575 (@value{GDBP}) p includefile
10576 $1 = 23
10577 (@value{GDBP}) p includefile::some_global
10578 A syntax error in expression, near `'.
10579 (@value{GDBP}) p 'includefile'::some_global
10580 $2 = 27
10581 @end smallexample
10583 @cindex wrong values
10584 @cindex variable values, wrong
10585 @cindex function entry/exit, wrong values of variables
10586 @cindex optimized code, wrong values of variables
10587 @quotation
10588 @emph{Warning:} Occasionally, a local variable may appear to have the
10589 wrong value at certain points in a function---just after entry to a new
10590 scope, and just before exit.
10591 @end quotation
10592 You may see this problem when you are stepping by machine instructions.
10593 This is because, on most machines, it takes more than one instruction to
10594 set up a stack frame (including local variable definitions); if you are
10595 stepping by machine instructions, variables may appear to have the wrong
10596 values until the stack frame is completely built.  On exit, it usually
10597 also takes more than one machine instruction to destroy a stack frame;
10598 after you begin stepping through that group of instructions, local
10599 variable definitions may be gone.
10601 This may also happen when the compiler does significant optimizations.
10602 To be sure of always seeing accurate values, turn off all optimization
10603 when compiling.
10605 @cindex ``No symbol "foo" in current context''
10606 Another possible effect of compiler optimizations is to optimize
10607 unused variables out of existence, or assign variables to registers (as
10608 opposed to memory addresses).  Depending on the support for such cases
10609 offered by the debug info format used by the compiler, @value{GDBN}
10610 might not be able to display values for such local variables.  If that
10611 happens, @value{GDBN} will print a message like this:
10613 @smallexample
10614 No symbol "foo" in current context.
10615 @end smallexample
10617 To solve such problems, either recompile without optimizations, or use a
10618 different debug info format, if the compiler supports several such
10619 formats.  @xref{Compilation}, for more information on choosing compiler
10620 options.  @xref{C, ,C and C@t{++}}, for more information about debug
10621 info formats that are best suited to C@t{++} programs.
10623 If you ask to print an object whose contents are unknown to
10624 @value{GDBN}, e.g., because its data type is not completely specified
10625 by the debug information, @value{GDBN} will say @samp{<incomplete
10626 type>}.  @xref{Symbols, incomplete type}, for more about this.
10628 @cindex no debug info variables
10629 If you try to examine or use the value of a (global) variable for
10630 which @value{GDBN} has no type information, e.g., because the program
10631 includes no debug information, @value{GDBN} displays an error message.
10632 @xref{Symbols, unknown type}, for more about unknown types.  If you
10633 cast the variable to its declared type, @value{GDBN} gets the
10634 variable's value using the cast-to type as the variable's type.  For
10635 example, in a C program:
10637 @smallexample
10638   (@value{GDBP}) p var
10639   'var' has unknown type; cast it to its declared type
10640   (@value{GDBP}) p (float) var
10641   $1 = 3.14
10642 @end smallexample
10644 If you append @kbd{@@entry} string to a function parameter name you get its
10645 value at the time the function got called.  If the value is not available an
10646 error message is printed.  Entry values are available only with some compilers.
10647 Entry values are normally also printed at the function parameter list according
10648 to @ref{set print entry-values}.
10650 @smallexample
10651 Breakpoint 1, d (i=30) at gdb.base/entry-value.c:29
10652 29        i++;
10653 (gdb) next
10654 30        e (i);
10655 (gdb) print i
10656 $1 = 31
10657 (gdb) print i@@entry
10658 $2 = 30
10659 @end smallexample
10661 Strings are identified as arrays of @code{char} values without specified
10662 signedness.  Arrays of either @code{signed char} or @code{unsigned char} get
10663 printed as arrays of 1 byte sized integers.  @code{-fsigned-char} or
10664 @code{-funsigned-char} @value{NGCC} options have no effect as @value{GDBN}
10665 defines literal string type @code{"char"} as @code{char} without a sign.
10666 For program code
10668 @smallexample
10669 char var0[] = "A";
10670 signed char var1[] = "A";
10671 @end smallexample
10673 You get during debugging
10674 @smallexample
10675 (gdb) print var0
10676 $1 = "A"
10677 (gdb) print var1
10678 $2 = @{65 'A', 0 '\0'@}
10679 @end smallexample
10681 @node Arrays
10682 @section Artificial Arrays
10684 @cindex artificial array
10685 @cindex arrays
10686 @kindex @@@r{, referencing memory as an array}
10687 It is often useful to print out several successive objects of the
10688 same type in memory; a section of an array, or an array of
10689 dynamically determined size for which only a pointer exists in the
10690 program.
10692 You can do this by referring to a contiguous span of memory as an
10693 @dfn{artificial array}, using the binary operator @samp{@@}.  The left
10694 operand of @samp{@@} should be the first element of the desired array
10695 and be an individual object.  The right operand should be the desired length
10696 of the array.  The result is an array value whose elements are all of
10697 the type of the left argument.  The first element is actually the left
10698 argument; the second element comes from bytes of memory immediately
10699 following those that hold the first element, and so on.  Here is an
10700 example.  If a program says
10702 @smallexample
10703 int *array = (int *) malloc (len * sizeof (int));
10704 @end smallexample
10706 @noindent
10707 you can print the contents of @code{array} with
10709 @smallexample
10710 p *array@@len
10711 @end smallexample
10713 The left operand of @samp{@@} must reside in memory.  Array values made
10714 with @samp{@@} in this way behave just like other arrays in terms of
10715 subscripting, and are coerced to pointers when used in expressions.
10716 Artificial arrays most often appear in expressions via the value history
10717 (@pxref{Value History, ,Value History}), after printing one out.
10719 Another way to create an artificial array is to use a cast.
10720 This re-interprets a value as if it were an array.
10721 The value need not be in memory:
10722 @smallexample
10723 (@value{GDBP}) p/x (short[2])0x12345678
10724 $1 = @{0x1234, 0x5678@}
10725 @end smallexample
10727 As a convenience, if you leave the array length out (as in
10728 @samp{(@var{type}[])@var{value}}) @value{GDBN} calculates the size to fill
10729 the value (as @samp{sizeof(@var{value})/sizeof(@var{type})}:
10730 @smallexample
10731 (@value{GDBP}) p/x (short[])0x12345678
10732 $2 = @{0x1234, 0x5678@}
10733 @end smallexample
10735 Sometimes the artificial array mechanism is not quite enough; in
10736 moderately complex data structures, the elements of interest may not
10737 actually be adjacent---for example, if you are interested in the values
10738 of pointers in an array.  One useful work-around in this situation is
10739 to use a convenience variable (@pxref{Convenience Vars, ,Convenience
10740 Variables}) as a counter in an expression that prints the first
10741 interesting value, and then repeat that expression via @key{RET}.  For
10742 instance, suppose you have an array @code{dtab} of pointers to
10743 structures, and you are interested in the values of a field @code{fv}
10744 in each structure.  Here is an example of what you might type:
10746 @smallexample
10747 set $i = 0
10748 p dtab[$i++]->fv
10749 @key{RET}
10750 @key{RET}
10751 @dots{}
10752 @end smallexample
10754 @node Output Formats
10755 @section Output Formats
10757 @cindex formatted output
10758 @cindex output formats
10759 By default, @value{GDBN} prints a value according to its data type.  Sometimes
10760 this is not what you want.  For example, you might want to print a number
10761 in hex, or a pointer in decimal.  Or you might want to view data in memory
10762 at a certain address as a character string or as an instruction.  To do
10763 these things, specify an @dfn{output format} when you print a value.
10765 The simplest use of output formats is to say how to print a value
10766 already computed.  This is done by starting the arguments of the
10767 @code{print} command with a slash and a format letter.  The format
10768 letters supported are:
10770 @table @code
10771 @item x
10772 Print the binary representation of the value in hexadecimal.
10774 @item d
10775 Print the binary representation of the value in decimal.
10777 @item u
10778 Print the binary representation of the value as an decimal, as if it
10779 were unsigned.
10781 @item o
10782 Print the binary representation of the value in octal.
10784 @item t
10785 Print the binary representation of the value in binary.  The letter
10786 @samp{t} stands for ``two''.  @footnote{@samp{b} cannot be used
10787 because these format letters are also used with the @code{x} command,
10788 where @samp{b} stands for ``byte''; see @ref{Memory,,Examining
10789 Memory}.}
10791 @item a
10792 @cindex unknown address, locating
10793 @cindex locate address
10794 Print as an address, both absolute in hexadecimal and as an offset from
10795 the nearest preceding symbol.  You can use this format used to discover
10796 where (in what function) an unknown address is located:
10798 @smallexample
10799 (@value{GDBP}) p/a 0x54320
10800 $3 = 0x54320 <_initialize_vx+396>
10801 @end smallexample
10803 @noindent
10804 The command @code{info symbol 0x54320} yields similar results.
10805 @xref{Symbols, info symbol}.
10807 @item c
10808 Cast the value to an integer (unlike other formats, this does not just
10809 reinterpret the underlying bits) and print it as a character constant.
10810 This prints both the numerical value and its character representation.
10811 The character representation is replaced with the octal escape
10812 @samp{\nnn} for characters outside the 7-bit @sc{ascii} range.
10814 Without this format, @value{GDBN} displays @code{char},
10815 @w{@code{unsigned char}}, and @w{@code{signed char}} data as character
10816 constants.  Single-byte members of vectors are displayed as integer
10817 data.
10819 @item f
10820 Regard the bits of the value as a floating point number and print
10821 using typical floating point syntax.
10823 @item s
10824 @cindex printing strings
10825 @cindex printing byte arrays
10826 Regard as a string, if possible.  With this format, pointers to single-byte
10827 data are displayed as null-terminated strings and arrays of single-byte data
10828 are displayed as fixed-length strings.  Other values are displayed in their
10829 natural types.
10831 Without this format, @value{GDBN} displays pointers to and arrays of
10832 @code{char}, @w{@code{unsigned char}}, and @w{@code{signed char}} as
10833 strings.  Single-byte members of a vector are displayed as an integer
10834 array.
10836 @item z
10837 Like @samp{x} formatting, the value is treated as an integer and
10838 printed as hexadecimal, but leading zeros are printed to pad the value
10839 to the size of the integer type.
10841 @item r
10842 @cindex raw printing
10843 Print using the @samp{raw} formatting.  By default, @value{GDBN} will
10844 use a Python-based pretty-printer, if one is available (@pxref{Pretty
10845 Printing}).  This typically results in a higher-level display of the
10846 value's contents.  The @samp{r} format bypasses any Python
10847 pretty-printer which might exist.
10848 @end table
10850 For example, to print the program counter in hex (@pxref{Registers}), type
10852 @smallexample
10853 p/x $pc
10854 @end smallexample
10856 @noindent
10857 Note that no space is required before the slash; this is because command
10858 names in @value{GDBN} cannot contain a slash.
10860 To reprint the last value in the value history with a different format,
10861 you can use the @code{print} command with just a format and no
10862 expression.  For example, @samp{p/x} reprints the last value in hex.
10864 @node Memory
10865 @section Examining Memory
10867 You can use the command @code{x} (for ``examine'') to examine memory in
10868 any of several formats, independently of your program's data types.
10870 @cindex examining memory
10871 @table @code
10872 @kindex x @r{(examine memory)}
10873 @item x/@var{nfu} @var{addr}
10874 @itemx x @var{addr}
10875 @itemx x
10876 Use the @code{x} command to examine memory.
10877 @end table
10879 @var{n}, @var{f}, and @var{u} are all optional parameters that specify how
10880 much memory to display and how to format it; @var{addr} is an
10881 expression giving the address where you want to start displaying memory.
10882 If you use defaults for @var{nfu}, you need not type the slash @samp{/}.
10883 Several commands set convenient defaults for @var{addr}.
10885 @table @r
10886 @item @var{n}, the repeat count
10887 The repeat count is a decimal integer; the default is 1.  It specifies
10888 how much memory (counting by units @var{u}) to display.  If a negative
10889 number is specified, memory is examined backward from @var{addr}.
10890 @c This really is **decimal**; unaffected by 'set radix' as of GDB
10891 @c 4.1.2.
10893 @item @var{f}, the display format
10894 The display format is one of the formats used by @code{print}
10895 (@samp{x}, @samp{d}, @samp{u}, @samp{o}, @samp{t}, @samp{a}, @samp{c},
10896 @samp{f}, @samp{s}), @samp{i} (for machine instructions) and
10897 @samp{m} (for displaying memory tags).
10898 The default is @samp{x} (hexadecimal) initially.  The default changes
10899 each time you use either @code{x} or @code{print}.
10901 @item @var{u}, the unit size
10902 The unit size is any of
10904 @table @code
10905 @item b
10906 Bytes.
10907 @item h
10908 Halfwords (two bytes).
10909 @item w
10910 Words (four bytes).  This is the initial default.
10911 @item g
10912 Giant words (eight bytes).
10913 @end table
10915 Each time you specify a unit size with @code{x}, that size becomes the
10916 default unit the next time you use @code{x}.  For the @samp{i} format,
10917 the unit size is ignored and is normally not written.  For the @samp{s} format,
10918 the unit size defaults to @samp{b}, unless it is explicitly given.
10919 Use @kbd{x /hs} to display 16-bit char strings and @kbd{x /ws} to display
10920 32-bit strings.  The next use of @kbd{x /s} will again display 8-bit strings.
10921 Note that the results depend on the programming language of the
10922 current compilation unit.  If the language is C, the @samp{s}
10923 modifier will use the UTF-16 encoding while @samp{w} will use
10924 UTF-32.  The encoding is set by the programming language and cannot
10925 be altered.
10927 @item @var{addr}, starting display address
10928 @var{addr} is the address where you want @value{GDBN} to begin displaying
10929 memory.  The expression need not have a pointer value (though it may);
10930 it is always interpreted as an integer address of a byte of memory.
10931 @xref{Expressions, ,Expressions}, for more information on expressions.  The default for
10932 @var{addr} is usually just after the last address examined---but several
10933 other commands also set the default address: @code{info breakpoints} (to
10934 the address of the last breakpoint listed), @code{info line} (to the
10935 starting address of a line), and @code{print} (if you use it to display
10936 a value from memory).
10937 @end table
10939 For example, @samp{x/3uh 0x54320} is a request to display three halfwords
10940 (@code{h}) of memory, formatted as unsigned decimal integers (@samp{u}),
10941 starting at address @code{0x54320}.  @samp{x/4xw $sp} prints the four
10942 words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
10943 @pxref{Registers, ,Registers}) in hexadecimal (@samp{x}).
10945 You can also specify a negative repeat count to examine memory backward
10946 from the given address.  For example, @samp{x/-3uh 0x54320} prints three
10947 halfwords (@code{h}) at @code{0x5431a}, @code{0x5431c}, and @code{0x5431e}.
10949 Since the letters indicating unit sizes are all distinct from the
10950 letters specifying output formats, you do not have to remember whether
10951 unit size or format comes first; either order works.  The output
10952 specifications @samp{4xw} and @samp{4wx} mean exactly the same thing.
10953 (However, the count @var{n} must come first; @samp{wx4} does not work.)
10955 Even though the unit size @var{u} is ignored for the formats @samp{s}
10956 and @samp{i}, you might still want to use a count @var{n}; for example,
10957 @samp{3i} specifies that you want to see three machine instructions,
10958 including any operands.  For convenience, especially when used with
10959 the @code{display} command, the @samp{i} format also prints branch delay
10960 slot instructions, if any, beyond the count specified, which immediately
10961 follow the last instruction that is within the count.  The command
10962 @code{disassemble} gives an alternative way of inspecting machine
10963 instructions; see @ref{Machine Code,,Source and Machine Code}.
10965 If a negative repeat count is specified for the formats @samp{s} or @samp{i},
10966 the command displays null-terminated strings or instructions before the given
10967 address as many as the absolute value of the given number.  For the @samp{i}
10968 format, we use line number information in the debug info to accurately locate
10969 instruction boundaries while disassembling backward.  If line info is not
10970 available, the command stops examining memory with an error message.
10972 All the defaults for the arguments to @code{x} are designed to make it
10973 easy to continue scanning memory with minimal specifications each time
10974 you use @code{x}.  For example, after you have inspected three machine
10975 instructions with @samp{x/3i @var{addr}}, you can inspect the next seven
10976 with just @samp{x/7}.  If you use @key{RET} to repeat the @code{x} command,
10977 the repeat count @var{n} is used again; the other arguments default as
10978 for successive uses of @code{x}.
10980 When examining machine instructions, the instruction at current program
10981 counter is shown with a @code{=>} marker. For example:
10983 @smallexample
10984 (@value{GDBP}) x/5i $pc-6
10985    0x804837f <main+11>: mov    %esp,%ebp
10986    0x8048381 <main+13>: push   %ecx
10987    0x8048382 <main+14>: sub    $0x4,%esp
10988 => 0x8048385 <main+17>: movl   $0x8048460,(%esp)
10989    0x804838c <main+24>: call   0x80482d4 <puts@@plt>
10990 @end smallexample
10992 If the architecture supports memory tagging, the tags can be displayed by
10993 using @samp{m}.  @xref{Memory Tagging}.
10995 The information will be displayed once per granule size
10996 (the amount of bytes a particular memory tag covers).  For example, AArch64
10997 has a granule size of 16 bytes, so it will display a tag every 16 bytes.
10999 Due to the way @value{GDBN} prints information with the @code{x} command (not
11000 aligned to a particular boundary), the tag information will refer to the
11001 initial address displayed on a particular line.  If a memory tag boundary
11002 is crossed in the middle of a line displayed by the @code{x} command, it
11003 will be displayed on the next line.
11005 The @samp{m} format doesn't affect any other specified formats that were
11006 passed to the @code{x} command.
11008 @cindex @code{$_}, @code{$__}, and value history
11009 The addresses and contents printed by the @code{x} command are not saved
11010 in the value history because there is often too much of them and they
11011 would get in the way.  Instead, @value{GDBN} makes these values available for
11012 subsequent use in expressions as values of the convenience variables
11013 @code{$_} and @code{$__}.  After an @code{x} command, the last address
11014 examined is available for use in expressions in the convenience variable
11015 @code{$_}.  The contents of that address, as examined, are available in
11016 the convenience variable @code{$__}.
11018 If the @code{x} command has a repeat count, the address and contents saved
11019 are from the last memory unit printed; this is not the same as the last
11020 address printed if several units were printed on the last line of output.
11022 @anchor{addressable memory unit}
11023 @cindex addressable memory unit
11024 Most targets have an addressable memory unit size of 8 bits.  This means
11025 that to each memory address are associated 8 bits of data.  Some
11026 targets, however, have other addressable memory unit sizes.
11027 Within @value{GDBN} and this document, the term
11028 @dfn{addressable memory unit} (or @dfn{memory unit} for short) is used
11029 when explicitly referring to a chunk of data of that size.  The word
11030 @dfn{byte} is used to refer to a chunk of data of 8 bits, regardless of
11031 the addressable memory unit size of the target.  For most systems,
11032 addressable memory unit is a synonym of byte.
11034 @cindex remote memory comparison
11035 @cindex target memory comparison
11036 @cindex verify remote memory image
11037 @cindex verify target memory image
11038 When you are debugging a program running on a remote target machine
11039 (@pxref{Remote Debugging}), you may wish to verify the program's image
11040 in the remote machine's memory against the executable file you
11041 downloaded to the target.  Or, on any target, you may want to check
11042 whether the program has corrupted its own read-only sections.  The
11043 @code{compare-sections} command is provided for such situations.
11045 @table @code
11046 @kindex compare-sections
11047 @item compare-sections @r{[}@var{section-name}@r{|}@code{-r}@r{]}
11048 Compare the data of a loadable section @var{section-name} in the
11049 executable file of the program being debugged with the same section in
11050 the target machine's memory, and report any mismatches.  With no
11051 arguments, compares all loadable sections.  With an argument of
11052 @code{-r}, compares all loadable read-only sections.
11054 Note: for remote targets, this command can be accelerated if the
11055 target supports computing the CRC checksum of a block of memory
11056 (@pxref{qCRC packet}).
11057 @end table
11059 @node Memory Tagging
11060 @section Memory Tagging
11062 Memory tagging is a memory protection technology that uses a pair of tags to
11063 validate memory accesses through pointers.  The tags are integer values
11064 usually comprised of a few bits, depending on the architecture.
11066 There are two types of tags that are used in this setup: logical and
11067 allocation.  A logical tag is stored in the pointers themselves, usually at the
11068 higher bits of the pointers.  An allocation tag is the tag associated
11069 with particular ranges of memory in the physical address space, against which
11070 the logical tags from pointers are compared.
11072 The pointer tag (logical tag) must match the memory tag (allocation tag)
11073 for the memory access to be valid.  If the logical tag does not match the
11074 allocation tag, that will raise a memory violation.
11076 Allocation tags cover multiple contiguous bytes of physical memory.  This
11077 range of bytes is called a memory tag granule and is architecture-specific.
11078 For example,  AArch64 has a tag granule of 16 bytes, meaning each allocation
11079 tag spans 16 bytes of memory.
11081 If the underlying architecture supports memory tagging, like AArch64 MTE
11082 or SPARC ADI do,  @value{GDBN} can make use of it to validate pointers
11083 against memory allocation tags.
11085 The @code{print} (@pxref{Data}) and @code{x} (@pxref{Memory}) commands will
11086 display tag information when appropriate, and a command prefix of
11087 @code{memory-tag} gives access to the various memory tagging commands.
11089 The @code{memory-tag} commands are the following:
11091 @table @code
11092 @kindex memory-tag print-logical-tag
11093 @item memory-tag print-logical-tag @var{pointer_expression}
11094 Print the logical tag stored in @var{pointer_expression}.
11095 @kindex memory-tag with-logical-tag
11096 @item memory-tag with-logical-tag @var{pointer_expression} @var{tag_bytes}
11097 Print the pointer given by @var{pointer_expression}, augmented with a logical
11098 tag of @var{tag_bytes}.
11099 @kindex memory-tag print-allocation-tag
11100 @item memory-tag print-allocation-tag @var{address_expression}
11101 Print the allocation tag associated with the memory address given by
11102 @var{address_expression}.
11103 @kindex memory-tag setatag
11104 @item memory-tag setatag @var{starting_address} @var{length} @var{tag_bytes}
11105 Set the allocation tag(s) for memory range @r{[}@var{starting_address},
11106 @var{starting_address} + @var{length}@r{)} to @var{tag_bytes}.
11107 @kindex memory-tag check
11108 @item memory-tag check @var{pointer_expression}
11109 Check if the logical tag in the pointer given by @var{pointer_expression}
11110 matches the allocation tag for the memory referenced by the pointer.
11112 This essentially emulates the hardware validation that is done when tagged
11113 memory is accessed through a pointer, but does not cause a memory fault as
11114 it would during hardware validation.
11116 It can be used to inspect potential memory tagging violations in the running
11117 process, before any faults get triggered.
11118 @end table
11120 @node Auto Display
11121 @section Automatic Display
11122 @cindex automatic display
11123 @cindex display of expressions
11125 If you find that you want to print the value of an expression frequently
11126 (to see how it changes), you might want to add it to the @dfn{automatic
11127 display list} so that @value{GDBN} prints its value each time your program stops.
11128 Each expression added to the list is given a number to identify it;
11129 to remove an expression from the list, you specify that number.
11130 The automatic display looks like this:
11132 @smallexample
11133 2: foo = 38
11134 3: bar[5] = (struct hack *) 0x3804
11135 @end smallexample
11137 @noindent
11138 This display shows item numbers, expressions and their current values.  As with
11139 displays you request manually using @code{x} or @code{print}, you can
11140 specify the output format you prefer; in fact, @code{display} decides
11141 whether to use @code{print} or @code{x} depending your format
11142 specification---it uses @code{x} if you specify either the @samp{i}
11143 or @samp{s} format, or a unit size; otherwise it uses @code{print}.
11145 @table @code
11146 @kindex display
11147 @item display @var{expr}
11148 Add the expression @var{expr} to the list of expressions to display
11149 each time your program stops.  @xref{Expressions, ,Expressions}.
11151 @code{display} does not repeat if you press @key{RET} again after using it.
11153 @item display/@var{fmt} @var{expr}
11154 For @var{fmt} specifying only a display format and not a size or
11155 count, add the expression @var{expr} to the auto-display list but
11156 arrange to display it each time in the specified format @var{fmt}.
11157 @xref{Output Formats,,Output Formats}.
11159 @item display/@var{fmt} @var{addr}
11160 For @var{fmt} @samp{i} or @samp{s}, or including a unit-size or a
11161 number of units, add the expression @var{addr} as a memory address to
11162 be examined each time your program stops.  Examining means in effect
11163 doing @samp{x/@var{fmt} @var{addr}}.  @xref{Memory, ,Examining Memory}.
11164 @end table
11166 For example, @samp{display/i $pc} can be helpful, to see the machine
11167 instruction about to be executed each time execution stops (@samp{$pc}
11168 is a common name for the program counter; @pxref{Registers, ,Registers}).
11170 @table @code
11171 @kindex delete display
11172 @kindex undisplay
11173 @item undisplay @var{dnums}@dots{}
11174 @itemx delete display @var{dnums}@dots{}
11175 Remove items from the list of expressions to display.  Specify the
11176 numbers of the displays that you want affected with the command
11177 argument @var{dnums}.  It can be a single display number, one of the
11178 numbers shown in the first field of the @samp{info display} display;
11179 or it could be a range of display numbers, as in @code{2-4}.
11181 @code{undisplay} does not repeat if you press @key{RET} after using it.
11182 (Otherwise you would just get the error @samp{No display number @dots{}}.)
11184 @kindex disable display
11185 @item disable display @var{dnums}@dots{}
11186 Disable the display of item numbers @var{dnums}.  A disabled display
11187 item is not printed automatically, but is not forgotten.  It may be
11188 enabled again later.  Specify the numbers of the displays that you
11189 want affected with the command argument @var{dnums}.  It can be a
11190 single display number, one of the numbers shown in the first field of
11191 the @samp{info display} display; or it could be a range of display
11192 numbers, as in @code{2-4}.
11194 @kindex enable display
11195 @item enable display @var{dnums}@dots{}
11196 Enable display of item numbers @var{dnums}.  It becomes effective once
11197 again in auto display of its expression, until you specify otherwise.
11198 Specify the numbers of the displays that you want affected with the
11199 command argument @var{dnums}.  It can be a single display number, one
11200 of the numbers shown in the first field of the @samp{info display}
11201 display; or it could be a range of display numbers, as in @code{2-4}.
11203 @item display
11204 Display the current values of the expressions on the list, just as is
11205 done when your program stops.
11207 @kindex info display
11208 @item info display
11209 Print the list of expressions previously set up to display
11210 automatically, each one with its item number, but without showing the
11211 values.  This includes disabled expressions, which are marked as such.
11212 It also includes expressions which would not be displayed right now
11213 because they refer to automatic variables not currently available.
11214 @end table
11216 @cindex display disabled out of scope
11217 If a display expression refers to local variables, then it does not make
11218 sense outside the lexical context for which it was set up.  Such an
11219 expression is disabled when execution enters a context where one of its
11220 variables is not defined.  For example, if you give the command
11221 @code{display last_char} while inside a function with an argument
11222 @code{last_char}, @value{GDBN} displays this argument while your program
11223 continues to stop inside that function.  When it stops elsewhere---where
11224 there is no variable @code{last_char}---the display is disabled
11225 automatically.  The next time your program stops where @code{last_char}
11226 is meaningful, you can enable the display expression once again.
11228 @node Print Settings
11229 @section Print Settings
11231 @cindex format options
11232 @cindex print settings
11233 @value{GDBN} provides the following ways to control how arrays, structures,
11234 and symbols are printed.
11236 @noindent
11237 These settings are useful for debugging programs in any language:
11239 @table @code
11240 @kindex set print
11241 @anchor{set print address}
11242 @item set print address
11243 @itemx set print address on
11244 @cindex print/don't print memory addresses
11245 @value{GDBN} prints memory addresses showing the location of stack
11246 traces, structure values, pointer values, breakpoints, and so forth,
11247 even when it also displays the contents of those addresses.  The default
11248 is @code{on}.  For example, this is what a stack frame display looks like with
11249 @code{set print address on}:
11251 @smallexample
11252 @group
11253 (@value{GDBP}) f
11254 #0  set_quotes (lq=0x34c78 "<<", rq=0x34c88 ">>")
11255     at input.c:530
11256 530         if (lquote != def_lquote)
11257 @end group
11258 @end smallexample
11260 @item set print address off
11261 Do not print addresses when displaying their contents.  For example,
11262 this is the same stack frame displayed with @code{set print address off}:
11264 @smallexample
11265 @group
11266 (@value{GDBP}) set print addr off
11267 (@value{GDBP}) f
11268 #0  set_quotes (lq="<<", rq=">>") at input.c:530
11269 530         if (lquote != def_lquote)
11270 @end group
11271 @end smallexample
11273 You can use @samp{set print address off} to eliminate all machine
11274 dependent displays from the @value{GDBN} interface.  For example, with
11275 @code{print address off}, you should get the same text for backtraces on
11276 all machines---whether or not they involve pointer arguments.
11278 @kindex show print
11279 @item show print address
11280 Show whether or not addresses are to be printed.
11281 @end table
11283 When @value{GDBN} prints a symbolic address, it normally prints the
11284 closest earlier symbol plus an offset.  If that symbol does not uniquely
11285 identify the address (for example, it is a name whose scope is a single
11286 source file), you may need to clarify.  One way to do this is with
11287 @code{info line}, for example @samp{info line *0x4537}.  Alternately,
11288 you can set @value{GDBN} to print the source file and line number when
11289 it prints a symbolic address:
11291 @table @code
11292 @item set print symbol-filename on
11293 @cindex source file and line of a symbol
11294 @cindex symbol, source file and line
11295 Tell @value{GDBN} to print the source file name and line number of a
11296 symbol in the symbolic form of an address.
11298 @item set print symbol-filename off
11299 Do not print source file name and line number of a symbol.  This is the
11300 default.
11302 @item show print symbol-filename
11303 Show whether or not @value{GDBN} will print the source file name and
11304 line number of a symbol in the symbolic form of an address.
11305 @end table
11307 Another situation where it is helpful to show symbol filenames and line
11308 numbers is when disassembling code; @value{GDBN} shows you the line
11309 number and source file that corresponds to each instruction.
11311 Also, you may wish to see the symbolic form only if the address being
11312 printed is reasonably close to the closest earlier symbol:
11314 @table @code
11315 @item set print max-symbolic-offset @var{max-offset}
11316 @itemx set print max-symbolic-offset unlimited
11317 @cindex maximum value for offset of closest symbol
11318 Tell @value{GDBN} to only display the symbolic form of an address if the
11319 offset between the closest earlier symbol and the address is less than
11320 @var{max-offset}.  The default is @code{unlimited}, which tells @value{GDBN}
11321 to always print the symbolic form of an address if any symbol precedes
11322 it.  Zero is equivalent to @code{unlimited}.
11324 @item show print max-symbolic-offset
11325 Ask how large the maximum offset is that @value{GDBN} prints in a
11326 symbolic address.
11327 @end table
11329 @cindex wild pointer, interpreting
11330 @cindex pointer, finding referent
11331 If you have a pointer and you are not sure where it points, try
11332 @samp{set print symbol-filename on}.  Then you can determine the name
11333 and source file location of the variable where it points, using
11334 @samp{p/a @var{pointer}}.  This interprets the address in symbolic form.
11335 For example, here @value{GDBN} shows that a variable @code{ptt} points
11336 at another variable @code{t}, defined in @file{hi2.c}:
11338 @smallexample
11339 (@value{GDBP}) set print symbol-filename on
11340 (@value{GDBP}) p/a ptt
11341 $4 = 0xe008 <t in hi2.c>
11342 @end smallexample
11344 @quotation
11345 @emph{Warning:} For pointers that point to a local variable, @samp{p/a}
11346 does not show the symbol name and filename of the referent, even with
11347 the appropriate @code{set print} options turned on.
11348 @end quotation
11350 You can also enable @samp{/a}-like formatting all the time using
11351 @samp{set print symbol on}:
11353 @anchor{set print symbol}
11354 @table @code
11355 @item set print symbol on
11356 Tell @value{GDBN} to print the symbol corresponding to an address, if
11357 one exists.
11359 @item set print symbol off
11360 Tell @value{GDBN} not to print the symbol corresponding to an
11361 address.  In this mode, @value{GDBN} will still print the symbol
11362 corresponding to pointers to functions.  This is the default.
11364 @item show print symbol
11365 Show whether @value{GDBN} will display the symbol corresponding to an
11366 address.
11367 @end table
11369 Other settings control how different kinds of objects are printed:
11371 @table @code
11372 @anchor{set print array}
11373 @item set print array
11374 @itemx set print array on
11375 @cindex pretty print arrays
11376 Pretty print arrays.  This format is more convenient to read,
11377 but uses more space.  The default is off.
11379 @item set print array off
11380 Return to compressed format for arrays.
11382 @item show print array
11383 Show whether compressed or pretty format is selected for displaying
11384 arrays.
11386 @cindex print array indexes
11387 @anchor{set print array-indexes}
11388 @item set print array-indexes
11389 @itemx set print array-indexes on
11390 Print the index of each element when displaying arrays.  May be more
11391 convenient to locate a given element in the array or quickly find the
11392 index of a given element in that printed array.  The default is off.
11394 @item set print array-indexes off
11395 Stop printing element indexes when displaying arrays.
11397 @item show print array-indexes
11398 Show whether the index of each element is printed when displaying
11399 arrays.
11401 @anchor{set print elements}
11402 @item set print elements @var{number-of-elements}
11403 @itemx set print elements unlimited
11404 @cindex number of array elements to print
11405 @cindex limit on number of printed array elements
11406 Set a limit on how many elements of an array @value{GDBN} will print.
11407 If @value{GDBN} is printing a large array, it stops printing after it has
11408 printed the number of elements set by the @code{set print elements} command.
11409 This limit also applies to the display of strings.
11410 When @value{GDBN} starts, this limit is set to 200.
11411 Setting @var{number-of-elements} to @code{unlimited} or zero means
11412 that the number of elements to print is unlimited.
11414 @item show print elements
11415 Display the number of elements of a large array that @value{GDBN} will print.
11417 @anchor{set print frame-arguments}
11418 @item set print frame-arguments @var{value}
11419 @kindex set print frame-arguments
11420 @cindex printing frame argument values
11421 @cindex print all frame argument values
11422 @cindex print frame argument values for scalars only
11423 @cindex do not print frame arguments
11424 This command allows to control how the values of arguments are printed
11425 when the debugger prints a frame (@pxref{Frames}).  The possible
11426 values are:
11428 @table @code
11429 @item all
11430 The values of all arguments are printed.
11432 @item scalars
11433 Print the value of an argument only if it is a scalar.  The value of more
11434 complex arguments such as arrays, structures, unions, etc, is replaced
11435 by @code{@dots{}}.  This is the default.  Here is an example where
11436 only scalar arguments are shown:
11438 @smallexample
11439 #1  0x08048361 in call_me (i=3, s=@dots{}, ss=0xbf8d508c, u=@dots{}, e=green)
11440   at frame-args.c:23
11441 @end smallexample
11443 @item none
11444 None of the argument values are printed.  Instead, the value of each argument
11445 is replaced by @code{@dots{}}.  In this case, the example above now becomes:
11447 @smallexample
11448 #1  0x08048361 in call_me (i=@dots{}, s=@dots{}, ss=@dots{}, u=@dots{}, e=@dots{})
11449   at frame-args.c:23
11450 @end smallexample
11452 @item presence
11453 Only the presence of arguments is indicated by @code{@dots{}}.
11454 The @code{@dots{}} are not printed for function without any arguments.
11455 None of the argument names and values are printed.
11456 In this case, the example above now becomes:
11458 @smallexample
11459 #1  0x08048361 in call_me (@dots{}) at frame-args.c:23
11460 @end smallexample
11462 @end table
11464 By default, only scalar arguments are printed.  This command can be used
11465 to configure the debugger to print the value of all arguments, regardless
11466 of their type.  However, it is often advantageous to not print the value
11467 of more complex parameters.  For instance, it reduces the amount of
11468 information printed in each frame, making the backtrace more readable.
11469 Also, it improves performance when displaying Ada frames, because
11470 the computation of large arguments can sometimes be CPU-intensive,
11471 especially in large applications.  Setting @code{print frame-arguments}
11472 to @code{scalars} (the default), @code{none} or @code{presence} avoids
11473 this computation, thus speeding up the display of each Ada frame.
11475 @item show print frame-arguments
11476 Show how the value of arguments should be displayed when printing a frame.
11478 @anchor{set print raw-frame-arguments}
11479 @item set print raw-frame-arguments on
11480 Print frame arguments in raw, non pretty-printed, form.
11482 @item set print raw-frame-arguments off
11483 Print frame arguments in pretty-printed form, if there is a pretty-printer
11484 for the value (@pxref{Pretty Printing}),
11485 otherwise print the value in raw form.
11486 This is the default.
11488 @item show print raw-frame-arguments
11489 Show whether to print frame arguments in raw form.
11491 @anchor{set print entry-values}
11492 @item set print entry-values @var{value}
11493 @kindex set print entry-values
11494 Set printing of frame argument values at function entry.  In some cases
11495 @value{GDBN} can determine the value of function argument which was passed by
11496 the function caller, even if the value was modified inside the called function
11497 and therefore is different.  With optimized code, the current value could be
11498 unavailable, but the entry value may still be known.
11500 The default value is @code{default} (see below for its description).  Older
11501 @value{GDBN} behaved as with the setting @code{no}.  Compilers not supporting
11502 this feature will behave in the @code{default} setting the same way as with the
11503 @code{no} setting.
11505 This functionality is currently supported only by DWARF 2 debugging format and
11506 the compiler has to produce @samp{DW_TAG_call_site} tags.  With
11507 @value{NGCC}, you need to specify @option{-O -g} during compilation, to get
11508 this information.
11510 The @var{value} parameter can be one of the following:
11512 @table @code
11513 @item no
11514 Print only actual parameter values, never print values from function entry
11515 point.
11516 @smallexample
11517 #0  equal (val=5)
11518 #0  different (val=6)
11519 #0  lost (val=<optimized out>)
11520 #0  born (val=10)
11521 #0  invalid (val=<optimized out>)
11522 @end smallexample
11524 @item only
11525 Print only parameter values from function entry point.  The actual parameter
11526 values are never printed.
11527 @smallexample
11528 #0  equal (val@@entry=5)
11529 #0  different (val@@entry=5)
11530 #0  lost (val@@entry=5)
11531 #0  born (val@@entry=<optimized out>)
11532 #0  invalid (val@@entry=<optimized out>)
11533 @end smallexample
11535 @item preferred
11536 Print only parameter values from function entry point.  If value from function
11537 entry point is not known while the actual value is known, print the actual
11538 value for such parameter.
11539 @smallexample
11540 #0  equal (val@@entry=5)
11541 #0  different (val@@entry=5)
11542 #0  lost (val@@entry=5)
11543 #0  born (val=10)
11544 #0  invalid (val@@entry=<optimized out>)
11545 @end smallexample
11547 @item if-needed
11548 Print actual parameter values.  If actual parameter value is not known while
11549 value from function entry point is known, print the entry point value for such
11550 parameter.
11551 @smallexample
11552 #0  equal (val=5)
11553 #0  different (val=6)
11554 #0  lost (val@@entry=5)
11555 #0  born (val=10)
11556 #0  invalid (val=<optimized out>)
11557 @end smallexample
11559 @item both
11560 Always print both the actual parameter value and its value from function entry
11561 point, even if values of one or both are not available due to compiler
11562 optimizations.
11563 @smallexample
11564 #0  equal (val=5, val@@entry=5)
11565 #0  different (val=6, val@@entry=5)
11566 #0  lost (val=<optimized out>, val@@entry=5)
11567 #0  born (val=10, val@@entry=<optimized out>)
11568 #0  invalid (val=<optimized out>, val@@entry=<optimized out>)
11569 @end smallexample
11571 @item compact
11572 Print the actual parameter value if it is known and also its value from
11573 function entry point if it is known.  If neither is known, print for the actual
11574 value @code{<optimized out>}.  If not in MI mode (@pxref{GDB/MI}) and if both
11575 values are known and identical, print the shortened
11576 @code{param=param@@entry=VALUE} notation.
11577 @smallexample
11578 #0  equal (val=val@@entry=5)
11579 #0  different (val=6, val@@entry=5)
11580 #0  lost (val@@entry=5)
11581 #0  born (val=10)
11582 #0  invalid (val=<optimized out>)
11583 @end smallexample
11585 @item default
11586 Always print the actual parameter value.  Print also its value from function
11587 entry point, but only if it is known.  If not in MI mode (@pxref{GDB/MI}) and
11588 if both values are known and identical, print the shortened
11589 @code{param=param@@entry=VALUE} notation.
11590 @smallexample
11591 #0  equal (val=val@@entry=5)
11592 #0  different (val=6, val@@entry=5)
11593 #0  lost (val=<optimized out>, val@@entry=5)
11594 #0  born (val=10)
11595 #0  invalid (val=<optimized out>)
11596 @end smallexample
11597 @end table
11599 For analysis messages on possible failures of frame argument values at function
11600 entry resolution see @ref{set debug entry-values}.
11602 @item show print entry-values
11603 Show the method being used for printing of frame argument values at function
11604 entry.
11606 @anchor{set print frame-info}
11607 @item set print frame-info @var{value}
11608 @kindex set print frame-info
11609 @cindex printing frame information
11610 @cindex frame information, printing
11611 This command allows to control the information printed when
11612 the debugger prints a frame.  See @ref{Frames}, @ref{Backtrace},
11613 for a general explanation about frames and frame information.
11614 Note that some other settings (such as @code{set print frame-arguments}
11615 and @code{set print address}) are also influencing if and how some frame
11616 information is displayed.  In particular, the frame program counter is never
11617 printed if @code{set print address} is off.
11619 The possible values for @code{set print frame-info} are:
11620 @table @code
11621 @item short-location
11622 Print the frame level, the program counter (if not at the
11623 beginning of the location source line), the function, the function
11624 arguments.
11625 @item location
11626 Same as @code{short-location} but also print the source file and source line
11627 number.
11628 @item location-and-address
11629 Same as @code{location} but print the program counter even if located at the
11630 beginning of the location source line.
11631 @item source-line
11632 Print the program counter (if not at the beginning of the location
11633 source line), the line number and the source line.
11634 @item source-and-location
11635 Print what @code{location} and @code{source-line} are printing.
11636 @item auto
11637 The information printed for a frame is decided automatically
11638 by the @value{GDBN} command that prints a frame.
11639 For example, @code{frame} prints the information printed by
11640 @code{source-and-location} while @code{stepi} will switch between
11641 @code{source-line} and @code{source-and-location} depending on the program
11642 counter.
11643 The default value is @code{auto}.
11644 @end table
11646 @anchor{set print repeats}
11647 @item set print repeats @var{number-of-repeats}
11648 @itemx set print repeats unlimited
11649 @cindex repeated array elements
11650 Set the threshold for suppressing display of repeated array
11651 elements.  When the number of consecutive identical elements of an
11652 array exceeds the threshold, @value{GDBN} prints the string
11653 @code{"<repeats @var{n} times>"}, where @var{n} is the number of
11654 identical repetitions, instead of displaying the identical elements
11655 themselves.  Setting the threshold to @code{unlimited} or zero will
11656 cause all elements to be individually printed.  The default threshold
11657 is 10.
11659 @item show print repeats
11660 Display the current threshold for printing repeated identical
11661 elements.
11663 @anchor{set print max-depth}
11664 @item set print max-depth @var{depth}
11665 @item set print max-depth unlimited
11666 @cindex printing nested structures
11667 Set the threshold after which nested structures are replaced with
11668 ellipsis, this can make visualising deeply nested structures easier.
11670 For example, given this C code
11672 @smallexample
11673 typedef struct s1 @{ int a; @} s1;
11674 typedef struct s2 @{ s1 b; @} s2;
11675 typedef struct s3 @{ s2 c; @} s3;
11676 typedef struct s4 @{ s3 d; @} s4;
11678 s4 var = @{ @{ @{ @{ 3 @} @} @} @};
11679 @end smallexample
11681 The following table shows how different values of @var{depth} will
11682 effect how @code{var} is printed by @value{GDBN}:
11684 @multitable @columnfractions .3 .7
11685 @headitem @var{depth} setting @tab Result of @samp{p var}
11686 @item unlimited
11687 @tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11688 @item @code{0}
11689 @tab @code{$1 = @{...@}}
11690 @item @code{1}
11691 @tab @code{$1 = @{d = @{...@}@}}
11692 @item @code{2}
11693 @tab @code{$1 = @{d = @{c = @{...@}@}@}}
11694 @item @code{3}
11695 @tab @code{$1 = @{d = @{c = @{b = @{...@}@}@}@}}
11696 @item @code{4}
11697 @tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11698 @end multitable
11700 To see the contents of structures that have been hidden the user can
11701 either increase the print max-depth, or they can print the elements of
11702 the structure that are visible, for example
11704 @smallexample
11705 (gdb) set print max-depth 2
11706 (gdb) p var
11707 $1 = @{d = @{c = @{...@}@}@}
11708 (gdb) p var.d
11709 $2 = @{c = @{b = @{...@}@}@}
11710 (gdb) p var.d.c
11711 $3 = @{b = @{a = 3@}@}
11712 @end smallexample
11714 The pattern used to replace nested structures varies based on
11715 language, for most languages @code{@{...@}} is used, but Fortran uses
11716 @code{(...)}.
11718 @item show print max-depth
11719 Display the current threshold after which nested structures are
11720 replaces with ellipsis.
11722 @anchor{set print memory-tag-violations}
11723 @cindex printing memory tag violation information
11724 @item set print memory-tag-violations
11725 @itemx set print memory-tag-violations on
11726 Cause @value{GDBN} to display additional information about memory tag violations
11727 when printing pointers and addresses.
11729 @item set print memory-tag-violations off
11730 Stop printing memory tag violation information.
11732 @item show print memory-tag-violations
11733 Show whether memory tag violation information is displayed when printing
11734 pointers and addresses.
11736 @anchor{set print null-stop}
11737 @item set print null-stop
11738 @cindex @sc{null} elements in arrays
11739 Cause @value{GDBN} to stop printing the characters of an array when the first
11740 @sc{null} is encountered.  This is useful when large arrays actually
11741 contain only short strings.
11742 The default is off.
11744 @item show print null-stop
11745 Show whether @value{GDBN} stops printing an array on the first
11746 @sc{null} character.
11748 @anchor{set print pretty}
11749 @item set print pretty on
11750 @cindex print structures in indented form
11751 @cindex indentation in structure display
11752 Cause @value{GDBN} to print structures in an indented format with one member
11753 per line, like this:
11755 @smallexample
11756 @group
11757 $1 = @{
11758   next = 0x0,
11759   flags = @{
11760     sweet = 1,
11761     sour = 1
11762   @},
11763   meat = 0x54 "Pork"
11765 @end group
11766 @end smallexample
11768 @item set print pretty off
11769 Cause @value{GDBN} to print structures in a compact format, like this:
11771 @smallexample
11772 @group
11773 $1 = @{next = 0x0, flags = @{sweet = 1, sour = 1@}, \
11774 meat = 0x54 "Pork"@}
11775 @end group
11776 @end smallexample
11778 @noindent
11779 This is the default format.
11781 @item show print pretty
11782 Show which format @value{GDBN} is using to print structures.
11784 @anchor{set print raw-values}
11785 @item set print raw-values on
11786 Print values in raw form, without applying the pretty
11787 printers for the value.
11789 @item set print raw-values off
11790 Print values in pretty-printed form, if there is a pretty-printer
11791 for the value (@pxref{Pretty Printing}),
11792 otherwise print the value in raw form.
11794 The default setting is ``off''.
11796 @item show print raw-values
11797 Show whether to print values in raw form.
11799 @item set print sevenbit-strings on
11800 @cindex eight-bit characters in strings
11801 @cindex octal escapes in strings
11802 Print using only seven-bit characters; if this option is set,
11803 @value{GDBN} displays any eight-bit characters (in strings or
11804 character values) using the notation @code{\}@var{nnn}.  This setting is
11805 best if you are working in English (@sc{ascii}) and you use the
11806 high-order bit of characters as a marker or ``meta'' bit.
11808 @item set print sevenbit-strings off
11809 Print full eight-bit characters.  This allows the use of more
11810 international character sets, and is the default.
11812 @item show print sevenbit-strings
11813 Show whether or not @value{GDBN} is printing only seven-bit characters.
11815 @anchor{set print union}
11816 @item set print union on
11817 @cindex unions in structures, printing
11818 Tell @value{GDBN} to print unions which are contained in structures
11819 and other unions.  This is the default setting.
11821 @item set print union off
11822 Tell @value{GDBN} not to print unions which are contained in
11823 structures and other unions.  @value{GDBN} will print @code{"@{...@}"}
11824 instead.
11826 @item show print union
11827 Ask @value{GDBN} whether or not it will print unions which are contained in
11828 structures and other unions.
11830 For example, given the declarations
11832 @smallexample
11833 typedef enum @{Tree, Bug@} Species;
11834 typedef enum @{Big_tree, Acorn, Seedling@} Tree_forms;
11835 typedef enum @{Caterpillar, Cocoon, Butterfly@}
11836               Bug_forms;
11838 struct thing @{
11839   Species it;
11840   union @{
11841     Tree_forms tree;
11842     Bug_forms bug;
11843   @} form;
11846 struct thing foo = @{Tree, @{Acorn@}@};
11847 @end smallexample
11849 @noindent
11850 with @code{set print union on} in effect @samp{p foo} would print
11852 @smallexample
11853 $1 = @{it = Tree, form = @{tree = Acorn, bug = Cocoon@}@}
11854 @end smallexample
11856 @noindent
11857 and with @code{set print union off} in effect it would print
11859 @smallexample
11860 $1 = @{it = Tree, form = @{...@}@}
11861 @end smallexample
11863 @noindent
11864 @code{set print union} affects programs written in C-like languages
11865 and in Pascal.
11866 @end table
11868 @need 1000
11869 @noindent
11870 These settings are of interest when debugging C@t{++} programs:
11872 @table @code
11873 @cindex demangling C@t{++} names
11874 @item set print demangle
11875 @itemx set print demangle on
11876 Print C@t{++} names in their source form rather than in the encoded
11877 (``mangled'') form passed to the assembler and linker for type-safe
11878 linkage.  The default is on.
11880 @item show print demangle
11881 Show whether C@t{++} names are printed in mangled or demangled form.
11883 @item set print asm-demangle
11884 @itemx set print asm-demangle on
11885 Print C@t{++} names in their source form rather than their mangled form, even
11886 in assembler code printouts such as instruction disassemblies.
11887 The default is off.
11889 @item show print asm-demangle
11890 Show whether C@t{++} names in assembly listings are printed in mangled
11891 or demangled form.
11893 @cindex C@t{++} symbol decoding style
11894 @cindex symbol decoding style, C@t{++}
11895 @kindex set demangle-style
11896 @item set demangle-style @var{style}
11897 Choose among several encoding schemes used by different compilers to represent
11898 C@t{++} names.  If you omit @var{style}, you will see a list of possible
11899 formats.  The default value is @var{auto}, which lets @value{GDBN} choose a
11900 decoding style by inspecting your program.
11902 @item show demangle-style
11903 Display the encoding style currently in use for decoding C@t{++} symbols.
11905 @anchor{set print object}
11906 @item set print object
11907 @itemx set print object on
11908 @cindex derived type of an object, printing
11909 @cindex display derived types
11910 When displaying a pointer to an object, identify the @emph{actual}
11911 (derived) type of the object rather than the @emph{declared} type, using
11912 the virtual function table.  Note that the virtual function table is
11913 required---this feature can only work for objects that have run-time
11914 type identification; a single virtual method in the object's declared
11915 type is sufficient.  Note that this setting is also taken into account when
11916 working with variable objects via MI (@pxref{GDB/MI}).
11918 @item set print object off
11919 Display only the declared type of objects, without reference to the
11920 virtual function table.  This is the default setting.
11922 @item show print object
11923 Show whether actual, or declared, object types are displayed.
11925 @anchor{set print static-members}
11926 @item set print static-members
11927 @itemx set print static-members on
11928 @cindex static members of C@t{++} objects
11929 Print static members when displaying a C@t{++} object.  The default is on.
11931 @item set print static-members off
11932 Do not print static members when displaying a C@t{++} object.
11934 @item show print static-members
11935 Show whether C@t{++} static members are printed or not.
11937 @item set print pascal_static-members
11938 @itemx set print pascal_static-members on
11939 @cindex static members of Pascal objects
11940 @cindex Pascal objects, static members display
11941 Print static members when displaying a Pascal object.  The default is on.
11943 @item set print pascal_static-members off
11944 Do not print static members when displaying a Pascal object.
11946 @item show print pascal_static-members
11947 Show whether Pascal static members are printed or not.
11949 @c These don't work with HP ANSI C++ yet.
11950 @anchor{set print vtbl}
11951 @item set print vtbl
11952 @itemx set print vtbl on
11953 @cindex pretty print C@t{++} virtual function tables
11954 @cindex virtual functions (C@t{++}) display
11955 @cindex VTBL display
11956 Pretty print C@t{++} virtual function tables.  The default is off.
11957 (The @code{vtbl} commands do not work on programs compiled with the HP
11958 ANSI C@t{++} compiler (@code{aCC}).)
11960 @item set print vtbl off
11961 Do not pretty print C@t{++} virtual function tables.
11963 @item show print vtbl
11964 Show whether C@t{++} virtual function tables are pretty printed, or not.
11965 @end table
11967 @node Pretty Printing
11968 @section Pretty Printing
11970 @value{GDBN} provides a mechanism to allow pretty-printing of values using
11971 Python code.  It greatly simplifies the display of complex objects.  This
11972 mechanism works for both MI and the CLI.
11974 @menu
11975 * Pretty-Printer Introduction::  Introduction to pretty-printers
11976 * Pretty-Printer Example::       An example pretty-printer
11977 * Pretty-Printer Commands::      Pretty-printer commands
11978 @end menu
11980 @node Pretty-Printer Introduction
11981 @subsection Pretty-Printer Introduction
11983 When @value{GDBN} prints a value, it first sees if there is a pretty-printer
11984 registered for the value.  If there is then @value{GDBN} invokes the
11985 pretty-printer to print the value.  Otherwise the value is printed normally.
11987 Pretty-printers are normally named.  This makes them easy to manage.
11988 The @samp{info pretty-printer} command will list all the installed
11989 pretty-printers with their names.
11990 If a pretty-printer can handle multiple data types, then its
11991 @dfn{subprinters} are the printers for the individual data types.
11992 Each such subprinter has its own name.
11993 The format of the name is @var{printer-name};@var{subprinter-name}.
11995 Pretty-printers are installed by @dfn{registering} them with @value{GDBN}.
11996 Typically they are automatically loaded and registered when the corresponding
11997 debug information is loaded, thus making them available without having to
11998 do anything special.
12000 There are three places where a pretty-printer can be registered.
12002 @itemize @bullet
12003 @item
12004 Pretty-printers registered globally are available when debugging
12005 all inferiors.
12007 @item
12008 Pretty-printers registered with a program space are available only
12009 when debugging that program.
12010 @xref{Progspaces In Python}, for more details on program spaces in Python.
12012 @item
12013 Pretty-printers registered with an objfile are loaded and unloaded
12014 with the corresponding objfile (e.g., shared library).
12015 @xref{Objfiles In Python}, for more details on objfiles in Python.
12016 @end itemize
12018 @xref{Selecting Pretty-Printers}, for further information on how 
12019 pretty-printers are selected,
12021 @xref{Writing a Pretty-Printer}, for implementing pretty printers
12022 for new types.
12024 @node Pretty-Printer Example
12025 @subsection Pretty-Printer Example
12027 Here is how a C@t{++} @code{std::string} looks without a pretty-printer:
12029 @smallexample
12030 (@value{GDBP}) print s
12031 $1 = @{
12032   static npos = 4294967295, 
12033   _M_dataplus = @{
12034     <std::allocator<char>> = @{
12035       <__gnu_cxx::new_allocator<char>> = @{
12036         <No data fields>@}, <No data fields>
12037       @},
12038     members of std::basic_string<char, std::char_traits<char>,
12039       std::allocator<char> >::_Alloc_hider:
12040     _M_p = 0x804a014 "abcd"
12041   @}
12043 @end smallexample
12045 With a pretty-printer for @code{std::string} only the contents are printed:
12047 @smallexample
12048 (@value{GDBP}) print s
12049 $2 = "abcd"
12050 @end smallexample
12052 @node Pretty-Printer Commands
12053 @subsection Pretty-Printer Commands
12054 @cindex pretty-printer commands
12056 @table @code
12057 @kindex info pretty-printer
12058 @item info pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12059 Print the list of installed pretty-printers.
12060 This includes disabled pretty-printers, which are marked as such.
12062 @var{object-regexp} is a regular expression matching the objects
12063 whose pretty-printers to list.
12064 Objects can be @code{global}, the program space's file
12065 (@pxref{Progspaces In Python}),
12066 and the object files within that program space (@pxref{Objfiles In Python}).
12067 @xref{Selecting Pretty-Printers}, for details on how @value{GDBN}
12068 looks up a printer from these three objects.
12070 @var{name-regexp} is a regular expression matching the name of the printers
12071 to list.
12073 @kindex disable pretty-printer
12074 @item disable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12075 Disable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12076 A disabled pretty-printer is not forgotten, it may be enabled again later.
12078 @kindex enable pretty-printer
12079 @item enable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12080 Enable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12081 @end table
12083 Example:
12085 Suppose we have three pretty-printers installed: one from library1.so
12086 named @code{foo} that prints objects of type @code{foo}, and
12087 another from library2.so named @code{bar} that prints two types of objects,
12088 @code{bar1} and @code{bar2}.
12090 @smallexample
12091 @group
12092 (@value{GDBP}) info pretty-printer
12093 library1.so:
12094   foo
12095 library2.so:
12096   bar
12097     bar1
12098     bar2
12099 @end group
12100 @group
12101 (@value{GDBP}) info pretty-printer library2
12102 library2.so:
12103   bar
12104     bar1
12105     bar2
12106 @end group
12107 @group
12108 (@value{GDBP}) disable pretty-printer library1
12109 1 printer disabled
12110 2 of 3 printers enabled
12111 (@value{GDBP}) info pretty-printer
12112 library1.so:
12113   foo [disabled]
12114 library2.so:
12115   bar
12116     bar1
12117     bar2
12118 @end group
12119 @group
12120 (@value{GDBP}) disable pretty-printer library2 bar;bar1
12121 1 printer disabled
12122 1 of 3 printers enabled
12123 (@value{GDBP}) info pretty-printer library2
12124 library2.so:
12125   bar
12126     bar1 [disabled]
12127     bar2
12128 @end group
12129 @group
12130 (@value{GDBP}) disable pretty-printer library2 bar
12131 1 printer disabled
12132 0 of 3 printers enabled
12133 (@value{GDBP}) info pretty-printer
12134 library1.so:
12135   foo [disabled]
12136 library2.so:
12137   bar [disabled]
12138     bar1 [disabled]
12139     bar2
12140 @end group
12141 @end smallexample
12143 Note that for @code{bar} the entire printer can be disabled,
12144 as can each individual subprinter.
12146 Printing values and frame arguments is done by default using
12147 the enabled pretty printers.
12149 The print option @code{-raw-values} and @value{GDBN} setting
12150 @code{set print raw-values} (@pxref{set print raw-values}) can be
12151 used to print values without applying the enabled pretty printers.
12153 Similarly, the backtrace option @code{-raw-frame-arguments} and
12154 @value{GDBN} setting @code{set print raw-frame-arguments}
12155 (@pxref{set print raw-frame-arguments}) can be used to ignore the
12156 enabled pretty printers when printing frame argument values.
12158 @node Value History
12159 @section Value History
12161 @cindex value history
12162 @cindex history of values printed by @value{GDBN}
12163 Values printed by the @code{print} command are saved in the @value{GDBN}
12164 @dfn{value history}.  This allows you to refer to them in other expressions.
12165 Values are kept until the symbol table is re-read or discarded
12166 (for example with the @code{file} or @code{symbol-file} commands).
12167 When the symbol table changes, the value history is discarded,
12168 since the values may contain pointers back to the types defined in the
12169 symbol table.
12171 @cindex @code{$}
12172 @cindex @code{$$}
12173 @cindex history number
12174 The values printed are given @dfn{history numbers} by which you can
12175 refer to them.  These are successive integers starting with one.
12176 @code{print} shows you the history number assigned to a value by
12177 printing @samp{$@var{num} = } before the value; here @var{num} is the
12178 history number.
12180 To refer to any previous value, use @samp{$} followed by the value's
12181 history number.  The way @code{print} labels its output is designed to
12182 remind you of this.  Just @code{$} refers to the most recent value in
12183 the history, and @code{$$} refers to the value before that.
12184 @code{$$@var{n}} refers to the @var{n}th value from the end; @code{$$2}
12185 is the value just prior to @code{$$}, @code{$$1} is equivalent to
12186 @code{$$}, and @code{$$0} is equivalent to @code{$}.
12188 For example, suppose you have just printed a pointer to a structure and
12189 want to see the contents of the structure.  It suffices to type
12191 @smallexample
12192 p *$
12193 @end smallexample
12195 If you have a chain of structures where the component @code{next} points
12196 to the next one, you can print the contents of the next one with this:
12198 @smallexample
12199 p *$.next
12200 @end smallexample
12202 @noindent
12203 You can print successive links in the chain by repeating this
12204 command---which you can do by just typing @key{RET}.
12206 Note that the history records values, not expressions.  If the value of
12207 @code{x} is 4 and you type these commands:
12209 @smallexample
12210 print x
12211 set x=5
12212 @end smallexample
12214 @noindent
12215 then the value recorded in the value history by the @code{print} command
12216 remains 4 even though the value of @code{x} has changed.
12218 @table @code
12219 @kindex show values
12220 @item show values
12221 Print the last ten values in the value history, with their item numbers.
12222 This is like @samp{p@ $$9} repeated ten times, except that @code{show
12223 values} does not change the history.
12225 @item show values @var{n}
12226 Print ten history values centered on history item number @var{n}.
12228 @item show values +
12229 Print ten history values just after the values last printed.  If no more
12230 values are available, @code{show values +} produces no display.
12231 @end table
12233 Pressing @key{RET} to repeat @code{show values @var{n}} has exactly the
12234 same effect as @samp{show values +}.
12236 @node Convenience Vars
12237 @section Convenience Variables
12239 @cindex convenience variables
12240 @cindex user-defined variables
12241 @value{GDBN} provides @dfn{convenience variables} that you can use within
12242 @value{GDBN} to hold on to a value and refer to it later.  These variables
12243 exist entirely within @value{GDBN}; they are not part of your program, and
12244 setting a convenience variable has no direct effect on further execution
12245 of your program.  That is why you can use them freely.
12247 Convenience variables are prefixed with @samp{$}.  Any name preceded by
12248 @samp{$} can be used for a convenience variable, unless it is one of
12249 the predefined machine-specific register names (@pxref{Registers, ,Registers}).
12250 (Value history references, in contrast, are @emph{numbers} preceded
12251 by @samp{$}.  @xref{Value History, ,Value History}.)
12253 You can save a value in a convenience variable with an assignment
12254 expression, just as you would set a variable in your program.
12255 For example:
12257 @smallexample
12258 set $foo = *object_ptr
12259 @end smallexample
12261 @noindent
12262 would save in @code{$foo} the value contained in the object pointed to by
12263 @code{object_ptr}.
12265 Using a convenience variable for the first time creates it, but its
12266 value is @code{void} until you assign a new value.  You can alter the
12267 value with another assignment at any time.
12269 Convenience variables have no fixed types.  You can assign a convenience
12270 variable any type of value, including structures and arrays, even if
12271 that variable already has a value of a different type.  The convenience
12272 variable, when used as an expression, has the type of its current value.
12274 @table @code
12275 @kindex show convenience
12276 @cindex show all user variables and functions
12277 @item show convenience
12278 Print a list of convenience variables used so far, and their values,
12279 as well as a list of the convenience functions.
12280 Abbreviated @code{show conv}.
12282 @kindex init-if-undefined
12283 @cindex convenience variables, initializing
12284 @item init-if-undefined $@var{variable} = @var{expression}
12285 Set a convenience variable if it has not already been set.  This is useful
12286 for user-defined commands that keep some state.  It is similar, in concept,
12287 to using local static variables with initializers in C (except that
12288 convenience variables are global).  It can also be used to allow users to
12289 override default values used in a command script.
12291 If the variable is already defined then the expression is not evaluated so
12292 any side-effects do not occur.
12293 @end table
12295 One of the ways to use a convenience variable is as a counter to be
12296 incremented or a pointer to be advanced.  For example, to print
12297 a field from successive elements of an array of structures:
12299 @smallexample
12300 set $i = 0
12301 print bar[$i++]->contents
12302 @end smallexample
12304 @noindent
12305 Repeat that command by typing @key{RET}.
12307 Some convenience variables are created automatically by @value{GDBN} and given
12308 values likely to be useful.
12310 @table @code
12311 @vindex $_@r{, convenience variable}
12312 @item $_
12313 The variable @code{$_} is automatically set by the @code{x} command to
12314 the last address examined (@pxref{Memory, ,Examining Memory}).  Other
12315 commands which provide a default address for @code{x} to examine also
12316 set @code{$_} to that address; these commands include @code{info line}
12317 and @code{info breakpoint}.  The type of @code{$_} is @code{void *}
12318 except when set by the @code{x} command, in which case it is a pointer
12319 to the type of @code{$__}.
12321 @vindex $__@r{, convenience variable}
12322 @item $__
12323 The variable @code{$__} is automatically set by the @code{x} command
12324 to the value found in the last address examined.  Its type is chosen
12325 to match the format in which the data was printed.
12327 @item $_exitcode
12328 @vindex $_exitcode@r{, convenience variable}
12329 When the program being debugged terminates normally, @value{GDBN}
12330 automatically sets this variable to the exit code of the program, and
12331 resets @code{$_exitsignal} to @code{void}.
12333 @item $_exitsignal
12334 @vindex $_exitsignal@r{, convenience variable}
12335 When the program being debugged dies due to an uncaught signal,
12336 @value{GDBN} automatically sets this variable to that signal's number,
12337 and resets @code{$_exitcode} to @code{void}.
12339 To distinguish between whether the program being debugged has exited
12340 (i.e., @code{$_exitcode} is not @code{void}) or signalled (i.e.,
12341 @code{$_exitsignal} is not @code{void}), the convenience function
12342 @code{$_isvoid} can be used (@pxref{Convenience Funs,, Convenience
12343 Functions}).  For example, considering the following source code:
12345 @smallexample
12346 #include <signal.h>
12349 main (int argc, char *argv[])
12351   raise (SIGALRM);
12352   return 0;
12354 @end smallexample
12356 A valid way of telling whether the program being debugged has exited
12357 or signalled would be:
12359 @smallexample
12360 (@value{GDBP}) define has_exited_or_signalled
12361 Type commands for definition of ``has_exited_or_signalled''.
12362 End with a line saying just ``end''.
12363 >if $_isvoid ($_exitsignal)
12364  >echo The program has exited\n
12365  >else
12366  >echo The program has signalled\n
12367  >end
12368 >end
12369 (@value{GDBP}) run
12370 Starting program:
12372 Program terminated with signal SIGALRM, Alarm clock.
12373 The program no longer exists.
12374 (@value{GDBP}) has_exited_or_signalled
12375 The program has signalled
12376 @end smallexample
12378 As can be seen, @value{GDBN} correctly informs that the program being
12379 debugged has signalled, since it calls @code{raise} and raises a
12380 @code{SIGALRM} signal.  If the program being debugged had not called
12381 @code{raise}, then @value{GDBN} would report a normal exit:
12383 @smallexample
12384 (@value{GDBP}) has_exited_or_signalled
12385 The program has exited
12386 @end smallexample
12388 @item $_exception
12389 The variable @code{$_exception} is set to the exception object being
12390 thrown at an exception-related catchpoint.  @xref{Set Catchpoints}.
12392 @item $_ada_exception
12393 The variable @code{$_ada_exception} is set to the address of the
12394 exception being caught or thrown at an Ada exception-related
12395 catchpoint.  @xref{Set Catchpoints}.
12397 @item $_probe_argc
12398 @itemx $_probe_arg0@dots{}$_probe_arg11
12399 Arguments to a static probe.  @xref{Static Probe Points}.
12401 @item $_sdata
12402 @vindex $_sdata@r{, inspect, convenience variable}
12403 The variable @code{$_sdata} contains extra collected static tracepoint
12404 data.  @xref{Tracepoint Actions,,Tracepoint Action Lists}.  Note that
12405 @code{$_sdata} could be empty, if not inspecting a trace buffer, or
12406 if extra static tracepoint data has not been collected.
12408 @item $_siginfo
12409 @vindex $_siginfo@r{, convenience variable}
12410 The variable @code{$_siginfo} contains extra signal information
12411 (@pxref{extra signal information}).  Note that @code{$_siginfo}
12412 could be empty, if the application has not yet received any signals.
12413 For example, it will be empty before you execute the @code{run} command.
12415 @item $_tlb
12416 @vindex $_tlb@r{, convenience variable}
12417 The variable @code{$_tlb} is automatically set when debugging
12418 applications running on MS-Windows in native mode or connected to
12419 gdbserver that supports the @code{qGetTIBAddr} request.
12420 @xref{General Query Packets}.
12421 This variable contains the address of the thread information block.
12423 @item $_inferior
12424 The number of the current inferior.  @xref{Inferiors Connections and
12425 Programs, ,Debugging Multiple Inferiors Connections and Programs}.
12427 @item $_thread
12428 The thread number of the current thread.  @xref{thread numbers}.
12430 @item $_gthread
12431 The global number of the current thread.  @xref{global thread numbers}.
12433 @item $_gdb_major
12434 @itemx $_gdb_minor
12435 @vindex $_gdb_major@r{, convenience variable}
12436 @vindex $_gdb_minor@r{, convenience variable}
12437 The major and minor version numbers of the running @value{GDBN}.
12438 Development snapshots and pretest versions have their minor version
12439 incremented by one; thus, @value{GDBN} pretest 9.11.90 will produce
12440 the value 12 for @code{$_gdb_minor}.  These variables allow you to
12441 write scripts that work with different versions of @value{GDBN}
12442 without errors caused by features unavailable in some of those
12443 versions.
12445 @item $_shell_exitcode
12446 @itemx $_shell_exitsignal
12447 @vindex $_shell_exitcode@r{, convenience variable}
12448 @vindex $_shell_exitsignal@r{, convenience variable}
12449 @cindex shell command, exit code
12450 @cindex shell command, exit signal
12451 @cindex exit status of shell commands
12452 @value{GDBN} commands such as @code{shell} and @code{|} are launching
12453 shell commands.  When a launched command terminates, @value{GDBN}
12454 automatically maintains the variables @code{$_shell_exitcode}
12455 and @code{$_shell_exitsignal} according to the exit status of the last
12456 launched command.  These variables are set and used similarly to
12457 the variables @code{$_exitcode} and @code{$_exitsignal}.
12459 @end table
12461 @node Convenience Funs
12462 @section Convenience Functions
12464 @cindex convenience functions
12465 @value{GDBN} also supplies some @dfn{convenience functions}.  These
12466 have a syntax similar to convenience variables.  A convenience
12467 function can be used in an expression just like an ordinary function;
12468 however, a convenience function is implemented internally to
12469 @value{GDBN}.
12471 These functions do not require @value{GDBN} to be configured with
12472 @code{Python} support, which means that they are always available.
12474 @table @code
12476 @item $_isvoid (@var{expr})
12477 @findex $_isvoid@r{, convenience function}
12478 Return one if the expression @var{expr} is @code{void}.  Otherwise it
12479 returns zero.
12481 A @code{void} expression is an expression where the type of the result
12482 is @code{void}.  For example, you can examine a convenience variable
12483 (see @ref{Convenience Vars,, Convenience Variables}) to check whether
12484 it is @code{void}:
12486 @smallexample
12487 (@value{GDBP}) print $_exitcode
12488 $1 = void
12489 (@value{GDBP}) print $_isvoid ($_exitcode)
12490 $2 = 1
12491 (@value{GDBP}) run
12492 Starting program: ./a.out
12493 [Inferior 1 (process 29572) exited normally]
12494 (@value{GDBP}) print $_exitcode
12495 $3 = 0
12496 (@value{GDBP}) print $_isvoid ($_exitcode)
12497 $4 = 0
12498 @end smallexample
12500 In the example above, we used @code{$_isvoid} to check whether
12501 @code{$_exitcode} is @code{void} before and after the execution of the
12502 program being debugged.  Before the execution there is no exit code to
12503 be examined, therefore @code{$_exitcode} is @code{void}.  After the
12504 execution the program being debugged returned zero, therefore
12505 @code{$_exitcode} is zero, which means that it is not @code{void}
12506 anymore.
12508 The @code{void} expression can also be a call of a function from the
12509 program being debugged.  For example, given the following function:
12511 @smallexample
12512 void
12513 foo (void)
12516 @end smallexample
12518 The result of calling it inside @value{GDBN} is @code{void}:
12520 @smallexample
12521 (@value{GDBP}) print foo ()
12522 $1 = void
12523 (@value{GDBP}) print $_isvoid (foo ())
12524 $2 = 1
12525 (@value{GDBP}) set $v = foo ()
12526 (@value{GDBP}) print $v
12527 $3 = void
12528 (@value{GDBP}) print $_isvoid ($v)
12529 $4 = 1
12530 @end smallexample
12532 @item $_gdb_setting_str (@var{setting})
12533 @findex $_gdb_setting_str@r{, convenience function}
12534 Return the value of the @value{GDBN} @var{setting} as a string.
12535 @var{setting} is any setting that can be used in a @code{set} or
12536 @code{show} command (@pxref{Controlling GDB}).
12538 @smallexample
12539 (@value{GDBP}) show print frame-arguments
12540 Printing of non-scalar frame arguments is "scalars".
12541 (@value{GDBP}) p $_gdb_setting_str("print frame-arguments")
12542 $1 = "scalars"
12543 (@value{GDBP}) p $_gdb_setting_str("height")
12544 $2 = "30"
12545 (@value{GDBP})
12546 @end smallexample
12548 @item $_gdb_setting (@var{setting})
12549 @findex $_gdb_setting@r{, convenience function}
12550 Return the value of the @value{GDBN} @var{setting}.
12551 The type of the returned value depends on the setting.
12553 The value type for boolean and auto boolean settings is @code{int}.
12554 The boolean values @code{off} and @code{on} are converted to
12555 the integer values @code{0} and @code{1}.  The value @code{auto} is
12556 converted to the value @code{-1}.
12558 The value type for integer settings is either @code{unsigned int}
12559 or @code{int}, depending on the setting.
12561 Some integer settings accept an @code{unlimited} value.
12562 Depending on the setting, the @code{set} command also accepts
12563 the value @code{0} or the value @code{@minus{}1} as a synonym for
12564 @code{unlimited}.
12565 For example, @code{set height unlimited} is equivalent to
12566 @code{set height 0}.
12568 Some other settings that accept the @code{unlimited} value
12569 use the value @code{0} to literally mean zero.
12570 For example, @code{set history size 0} indicates to not
12571 record any @value{GDBN} commands in the command history.
12572 For such settings, @code{@minus{}1} is the synonym
12573 for @code{unlimited}.
12575 See the documentation of the corresponding @code{set} command for
12576 the numerical value equivalent to @code{unlimited}.
12578 The @code{$_gdb_setting} function converts the unlimited value
12579 to a @code{0} or a @code{@minus{}1} value according to what the
12580 @code{set} command uses.
12582 @smallexample
12583 @group
12584 (@value{GDBP}) p $_gdb_setting_str("height")
12585 $1 = "30"
12586 (@value{GDBP}) p $_gdb_setting("height")
12587 $2 = 30
12588 (@value{GDBP}) set height unlimited
12589 (@value{GDBP}) p $_gdb_setting_str("height")
12590 $3 = "unlimited"
12591 (@value{GDBP}) p $_gdb_setting("height")
12592 $4 = 0
12593 @end group
12594 @group
12595 (@value{GDBP}) p $_gdb_setting_str("history size")
12596 $5 = "unlimited"
12597 (@value{GDBP}) p $_gdb_setting("history size")
12598 $6 = -1
12599 (@value{GDBP}) p $_gdb_setting_str("disassemble-next-line")
12600 $7 = "auto"
12601 (@value{GDBP}) p $_gdb_setting("disassemble-next-line")
12602 $8 = -1
12603 (@value{GDBP})
12604 @end group
12605 @end smallexample
12607 Other setting types (enum, filename, optional filename, string, string noescape)
12608 are returned as string values.
12611 @item $_gdb_maint_setting_str (@var{setting})
12612 @findex $_gdb_maint_setting_str@r{, convenience function}
12613 Like the @code{$_gdb_setting_str} function, but works with
12614 @code{maintenance set} variables.
12616 @item $_gdb_maint_setting (@var{setting})
12617 @findex $_gdb_maint_setting@r{, convenience function}
12618 Like the @code{$_gdb_setting} function, but works with
12619 @code{maintenance set} variables.
12621 @end table
12623 The following functions require @value{GDBN} to be configured with
12624 @code{Python} support.
12626 @table @code
12628 @item $_memeq(@var{buf1}, @var{buf2}, @var{length})
12629 @findex $_memeq@r{, convenience function}
12630 Returns one if the @var{length} bytes at the addresses given by
12631 @var{buf1} and @var{buf2} are equal.
12632 Otherwise it returns zero.
12634 @item $_regex(@var{str}, @var{regex})
12635 @findex $_regex@r{, convenience function}
12636 Returns one if the string @var{str} matches the regular expression
12637 @var{regex}.  Otherwise it returns zero.
12638 The syntax of the regular expression is that specified by @code{Python}'s
12639 regular expression support.
12641 @item $_streq(@var{str1}, @var{str2})
12642 @findex $_streq@r{, convenience function}
12643 Returns one if the strings @var{str1} and @var{str2} are equal.
12644 Otherwise it returns zero.
12646 @item $_strlen(@var{str})
12647 @findex $_strlen@r{, convenience function}
12648 Returns the length of string @var{str}.
12650 @item $_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12651 @findex $_caller_is@r{, convenience function}
12652 Returns one if the calling function's name is equal to @var{name}.
12653 Otherwise it returns zero.
12655 If the optional argument @var{number_of_frames} is provided,
12656 it is the number of frames up in the stack to look.
12657 The default is 1.
12659 Example:
12661 @smallexample
12662 (gdb) backtrace
12663 #0  bottom_func ()
12664     at testsuite/gdb.python/py-caller-is.c:21
12665 #1  0x00000000004005a0 in middle_func ()
12666     at testsuite/gdb.python/py-caller-is.c:27
12667 #2  0x00000000004005ab in top_func ()
12668     at testsuite/gdb.python/py-caller-is.c:33
12669 #3  0x00000000004005b6 in main ()
12670     at testsuite/gdb.python/py-caller-is.c:39
12671 (gdb) print $_caller_is ("middle_func")
12672 $1 = 1
12673 (gdb) print $_caller_is ("top_func", 2)
12674 $1 = 1
12675 @end smallexample
12677 @item $_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12678 @findex $_caller_matches@r{, convenience function}
12679 Returns one if the calling function's name matches the regular expression
12680 @var{regexp}.  Otherwise it returns zero.
12682 If the optional argument @var{number_of_frames} is provided,
12683 it is the number of frames up in the stack to look.
12684 The default is 1.
12686 @item $_any_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12687 @findex $_any_caller_is@r{, convenience function}
12688 Returns one if any calling function's name is equal to @var{name}.
12689 Otherwise it returns zero.
12691 If the optional argument @var{number_of_frames} is provided,
12692 it is the number of frames up in the stack to look.
12693 The default is 1.
12695 This function differs from @code{$_caller_is} in that this function
12696 checks all stack frames from the immediate caller to the frame specified
12697 by @var{number_of_frames}, whereas @code{$_caller_is} only checks the
12698 frame specified by @var{number_of_frames}.
12700 @item $_any_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12701 @findex $_any_caller_matches@r{, convenience function}
12702 Returns one if any calling function's name matches the regular expression
12703 @var{regexp}.  Otherwise it returns zero.
12705 If the optional argument @var{number_of_frames} is provided,
12706 it is the number of frames up in the stack to look.
12707 The default is 1.
12709 This function differs from @code{$_caller_matches} in that this function
12710 checks all stack frames from the immediate caller to the frame specified
12711 by @var{number_of_frames}, whereas @code{$_caller_matches} only checks the
12712 frame specified by @var{number_of_frames}.
12714 @item $_as_string(@var{value})
12715 @findex $_as_string@r{, convenience function}
12716 Return the string representation of @var{value}.
12718 This function is useful to obtain the textual label (enumerator) of an
12719 enumeration value.  For example, assuming the variable @var{node} is of
12720 an enumerated type:
12722 @smallexample
12723 (gdb) printf "Visiting node of type %s\n", $_as_string(node)
12724 Visiting node of type NODE_INTEGER
12725 @end smallexample
12727 @item $_cimag(@var{value})
12728 @itemx $_creal(@var{value})
12729 @findex $_cimag@r{, convenience function}
12730 @findex $_creal@r{, convenience function}
12731 Return the imaginary (@code{$_cimag}) or real (@code{$_creal}) part of
12732 the complex number @var{value}.
12734 The type of the imaginary or real part depends on the type of the
12735 complex number, e.g., using @code{$_cimag} on a @code{float complex}
12736 will return an imaginary part of type @code{float}.
12738 @end table
12740 @value{GDBN} provides the ability to list and get help on
12741 convenience functions.
12743 @table @code
12744 @item help function
12745 @kindex help function
12746 @cindex show all convenience functions
12747 Print a list of all convenience functions.
12748 @end table
12750 @node Registers
12751 @section Registers
12753 @cindex registers
12754 You can refer to machine register contents, in expressions, as variables
12755 with names starting with @samp{$}.  The names of registers are different
12756 for each machine; use @code{info registers} to see the names used on
12757 your machine.
12759 @table @code
12760 @kindex info registers
12761 @item info registers
12762 Print the names and values of all registers except floating-point
12763 and vector registers (in the selected stack frame).
12765 @kindex info all-registers
12766 @cindex floating point registers
12767 @item info all-registers
12768 Print the names and values of all registers, including floating-point
12769 and vector registers (in the selected stack frame).
12771 @anchor{info_registers_reggroup}
12772 @item info registers @var{reggroup} @dots{}
12773 Print the name and value of the registers in each of the specified
12774 @var{reggroup}s.  The @var{reggroup} can be any of those returned by
12775 @code{maint print reggroups} (@pxref{Maintenance Commands}).
12777 @item info registers @var{regname} @dots{}
12778 Print the @dfn{relativized} value of each specified register @var{regname}.
12779 As discussed in detail below, register values are normally relative to
12780 the selected stack frame.  The @var{regname} may be any register name valid on
12781 the machine you are using, with or without the initial @samp{$}.
12782 @end table
12784 @anchor{standard registers}
12785 @cindex stack pointer register
12786 @cindex program counter register
12787 @cindex process status register
12788 @cindex frame pointer register
12789 @cindex standard registers
12790 @value{GDBN} has four ``standard'' register names that are available (in
12791 expressions) on most machines---whenever they do not conflict with an
12792 architecture's canonical mnemonics for registers.  The register names
12793 @code{$pc} and @code{$sp} are used for the program counter register and
12794 the stack pointer.  @code{$fp} is used for a register that contains a
12795 pointer to the current stack frame, and @code{$ps} is used for a
12796 register that contains the processor status.  For example,
12797 you could print the program counter in hex with
12799 @smallexample
12800 p/x $pc
12801 @end smallexample
12803 @noindent
12804 or print the instruction to be executed next with
12806 @smallexample
12807 x/i $pc
12808 @end smallexample
12810 @noindent
12811 or add four to the stack pointer@footnote{This is a way of removing
12812 one word from the stack, on machines where stacks grow downward in
12813 memory (most machines, nowadays).  This assumes that the innermost
12814 stack frame is selected; setting @code{$sp} is not allowed when other
12815 stack frames are selected.  To pop entire frames off the stack,
12816 regardless of machine architecture, use @code{return};
12817 see @ref{Returning, ,Returning from a Function}.} with
12819 @smallexample
12820 set $sp += 4
12821 @end smallexample
12823 Whenever possible, these four standard register names are available on
12824 your machine even though the machine has different canonical mnemonics,
12825 so long as there is no conflict.  The @code{info registers} command
12826 shows the canonical names.  For example, on the SPARC, @code{info
12827 registers} displays the processor status register as @code{$psr} but you
12828 can also refer to it as @code{$ps}; and on x86-based machines @code{$ps}
12829 is an alias for the @sc{eflags} register.
12831 @value{GDBN} always considers the contents of an ordinary register as an
12832 integer when the register is examined in this way.  Some machines have
12833 special registers which can hold nothing but floating point; these
12834 registers are considered to have floating point values.  There is no way
12835 to refer to the contents of an ordinary register as floating point value
12836 (although you can @emph{print} it as a floating point value with
12837 @samp{print/f $@var{regname}}).
12839 Some registers have distinct ``raw'' and ``virtual'' data formats.  This
12840 means that the data format in which the register contents are saved by
12841 the operating system is not the same one that your program normally
12842 sees.  For example, the registers of the 68881 floating point
12843 coprocessor are always saved in ``extended'' (raw) format, but all C
12844 programs expect to work with ``double'' (virtual) format.  In such
12845 cases, @value{GDBN} normally works with the virtual format only (the format
12846 that makes sense for your program), but the @code{info registers} command
12847 prints the data in both formats.
12849 @cindex SSE registers (x86)
12850 @cindex MMX registers (x86)
12851 Some machines have special registers whose contents can be interpreted
12852 in several different ways.  For example, modern x86-based machines
12853 have SSE and MMX registers that can hold several values packed
12854 together in several different formats.  @value{GDBN} refers to such
12855 registers in @code{struct} notation:
12857 @smallexample
12858 (@value{GDBP}) print $xmm1
12859 $1 = @{
12860   v4_float = @{0, 3.43859137e-038, 1.54142831e-044, 1.821688e-044@},
12861   v2_double = @{9.92129282474342e-303, 2.7585945287983262e-313@},
12862   v16_int8 = "\000\000\000\000\3706;\001\v\000\000\000\r\000\000",
12863   v8_int16 = @{0, 0, 14072, 315, 11, 0, 13, 0@},
12864   v4_int32 = @{0, 20657912, 11, 13@},
12865   v2_int64 = @{88725056443645952, 55834574859@},
12866   uint128 = 0x0000000d0000000b013b36f800000000
12868 @end smallexample
12870 @noindent
12871 To set values of such registers, you need to tell @value{GDBN} which
12872 view of the register you wish to change, as if you were assigning
12873 value to a @code{struct} member:
12875 @smallexample
12876  (@value{GDBP}) set $xmm1.uint128 = 0x000000000000000000000000FFFFFFFF
12877 @end smallexample
12879 Normally, register values are relative to the selected stack frame
12880 (@pxref{Selection, ,Selecting a Frame}).  This means that you get the
12881 value that the register would contain if all stack frames farther in
12882 were exited and their saved registers restored.  In order to see the
12883 true contents of hardware registers, you must select the innermost
12884 frame (with @samp{frame 0}).
12886 @cindex caller-saved registers
12887 @cindex call-clobbered registers
12888 @cindex volatile registers
12889 @cindex <not saved> values
12890 Usually ABIs reserve some registers as not needed to be saved by the
12891 callee (a.k.a.: ``caller-saved'', ``call-clobbered'' or ``volatile''
12892 registers).  It may therefore not be possible for @value{GDBN} to know
12893 the value a register had before the call (in other words, in the outer
12894 frame), if the register value has since been changed by the callee.
12895 @value{GDBN} tries to deduce where the inner frame saved
12896 (``callee-saved'') registers, from the debug info, unwind info, or the
12897 machine code generated by your compiler.  If some register is not
12898 saved, and @value{GDBN} knows the register is ``caller-saved'' (via
12899 its own knowledge of the ABI, or because the debug/unwind info
12900 explicitly says the register's value is undefined), @value{GDBN}
12901 displays @w{@samp{<not saved>}} as the register's value.  With targets
12902 that @value{GDBN} has no knowledge of the register saving convention,
12903 if a register was not saved by the callee, then its value and location
12904 in the outer frame are assumed to be the same of the inner frame.
12905 This is usually harmless, because if the register is call-clobbered,
12906 the caller either does not care what is in the register after the
12907 call, or has code to restore the value that it does care about.  Note,
12908 however, that if you change such a register in the outer frame, you
12909 may also be affecting the inner frame.  Also, the more ``outer'' the
12910 frame is you're looking at, the more likely a call-clobbered
12911 register's value is to be wrong, in the sense that it doesn't actually
12912 represent the value the register had just before the call.
12914 @node Floating Point Hardware
12915 @section Floating Point Hardware
12916 @cindex floating point
12918 Depending on the configuration, @value{GDBN} may be able to give
12919 you more information about the status of the floating point hardware.
12921 @table @code
12922 @kindex info float
12923 @item info float
12924 Display hardware-dependent information about the floating
12925 point unit.  The exact contents and layout vary depending on the
12926 floating point chip.  Currently, @samp{info float} is supported on
12927 the ARM and x86 machines.
12928 @end table
12930 @node Vector Unit
12931 @section Vector Unit
12932 @cindex vector unit
12934 Depending on the configuration, @value{GDBN} may be able to give you
12935 more information about the status of the vector unit.
12937 @table @code
12938 @kindex info vector
12939 @item info vector
12940 Display information about the vector unit.  The exact contents and
12941 layout vary depending on the hardware.
12942 @end table
12944 @node OS Information
12945 @section Operating System Auxiliary Information
12946 @cindex OS information
12948 @value{GDBN} provides interfaces to useful OS facilities that can help
12949 you debug your program.
12951 @cindex auxiliary vector
12952 @cindex vector, auxiliary
12953 Some operating systems supply an @dfn{auxiliary vector} to programs at
12954 startup.  This is akin to the arguments and environment that you
12955 specify for a program, but contains a system-dependent variety of
12956 binary values that tell system libraries important details about the
12957 hardware, operating system, and process.  Each value's purpose is
12958 identified by an integer tag; the meanings are well-known but system-specific.
12959 Depending on the configuration and operating system facilities,
12960 @value{GDBN} may be able to show you this information.  For remote
12961 targets, this functionality may further depend on the remote stub's
12962 support of the @samp{qXfer:auxv:read} packet, see
12963 @ref{qXfer auxiliary vector read}.
12965 @table @code
12966 @kindex info auxv
12967 @item info auxv
12968 Display the auxiliary vector of the inferior, which can be either a
12969 live process or a core dump file.  @value{GDBN} prints each tag value
12970 numerically, and also shows names and text descriptions for recognized
12971 tags.  Some values in the vector are numbers, some bit masks, and some
12972 pointers to strings or other data.  @value{GDBN} displays each value in the
12973 most appropriate form for a recognized tag, and in hexadecimal for
12974 an unrecognized tag.
12975 @end table
12977 On some targets, @value{GDBN} can access operating system-specific
12978 information and show it to you.  The types of information available
12979 will differ depending on the type of operating system running on the
12980 target.  The mechanism used to fetch the data is described in
12981 @ref{Operating System Information}.  For remote targets, this
12982 functionality depends on the remote stub's support of the
12983 @samp{qXfer:osdata:read} packet, see @ref{qXfer osdata read}.
12985 @table @code
12986 @kindex info os
12987 @item info os @var{infotype}
12989 Display OS information of the requested type.
12991 On @sc{gnu}/Linux, the following values of @var{infotype} are valid:
12993 @anchor{linux info os infotypes}
12994 @table @code
12995 @kindex info os cpus
12996 @item cpus
12997 Display the list of all CPUs/cores. For each CPU/core, @value{GDBN} prints
12998 the available fields from /proc/cpuinfo. For each supported architecture
12999 different fields are available. Two common entries are processor which gives
13000 CPU number and bogomips; a system constant that is calculated during
13001 kernel initialization.
13003 @kindex info os files
13004 @item files
13005 Display the list of open file descriptors on the target.  For each
13006 file descriptor, @value{GDBN} prints the identifier of the process
13007 owning the descriptor, the command of the owning process, the value
13008 of the descriptor, and the target of the descriptor.
13010 @kindex info os modules
13011 @item modules
13012 Display the list of all loaded kernel modules on the target.  For each
13013 module, @value{GDBN} prints the module name, the size of the module in
13014 bytes, the number of times the module is used, the dependencies of the
13015 module, the status of the module, and the address of the loaded module
13016 in memory.
13018 @kindex info os msg
13019 @item msg
13020 Display the list of all System V message queues on the target.  For each
13021 message queue, @value{GDBN} prints the message queue key, the message
13022 queue identifier, the access permissions, the current number of bytes
13023 on the queue, the current number of messages on the queue, the processes
13024 that last sent and received a message on the queue, the user and group
13025 of the owner and creator of the message queue, the times at which a
13026 message was last sent and received on the queue, and the time at which
13027 the message queue was last changed.
13029 @kindex info os processes
13030 @item processes
13031 Display the list of processes on the target.  For each process,
13032 @value{GDBN} prints the process identifier, the name of the user, the
13033 command corresponding to the process, and the list of processor cores
13034 that the process is currently running on.  (To understand what these
13035 properties mean, for this and the following info types, please consult
13036 the general @sc{gnu}/Linux documentation.)
13038 @kindex info os procgroups
13039 @item procgroups
13040 Display the list of process groups on the target.  For each process,
13041 @value{GDBN} prints the identifier of the process group that it belongs
13042 to, the command corresponding to the process group leader, the process
13043 identifier, and the command line of the process.  The list is sorted
13044 first by the process group identifier, then by the process identifier,
13045 so that processes belonging to the same process group are grouped together
13046 and the process group leader is listed first.
13048 @kindex info os semaphores
13049 @item semaphores
13050 Display the list of all System V semaphore sets on the target.  For each
13051 semaphore set, @value{GDBN} prints the semaphore set key, the semaphore
13052 set identifier, the access permissions, the number of semaphores in the
13053 set, the user and group of the owner and creator of the semaphore set,
13054 and the times at which the semaphore set was operated upon and changed.
13056 @kindex info os shm
13057 @item shm
13058 Display the list of all System V shared-memory regions on the target.
13059 For each shared-memory region, @value{GDBN} prints the region key,
13060 the shared-memory identifier, the access permissions, the size of the
13061 region, the process that created the region, the process that last
13062 attached to or detached from the region, the current number of live
13063 attaches to the region, and the times at which the region was last
13064 attached to, detach from, and changed.
13066 @kindex info os sockets
13067 @item sockets
13068 Display the list of Internet-domain sockets on the target.  For each
13069 socket, @value{GDBN} prints the address and port of the local and
13070 remote endpoints, the current state of the connection, the creator of
13071 the socket, the IP address family of the socket, and the type of the
13072 connection.
13074 @kindex info os threads
13075 @item threads
13076 Display the list of threads running on the target.  For each thread,
13077 @value{GDBN} prints the identifier of the process that the thread
13078 belongs to, the command of the process, the thread identifier, and the
13079 processor core that it is currently running on.  The main thread of a
13080 process is not listed.
13081 @end table
13083 @item info os
13084 If @var{infotype} is omitted, then list the possible values for
13085 @var{infotype} and the kind of OS information available for each
13086 @var{infotype}.  If the target does not return a list of possible
13087 types, this command will report an error.
13088 @end table
13090 @node Memory Region Attributes
13091 @section Memory Region Attributes
13092 @cindex memory region attributes
13094 @dfn{Memory region attributes} allow you to describe special handling
13095 required by regions of your target's memory.  @value{GDBN} uses
13096 attributes to determine whether to allow certain types of memory
13097 accesses; whether to use specific width accesses; and whether to cache
13098 target memory.  By default the description of memory regions is
13099 fetched from the target (if the current target supports this), but the
13100 user can override the fetched regions.
13102 Defined memory regions can be individually enabled and disabled.  When a
13103 memory region is disabled, @value{GDBN} uses the default attributes when
13104 accessing memory in that region.  Similarly, if no memory regions have
13105 been defined, @value{GDBN} uses the default attributes when accessing
13106 all memory.
13108 When a memory region is defined, it is given a number to identify it;
13109 to enable, disable, or remove a memory region, you specify that number.
13111 @table @code
13112 @kindex mem
13113 @item mem @var{lower} @var{upper} @var{attributes}@dots{}
13114 Define a memory region bounded by @var{lower} and @var{upper} with
13115 attributes @var{attributes}@dots{}, and add it to the list of regions
13116 monitored by @value{GDBN}.  Note that @var{upper} == 0 is a special
13117 case: it is treated as the target's maximum memory address.
13118 (0xffff on 16 bit targets, 0xffffffff on 32 bit targets, etc.)
13120 @item mem auto
13121 Discard any user changes to the memory regions and use target-supplied
13122 regions, if available, or no regions if the target does not support.
13124 @kindex delete mem
13125 @item delete mem @var{nums}@dots{}
13126 Remove memory regions @var{nums}@dots{} from the list of regions
13127 monitored by @value{GDBN}.
13129 @kindex disable mem
13130 @item disable mem @var{nums}@dots{}
13131 Disable monitoring of memory regions @var{nums}@dots{}.
13132 A disabled memory region is not forgotten.
13133 It may be enabled again later.
13135 @kindex enable mem
13136 @item enable mem @var{nums}@dots{}
13137 Enable monitoring of memory regions @var{nums}@dots{}.
13139 @kindex info mem
13140 @item info mem
13141 Print a table of all defined memory regions, with the following columns
13142 for each region:
13144 @table @emph
13145 @item Memory Region Number
13146 @item Enabled or Disabled.
13147 Enabled memory regions are marked with @samp{y}.
13148 Disabled memory regions are marked with @samp{n}.
13150 @item Lo Address
13151 The address defining the inclusive lower bound of the memory region.
13153 @item Hi Address
13154 The address defining the exclusive upper bound of the memory region.
13156 @item Attributes
13157 The list of attributes set for this memory region.
13158 @end table
13159 @end table
13162 @subsection Attributes
13164 @subsubsection Memory Access Mode
13165 The access mode attributes set whether @value{GDBN} may make read or
13166 write accesses to a memory region.
13168 While these attributes prevent @value{GDBN} from performing invalid
13169 memory accesses, they do nothing to prevent the target system, I/O DMA,
13170 etc.@: from accessing memory.
13172 @table @code
13173 @item ro
13174 Memory is read only.
13175 @item wo
13176 Memory is write only.
13177 @item rw
13178 Memory is read/write.  This is the default.
13179 @end table
13181 @subsubsection Memory Access Size
13182 The access size attribute tells @value{GDBN} to use specific sized
13183 accesses in the memory region.  Often memory mapped device registers
13184 require specific sized accesses.  If no access size attribute is
13185 specified, @value{GDBN} may use accesses of any size.
13187 @table @code
13188 @item 8
13189 Use 8 bit memory accesses.
13190 @item 16
13191 Use 16 bit memory accesses.
13192 @item 32
13193 Use 32 bit memory accesses.
13194 @item 64
13195 Use 64 bit memory accesses.
13196 @end table
13198 @c @subsubsection Hardware/Software Breakpoints
13199 @c The hardware/software breakpoint attributes set whether @value{GDBN}
13200 @c will use hardware or software breakpoints for the internal breakpoints
13201 @c used by the step, next, finish, until, etc. commands.
13203 @c @table @code
13204 @c @item hwbreak
13205 @c Always use hardware breakpoints
13206 @c @item swbreak (default)
13207 @c @end table
13209 @subsubsection Data Cache
13210 The data cache attributes set whether @value{GDBN} will cache target
13211 memory.  While this generally improves performance by reducing debug
13212 protocol overhead, it can lead to incorrect results because @value{GDBN}
13213 does not know about volatile variables or memory mapped device
13214 registers.
13216 @table @code
13217 @item cache
13218 Enable @value{GDBN} to cache target memory.
13219 @item nocache
13220 Disable @value{GDBN} from caching target memory.  This is the default.
13221 @end table
13223 @subsection Memory Access Checking
13224 @value{GDBN} can be instructed to refuse accesses to memory that is
13225 not explicitly described.  This can be useful if accessing such
13226 regions has undesired effects for a specific target, or to provide
13227 better error checking.  The following commands control this behaviour.
13229 @table @code
13230 @kindex set mem inaccessible-by-default
13231 @item set mem inaccessible-by-default [on|off]
13232 If @code{on} is specified, make  @value{GDBN} treat memory not
13233 explicitly described by the memory ranges as non-existent and refuse accesses
13234 to such memory.  The checks are only performed if there's at least one
13235 memory range defined.  If @code{off} is specified, make @value{GDBN}
13236 treat the memory not explicitly described by the memory ranges as RAM.
13237 The default value is @code{on}.
13238 @kindex show mem inaccessible-by-default
13239 @item show mem inaccessible-by-default
13240 Show the current handling of accesses to unknown memory.
13241 @end table
13244 @c @subsubsection Memory Write Verification
13245 @c The memory write verification attributes set whether @value{GDBN}
13246 @c will re-reads data after each write to verify the write was successful.
13248 @c @table @code
13249 @c @item verify
13250 @c @item noverify (default)
13251 @c @end table
13253 @node Dump/Restore Files
13254 @section Copy Between Memory and a File
13255 @cindex dump/restore files
13256 @cindex append data to a file
13257 @cindex dump data to a file
13258 @cindex restore data from a file
13260 You can use the commands @code{dump}, @code{append}, and
13261 @code{restore} to copy data between target memory and a file.  The
13262 @code{dump} and @code{append} commands write data to a file, and the
13263 @code{restore} command reads data from a file back into the inferior's
13264 memory.  Files may be in binary, Motorola S-record, Intel hex,
13265 Tektronix Hex, or Verilog Hex format; however, @value{GDBN} can only
13266 append to binary files, and cannot read from Verilog Hex files.
13268 @table @code
13270 @kindex dump
13271 @item dump @r{[}@var{format}@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13272 @itemx dump @r{[}@var{format}@r{]} value @var{filename} @var{expr}
13273 Dump the contents of memory from @var{start_addr} to @var{end_addr},
13274 or the value of @var{expr}, to @var{filename} in the given format.
13276 The @var{format} parameter may be any one of:
13277 @table @code
13278 @item binary
13279 Raw binary form.
13280 @item ihex
13281 Intel hex format.
13282 @item srec
13283 Motorola S-record format.
13284 @item tekhex
13285 Tektronix Hex format.
13286 @item verilog
13287 Verilog Hex format.
13288 @end table
13290 @value{GDBN} uses the same definitions of these formats as the
13291 @sc{gnu} binary utilities, like @samp{objdump} and @samp{objcopy}.  If
13292 @var{format} is omitted, @value{GDBN} dumps the data in raw binary
13293 form.
13295 @kindex append
13296 @item append @r{[}binary@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13297 @itemx append @r{[}binary@r{]} value @var{filename} @var{expr}
13298 Append the contents of memory from @var{start_addr} to @var{end_addr},
13299 or the value of @var{expr}, to the file @var{filename}, in raw binary form.
13300 (@value{GDBN} can only append data to files in raw binary form.)
13302 @kindex restore
13303 @item restore @var{filename} @r{[}binary@r{]} @var{bias} @var{start} @var{end}
13304 Restore the contents of file @var{filename} into memory.  The
13305 @code{restore} command can automatically recognize any known @sc{bfd}
13306 file format, except for raw binary.  To restore a raw binary file you
13307 must specify the optional keyword @code{binary} after the filename.
13309 If @var{bias} is non-zero, its value will be added to the addresses
13310 contained in the file.  Binary files always start at address zero, so
13311 they will be restored at address @var{bias}.  Other bfd files have
13312 a built-in location; they will be restored at offset @var{bias}
13313 from that location.
13315 If @var{start} and/or @var{end} are non-zero, then only data between
13316 file offset @var{start} and file offset @var{end} will be restored.
13317 These offsets are relative to the addresses in the file, before
13318 the @var{bias} argument is applied.
13320 @end table
13322 @node Core File Generation
13323 @section How to Produce a Core File from Your Program
13324 @cindex dump core from inferior
13326 A @dfn{core file} or @dfn{core dump} is a file that records the memory
13327 image of a running process and its process status (register values
13328 etc.).  Its primary use is post-mortem debugging of a program that
13329 crashed while it ran outside a debugger.  A program that crashes
13330 automatically produces a core file, unless this feature is disabled by
13331 the user.  @xref{Files}, for information on invoking @value{GDBN} in
13332 the post-mortem debugging mode.
13334 Occasionally, you may wish to produce a core file of the program you
13335 are debugging in order to preserve a snapshot of its state.
13336 @value{GDBN} has a special command for that.
13338 @table @code
13339 @kindex gcore
13340 @kindex generate-core-file
13341 @item generate-core-file [@var{file}]
13342 @itemx gcore [@var{file}]
13343 Produce a core dump of the inferior process.  The optional argument
13344 @var{file} specifies the file name where to put the core dump.  If not
13345 specified, the file name defaults to @file{core.@var{pid}}, where
13346 @var{pid} is the inferior process ID.
13348 Note that this command is implemented only for some systems (as of
13349 this writing, @sc{gnu}/Linux, FreeBSD, Solaris, and S390).
13351 On @sc{gnu}/Linux, this command can take into account the value of the
13352 file @file{/proc/@var{pid}/coredump_filter} when generating the core
13353 dump (@pxref{set use-coredump-filter}), and by default honors the
13354 @code{VM_DONTDUMP} flag for mappings where it is present in the file
13355 @file{/proc/@var{pid}/smaps} (@pxref{set dump-excluded-mappings}).
13357 @kindex set use-coredump-filter
13358 @anchor{set use-coredump-filter}
13359 @item set use-coredump-filter on
13360 @itemx set use-coredump-filter off
13361 Enable or disable the use of the file
13362 @file{/proc/@var{pid}/coredump_filter} when generating core dump
13363 files.  This file is used by the Linux kernel to decide what types of
13364 memory mappings will be dumped or ignored when generating a core dump
13365 file.  @var{pid} is the process ID of a currently running process.
13367 To make use of this feature, you have to write in the
13368 @file{/proc/@var{pid}/coredump_filter} file a value, in hexadecimal,
13369 which is a bit mask representing the memory mapping types.  If a bit
13370 is set in the bit mask, then the memory mappings of the corresponding
13371 types will be dumped; otherwise, they will be ignored.  This
13372 configuration is inherited by child processes.  For more information
13373 about the bits that can be set in the
13374 @file{/proc/@var{pid}/coredump_filter} file, please refer to the
13375 manpage of @code{core(5)}.
13377 By default, this option is @code{on}.  If this option is turned
13378 @code{off}, @value{GDBN} does not read the @file{coredump_filter} file
13379 and instead uses the same default value as the Linux kernel in order
13380 to decide which pages will be dumped in the core dump file.  This
13381 value is currently @code{0x33}, which means that bits @code{0}
13382 (anonymous private mappings), @code{1} (anonymous shared mappings),
13383 @code{4} (ELF headers) and @code{5} (private huge pages) are active.
13384 This will cause these memory mappings to be dumped automatically.
13386 @kindex set dump-excluded-mappings
13387 @anchor{set dump-excluded-mappings}
13388 @item set dump-excluded-mappings on
13389 @itemx set dump-excluded-mappings off
13390 If @code{on} is specified, @value{GDBN} will dump memory mappings
13391 marked with the @code{VM_DONTDUMP} flag.  This flag is represented in
13392 the file @file{/proc/@var{pid}/smaps} with the acronym @code{dd}.
13394 The default value is @code{off}.
13395 @end table
13397 @node Character Sets
13398 @section Character Sets
13399 @cindex character sets
13400 @cindex charset
13401 @cindex translating between character sets
13402 @cindex host character set
13403 @cindex target character set
13405 If the program you are debugging uses a different character set to
13406 represent characters and strings than the one @value{GDBN} uses itself,
13407 @value{GDBN} can automatically translate between the character sets for
13408 you.  The character set @value{GDBN} uses we call the @dfn{host
13409 character set}; the one the inferior program uses we call the
13410 @dfn{target character set}.
13412 For example, if you are running @value{GDBN} on a @sc{gnu}/Linux system, which
13413 uses the ISO Latin 1 character set, but you are using @value{GDBN}'s
13414 remote protocol (@pxref{Remote Debugging}) to debug a program
13415 running on an IBM mainframe, which uses the @sc{ebcdic} character set,
13416 then the host character set is Latin-1, and the target character set is
13417 @sc{ebcdic}.  If you give @value{GDBN} the command @code{set
13418 target-charset EBCDIC-US}, then @value{GDBN} translates between
13419 @sc{ebcdic} and Latin 1 as you print character or string values, or use
13420 character and string literals in expressions.
13422 @value{GDBN} has no way to automatically recognize which character set
13423 the inferior program uses; you must tell it, using the @code{set
13424 target-charset} command, described below.
13426 Here are the commands for controlling @value{GDBN}'s character set
13427 support:
13429 @table @code
13430 @item set target-charset @var{charset}
13431 @kindex set target-charset
13432 Set the current target character set to @var{charset}.  To display the
13433 list of supported target character sets, type
13434 @kbd{@w{set target-charset @key{TAB}@key{TAB}}}.
13436 @item set host-charset @var{charset}
13437 @kindex set host-charset
13438 Set the current host character set to @var{charset}.
13440 By default, @value{GDBN} uses a host character set appropriate to the
13441 system it is running on; you can override that default using the
13442 @code{set host-charset} command.  On some systems, @value{GDBN} cannot
13443 automatically determine the appropriate host character set.  In this
13444 case, @value{GDBN} uses @samp{UTF-8}.
13446 @value{GDBN} can only use certain character sets as its host character
13447 set.  If you type @kbd{@w{set host-charset @key{TAB}@key{TAB}}},
13448 @value{GDBN} will list the host character sets it supports.
13450 @item set charset @var{charset}
13451 @kindex set charset
13452 Set the current host and target character sets to @var{charset}.  As
13453 above, if you type @kbd{@w{set charset @key{TAB}@key{TAB}}},
13454 @value{GDBN} will list the names of the character sets that can be used
13455 for both host and target.
13457 @item show charset
13458 @kindex show charset
13459 Show the names of the current host and target character sets.
13461 @item show host-charset
13462 @kindex show host-charset
13463 Show the name of the current host character set.
13465 @item show target-charset
13466 @kindex show target-charset
13467 Show the name of the current target character set.
13469 @item set target-wide-charset @var{charset}
13470 @kindex set target-wide-charset
13471 Set the current target's wide character set to @var{charset}.  This is
13472 the character set used by the target's @code{wchar_t} type.  To
13473 display the list of supported wide character sets, type
13474 @kbd{@w{set target-wide-charset @key{TAB}@key{TAB}}}.
13476 @item show target-wide-charset
13477 @kindex show target-wide-charset
13478 Show the name of the current target's wide character set.
13479 @end table
13481 Here is an example of @value{GDBN}'s character set support in action.
13482 Assume that the following source code has been placed in the file
13483 @file{charset-test.c}:
13485 @smallexample
13486 #include <stdio.h>
13488 char ascii_hello[]
13489   = @{72, 101, 108, 108, 111, 44, 32, 119,
13490      111, 114, 108, 100, 33, 10, 0@};
13491 char ibm1047_hello[]
13492   = @{200, 133, 147, 147, 150, 107, 64, 166,
13493      150, 153, 147, 132, 90, 37, 0@};
13495 main ()
13497   printf ("Hello, world!\n");
13499 @end smallexample
13501 In this program, @code{ascii_hello} and @code{ibm1047_hello} are arrays
13502 containing the string @samp{Hello, world!} followed by a newline,
13503 encoded in the @sc{ascii} and @sc{ibm1047} character sets.
13505 We compile the program, and invoke the debugger on it:
13507 @smallexample
13508 $ gcc -g charset-test.c -o charset-test
13509 $ gdb -nw charset-test
13510 GNU gdb 2001-12-19-cvs
13511 Copyright 2001 Free Software Foundation, Inc.
13512 @dots{}
13513 (@value{GDBP})
13514 @end smallexample
13516 We can use the @code{show charset} command to see what character sets
13517 @value{GDBN} is currently using to interpret and display characters and
13518 strings:
13520 @smallexample
13521 (@value{GDBP}) show charset
13522 The current host and target character set is `ISO-8859-1'.
13523 (@value{GDBP})
13524 @end smallexample
13526 For the sake of printing this manual, let's use @sc{ascii} as our
13527 initial character set:
13528 @smallexample
13529 (@value{GDBP}) set charset ASCII
13530 (@value{GDBP}) show charset
13531 The current host and target character set is `ASCII'.
13532 (@value{GDBP})
13533 @end smallexample
13535 Let's assume that @sc{ascii} is indeed the correct character set for our
13536 host system --- in other words, let's assume that if @value{GDBN} prints
13537 characters using the @sc{ascii} character set, our terminal will display
13538 them properly.  Since our current target character set is also
13539 @sc{ascii}, the contents of @code{ascii_hello} print legibly:
13541 @smallexample
13542 (@value{GDBP}) print ascii_hello
13543 $1 = 0x401698 "Hello, world!\n"
13544 (@value{GDBP}) print ascii_hello[0]
13545 $2 = 72 'H'
13546 (@value{GDBP})
13547 @end smallexample
13549 @value{GDBN} uses the target character set for character and string
13550 literals you use in expressions:
13552 @smallexample
13553 (@value{GDBP}) print '+'
13554 $3 = 43 '+'
13555 (@value{GDBP})
13556 @end smallexample
13558 The @sc{ascii} character set uses the number 43 to encode the @samp{+}
13559 character.
13561 @value{GDBN} relies on the user to tell it which character set the
13562 target program uses.  If we print @code{ibm1047_hello} while our target
13563 character set is still @sc{ascii}, we get jibberish:
13565 @smallexample
13566 (@value{GDBP}) print ibm1047_hello
13567 $4 = 0x4016a8 "\310\205\223\223\226k@@\246\226\231\223\204Z%"
13568 (@value{GDBP}) print ibm1047_hello[0]
13569 $5 = 200 '\310'
13570 (@value{GDBP})
13571 @end smallexample
13573 If we invoke the @code{set target-charset} followed by @key{TAB}@key{TAB},
13574 @value{GDBN} tells us the character sets it supports:
13576 @smallexample
13577 (@value{GDBP}) set target-charset
13578 ASCII       EBCDIC-US   IBM1047     ISO-8859-1
13579 (@value{GDBP}) set target-charset
13580 @end smallexample
13582 We can select @sc{ibm1047} as our target character set, and examine the
13583 program's strings again.  Now the @sc{ascii} string is wrong, but
13584 @value{GDBN} translates the contents of @code{ibm1047_hello} from the
13585 target character set, @sc{ibm1047}, to the host character set,
13586 @sc{ascii}, and they display correctly:
13588 @smallexample
13589 (@value{GDBP}) set target-charset IBM1047
13590 (@value{GDBP}) show charset
13591 The current host character set is `ASCII'.
13592 The current target character set is `IBM1047'.
13593 (@value{GDBP}) print ascii_hello
13594 $6 = 0x401698 "\110\145%%?\054\040\167?\162%\144\041\012"
13595 (@value{GDBP}) print ascii_hello[0]
13596 $7 = 72 '\110'
13597 (@value{GDBP}) print ibm1047_hello
13598 $8 = 0x4016a8 "Hello, world!\n"
13599 (@value{GDBP}) print ibm1047_hello[0]
13600 $9 = 200 'H'
13601 (@value{GDBP})
13602 @end smallexample
13604 As above, @value{GDBN} uses the target character set for character and
13605 string literals you use in expressions:
13607 @smallexample
13608 (@value{GDBP}) print '+'
13609 $10 = 78 '+'
13610 (@value{GDBP})
13611 @end smallexample
13613 The @sc{ibm1047} character set uses the number 78 to encode the @samp{+}
13614 character.
13616 @node Caching Target Data
13617 @section Caching Data of Targets
13618 @cindex caching data of targets
13620 @value{GDBN} caches data exchanged between the debugger and a target.
13621 Each cache is associated with the address space of the inferior.
13622 @xref{Inferiors Connections and Programs}, about inferior and address space.
13623 Such caching generally improves performance in remote debugging
13624 (@pxref{Remote Debugging}), because it reduces the overhead of the
13625 remote protocol by bundling memory reads and writes into large chunks.
13626 Unfortunately, simply caching everything would lead to incorrect results,
13627 since @value{GDBN} does not necessarily know anything about volatile
13628 values, memory-mapped I/O addresses, etc.  Furthermore, in non-stop mode
13629 (@pxref{Non-Stop Mode}) memory can be changed @emph{while} a gdb command
13630 is executing.
13631 Therefore, by default, @value{GDBN} only caches data
13632 known to be on the stack@footnote{In non-stop mode, it is moderately
13633 rare for a running thread to modify the stack of a stopped thread
13634 in a way that would interfere with a backtrace, and caching of
13635 stack reads provides a significant speed up of remote backtraces.} or
13636 in the code segment.
13637 Other regions of memory can be explicitly marked as
13638 cacheable; @pxref{Memory Region Attributes}.
13640 @table @code
13641 @kindex set remotecache
13642 @item set remotecache on
13643 @itemx set remotecache off
13644 This option no longer does anything; it exists for compatibility
13645 with old scripts.
13647 @kindex show remotecache
13648 @item show remotecache
13649 Show the current state of the obsolete remotecache flag.
13651 @kindex set stack-cache
13652 @item set stack-cache on
13653 @itemx set stack-cache off
13654 Enable or disable caching of stack accesses.  When @code{on}, use
13655 caching.  By default, this option is @code{on}.
13657 @kindex show stack-cache
13658 @item show stack-cache
13659 Show the current state of data caching for memory accesses.
13661 @kindex set code-cache
13662 @item set code-cache on
13663 @itemx set code-cache off
13664 Enable or disable caching of code segment accesses.  When @code{on},
13665 use caching.  By default, this option is @code{on}.  This improves
13666 performance of disassembly in remote debugging.
13668 @kindex show code-cache
13669 @item show code-cache
13670 Show the current state of target memory cache for code segment
13671 accesses.
13673 @kindex info dcache
13674 @item info dcache @r{[}line@r{]}
13675 Print the information about the performance of data cache of the
13676 current inferior's address space.  The information displayed
13677 includes the dcache width and depth, and for each cache line, its
13678 number, address, and how many times it was referenced.  This
13679 command is useful for debugging the data cache operation.
13681 If a line number is specified, the contents of that line will be
13682 printed in hex.
13684 @item set dcache size @var{size}
13685 @cindex dcache size
13686 @kindex set dcache size
13687 Set maximum number of entries in dcache (dcache depth above).
13689 @item set dcache line-size @var{line-size}
13690 @cindex dcache line-size
13691 @kindex set dcache line-size
13692 Set number of bytes each dcache entry caches (dcache width above).
13693 Must be a power of 2.
13695 @item show dcache size
13696 @kindex show dcache size
13697 Show maximum number of dcache entries.  @xref{Caching Target Data, info dcache}.
13699 @item show dcache line-size
13700 @kindex show dcache line-size
13701 Show default size of dcache lines.
13703 @item maint flush dcache
13704 @cindex dcache, flushing
13705 @kindex maint flush dcache
13706 Flush the contents (if any) of the dcache.  This maintainer command is
13707 useful when debugging the dcache implementation.
13709 @end table
13711 @node Searching Memory
13712 @section Search Memory
13713 @cindex searching memory
13715 Memory can be searched for a particular sequence of bytes with the
13716 @code{find} command.
13718 @table @code
13719 @kindex find
13720 @item find @r{[}/@var{sn}@r{]} @var{start_addr}, +@var{len}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13721 @itemx find @r{[}/@var{sn}@r{]} @var{start_addr}, @var{end_addr}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13722 Search memory for the sequence of bytes specified by @var{val1}, @var{val2},
13723 etc.  The search begins at address @var{start_addr} and continues for either
13724 @var{len} bytes or through to @var{end_addr} inclusive.
13725 @end table
13727 @var{s} and @var{n} are optional parameters.
13728 They may be specified in either order, apart or together.
13730 @table @r
13731 @item @var{s}, search query size
13732 The size of each search query value.
13734 @table @code
13735 @item b
13736 bytes
13737 @item h
13738 halfwords (two bytes)
13739 @item w
13740 words (four bytes)
13741 @item g
13742 giant words (eight bytes)
13743 @end table
13745 All values are interpreted in the current language.
13746 This means, for example, that if the current source language is C/C@t{++}
13747 then searching for the string ``hello'' includes the trailing '\0'.
13748 The null terminator can be removed from searching by using casts,
13749 e.g.: @samp{@{char[5]@}"hello"}.
13751 If the value size is not specified, it is taken from the
13752 value's type in the current language.
13753 This is useful when one wants to specify the search
13754 pattern as a mixture of types.
13755 Note that this means, for example, that in the case of C-like languages
13756 a search for an untyped 0x42 will search for @samp{(int) 0x42}
13757 which is typically four bytes.
13759 @item @var{n}, maximum number of finds
13760 The maximum number of matches to print.  The default is to print all finds.
13761 @end table
13763 You can use strings as search values.  Quote them with double-quotes
13764  (@code{"}).
13765 The string value is copied into the search pattern byte by byte,
13766 regardless of the endianness of the target and the size specification.
13768 The address of each match found is printed as well as a count of the
13769 number of matches found.
13771 The address of the last value found is stored in convenience variable
13772 @samp{$_}.
13773 A count of the number of matches is stored in @samp{$numfound}.
13775 For example, if stopped at the @code{printf} in this function:
13777 @smallexample
13778 void
13779 hello ()
13781   static char hello[] = "hello-hello";
13782   static struct @{ char c; short s; int i; @}
13783     __attribute__ ((packed)) mixed
13784     = @{ 'c', 0x1234, 0x87654321 @};
13785   printf ("%s\n", hello);
13787 @end smallexample
13789 @noindent
13790 you get during debugging:
13792 @smallexample
13793 (gdb) find &hello[0], +sizeof(hello), "hello"
13794 0x804956d <hello.1620+6>
13795 1 pattern found
13796 (gdb) find &hello[0], +sizeof(hello), 'h', 'e', 'l', 'l', 'o'
13797 0x8049567 <hello.1620>
13798 0x804956d <hello.1620+6>
13799 2 patterns found.
13800 (gdb) find &hello[0], +sizeof(hello), @{char[5]@}"hello"
13801 0x8049567 <hello.1620>
13802 0x804956d <hello.1620+6>
13803 2 patterns found.
13804 (gdb) find /b1 &hello[0], +sizeof(hello), 'h', 0x65, 'l'
13805 0x8049567 <hello.1620>
13806 1 pattern found
13807 (gdb) find &mixed, +sizeof(mixed), (char) 'c', (short) 0x1234, (int) 0x87654321
13808 0x8049560 <mixed.1625>
13809 1 pattern found
13810 (gdb) print $numfound
13811 $1 = 1
13812 (gdb) print $_
13813 $2 = (void *) 0x8049560
13814 @end smallexample
13816 @node Value Sizes
13817 @section Value Sizes
13819 Whenever @value{GDBN} prints a value memory will be allocated within
13820 @value{GDBN} to hold the contents of the value.  It is possible in
13821 some languages with dynamic typing systems, that an invalid program
13822 may indicate a value that is incorrectly large, this in turn may cause
13823 @value{GDBN} to try and allocate an overly large amount of memory.
13825 @table @code
13826 @kindex set max-value-size
13827 @item set max-value-size @var{bytes}
13828 @itemx set max-value-size unlimited
13829 Set the maximum size of memory that @value{GDBN} will allocate for the
13830 contents of a value to @var{bytes}, trying to display a value that
13831 requires more memory than that will result in an error.
13833 Setting this variable does not effect values that have already been
13834 allocated within @value{GDBN}, only future allocations.
13836 There's a minimum size that @code{max-value-size} can be set to in
13837 order that @value{GDBN} can still operate correctly, this minimum is
13838 currently 16 bytes.
13840 The limit applies to the results of some subexpressions as well as to
13841 complete expressions.  For example, an expression denoting a simple
13842 integer component, such as @code{x.y.z}, may fail if the size of
13843 @var{x.y} is dynamic and exceeds @var{bytes}.  On the other hand,
13844 @value{GDBN} is sometimes clever; the expression @code{A[i]}, where
13845 @var{A} is an array variable with non-constant size, will generally
13846 succeed regardless of the bounds on @var{A}, as long as the component
13847 size is less than @var{bytes}.
13849 The default value of @code{max-value-size} is currently 64k.
13851 @kindex show max-value-size
13852 @item show max-value-size
13853 Show the maximum size of memory, in bytes, that @value{GDBN} will
13854 allocate for the contents of a value.
13855 @end table
13857 @node Optimized Code
13858 @chapter Debugging Optimized Code
13859 @cindex optimized code, debugging
13860 @cindex debugging optimized code
13862 Almost all compilers support optimization.  With optimization
13863 disabled, the compiler generates assembly code that corresponds
13864 directly to your source code, in a simplistic way.  As the compiler
13865 applies more powerful optimizations, the generated assembly code
13866 diverges from your original source code.  With help from debugging
13867 information generated by the compiler, @value{GDBN} can map from
13868 the running program back to constructs from your original source.
13870 @value{GDBN} is more accurate with optimization disabled.  If you
13871 can recompile without optimization, it is easier to follow the
13872 progress of your program during debugging.  But, there are many cases
13873 where you may need to debug an optimized version.
13875 When you debug a program compiled with @samp{-g -O}, remember that the
13876 optimizer has rearranged your code; the debugger shows you what is
13877 really there.  Do not be too surprised when the execution path does not
13878 exactly match your source file!  An extreme example: if you define a
13879 variable, but never use it, @value{GDBN} never sees that
13880 variable---because the compiler optimizes it out of existence.
13882 Some things do not work as well with @samp{-g -O} as with just
13883 @samp{-g}, particularly on machines with instruction scheduling.  If in
13884 doubt, recompile with @samp{-g} alone, and if this fixes the problem,
13885 please report it to us as a bug (including a test case!).
13886 @xref{Variables}, for more information about debugging optimized code.
13888 @menu
13889 * Inline Functions::            How @value{GDBN} presents inlining
13890 * Tail Call Frames::            @value{GDBN} analysis of jumps to functions
13891 @end menu
13893 @node Inline Functions
13894 @section Inline Functions
13895 @cindex inline functions, debugging
13897 @dfn{Inlining} is an optimization that inserts a copy of the function
13898 body directly at each call site, instead of jumping to a shared
13899 routine.  @value{GDBN} displays inlined functions just like
13900 non-inlined functions.  They appear in backtraces.  You can view their
13901 arguments and local variables, step into them with @code{step}, skip
13902 them with @code{next}, and escape from them with @code{finish}.
13903 You can check whether a function was inlined by using the
13904 @code{info frame} command.
13906 For @value{GDBN} to support inlined functions, the compiler must
13907 record information about inlining in the debug information ---
13908 @value{NGCC} using the @sc{dwarf 2} format does this, and several
13909 other compilers do also.  @value{GDBN} only supports inlined functions
13910 when using @sc{dwarf 2}.  Versions of @value{NGCC} before 4.1
13911 do not emit two required attributes (@samp{DW_AT_call_file} and
13912 @samp{DW_AT_call_line}); @value{GDBN} does not display inlined
13913 function calls with earlier versions of @value{NGCC}.  It instead
13914 displays the arguments and local variables of inlined functions as
13915 local variables in the caller.
13917 The body of an inlined function is directly included at its call site;
13918 unlike a non-inlined function, there are no instructions devoted to
13919 the call.  @value{GDBN} still pretends that the call site and the
13920 start of the inlined function are different instructions.  Stepping to
13921 the call site shows the call site, and then stepping again shows
13922 the first line of the inlined function, even though no additional
13923 instructions are executed.
13925 This makes source-level debugging much clearer; you can see both the
13926 context of the call and then the effect of the call.  Only stepping by
13927 a single instruction using @code{stepi} or @code{nexti} does not do
13928 this; single instruction steps always show the inlined body.
13930 There are some ways that @value{GDBN} does not pretend that inlined
13931 function calls are the same as normal calls:
13933 @itemize @bullet
13934 @item
13935 Setting breakpoints at the call site of an inlined function may not
13936 work, because the call site does not contain any code.  @value{GDBN}
13937 may incorrectly move the breakpoint to the next line of the enclosing
13938 function, after the call.  This limitation will be removed in a future
13939 version of @value{GDBN}; until then, set a breakpoint on an earlier line
13940 or inside the inlined function instead.
13942 @item
13943 @value{GDBN} cannot locate the return value of inlined calls after
13944 using the @code{finish} command.  This is a limitation of compiler-generated
13945 debugging information; after @code{finish}, you can step to the next line
13946 and print a variable where your program stored the return value.
13948 @end itemize
13950 @node Tail Call Frames
13951 @section Tail Call Frames
13952 @cindex tail call frames, debugging
13954 Function @code{B} can call function @code{C} in its very last statement.  In
13955 unoptimized compilation the call of @code{C} is immediately followed by return
13956 instruction at the end of @code{B} code.  Optimizing compiler may replace the
13957 call and return in function @code{B} into one jump to function @code{C}
13958 instead.  Such use of a jump instruction is called @dfn{tail call}.
13960 During execution of function @code{C}, there will be no indication in the
13961 function call stack frames that it was tail-called from @code{B}.  If function
13962 @code{A} regularly calls function @code{B} which tail-calls function @code{C},
13963 then @value{GDBN} will see @code{A} as the caller of @code{C}.  However, in
13964 some cases @value{GDBN} can determine that @code{C} was tail-called from
13965 @code{B}, and it will then create fictitious call frame for that, with the
13966 return address set up as if @code{B} called @code{C} normally.
13968 This functionality is currently supported only by DWARF 2 debugging format and
13969 the compiler has to produce @samp{DW_TAG_call_site} tags.  With
13970 @value{NGCC}, you need to specify @option{-O -g} during compilation, to get
13971 this information.
13973 @kbd{info frame} command (@pxref{Frame Info}) will indicate the tail call frame
13974 kind by text @code{tail call frame} such as in this sample @value{GDBN} output:
13976 @smallexample
13977 (gdb) x/i $pc - 2
13978    0x40066b <b(int, double)+11>: jmp 0x400640 <c(int, double)>
13979 (gdb) info frame
13980 Stack level 1, frame at 0x7fffffffda30:
13981  rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
13982  tail call frame, caller of frame at 0x7fffffffda30
13983  source language c++.
13984  Arglist at unknown address.
13985  Locals at unknown address, Previous frame's sp is 0x7fffffffda30
13986 @end smallexample
13988 The detection of all the possible code path executions can find them ambiguous.
13989 There is no execution history stored (possible @ref{Reverse Execution} is never
13990 used for this purpose) and the last known caller could have reached the known
13991 callee by multiple different jump sequences.  In such case @value{GDBN} still
13992 tries to show at least all the unambiguous top tail callers and all the
13993 unambiguous bottom tail calees, if any.
13995 @table @code
13996 @anchor{set debug entry-values}
13997 @item set debug entry-values
13998 @kindex set debug entry-values
13999 When set to on, enables printing of analysis messages for both frame argument
14000 values at function entry and tail calls.  It will show all the possible valid
14001 tail calls code paths it has considered.  It will also print the intersection
14002 of them with the final unambiguous (possibly partial or even empty) code path
14003 result.
14005 @item show debug entry-values
14006 @kindex show debug entry-values
14007 Show the current state of analysis messages printing for both frame argument
14008 values at function entry and tail calls.
14009 @end table
14011 The analysis messages for tail calls can for example show why the virtual tail
14012 call frame for function @code{c} has not been recognized (due to the indirect
14013 reference by variable @code{x}):
14015 @smallexample
14016 static void __attribute__((noinline, noclone)) c (void);
14017 void (*x) (void) = c;
14018 static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
14019 static void __attribute__((noinline, noclone)) c (void) @{ a (); @}
14020 int main (void) @{ x (); return 0; @}
14022 Breakpoint 1, DW_OP_entry_value resolving cannot find
14023 DW_TAG_call_site 0x40039a in main
14024 a () at t.c:3
14025 3       static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
14026 (gdb) bt
14027 #0  a () at t.c:3
14028 #1  0x000000000040039a in main () at t.c:5
14029 @end smallexample
14031 Another possibility is an ambiguous virtual tail call frames resolution:
14033 @smallexample
14034 int i;
14035 static void __attribute__((noinline, noclone)) f (void) @{ i++; @}
14036 static void __attribute__((noinline, noclone)) e (void) @{ f (); @}
14037 static void __attribute__((noinline, noclone)) d (void) @{ f (); @}
14038 static void __attribute__((noinline, noclone)) c (void) @{ d (); @}
14039 static void __attribute__((noinline, noclone)) b (void)
14040 @{ if (i) c (); else e (); @}
14041 static void __attribute__((noinline, noclone)) a (void) @{ b (); @}
14042 int main (void) @{ a (); return 0; @}
14044 tailcall: initial: 0x4004d2(a) 0x4004ce(b) 0x4004b2(c) 0x4004a2(d)
14045 tailcall: compare: 0x4004d2(a) 0x4004cc(b) 0x400492(e)
14046 tailcall: reduced: 0x4004d2(a) |
14047 (gdb) bt
14048 #0  f () at t.c:2
14049 #1  0x00000000004004d2 in a () at t.c:8
14050 #2  0x0000000000400395 in main () at t.c:9
14051 @end smallexample
14053 @set CALLSEQ1A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}c@value{ARROW}d@value{ARROW}f}
14054 @set CALLSEQ2A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}e@value{ARROW}f}
14056 @c Convert CALLSEQ#A to CALLSEQ#B depending on HAVE_MAKEINFO_CLICK.
14057 @ifset HAVE_MAKEINFO_CLICK
14058 @set ARROW @click{}
14059 @set CALLSEQ1B @clicksequence{@value{CALLSEQ1A}}
14060 @set CALLSEQ2B @clicksequence{@value{CALLSEQ2A}}
14061 @end ifset
14062 @ifclear HAVE_MAKEINFO_CLICK
14063 @set ARROW ->
14064 @set CALLSEQ1B @value{CALLSEQ1A}
14065 @set CALLSEQ2B @value{CALLSEQ2A}
14066 @end ifclear
14068 Frames #0 and #2 are real, #1 is a virtual tail call frame.
14069 The code can have possible execution paths @value{CALLSEQ1B} or
14070 @value{CALLSEQ2B}, @value{GDBN} cannot find which one from the inferior state.
14072 @code{initial:} state shows some random possible calling sequence @value{GDBN}
14073 has found.  It then finds another possible calling sequence - that one is
14074 prefixed by @code{compare:}.  The non-ambiguous intersection of these two is
14075 printed as the @code{reduced:} calling sequence.  That one could have many
14076 further @code{compare:} and @code{reduced:} statements as long as there remain
14077 any non-ambiguous sequence entries.
14079 For the frame of function @code{b} in both cases there are different possible
14080 @code{$pc} values (@code{0x4004cc} or @code{0x4004ce}), therefore this frame is
14081 also ambiguous.  The only non-ambiguous frame is the one for function @code{a},
14082 therefore this one is displayed to the user while the ambiguous frames are
14083 omitted.
14085 There can be also reasons why printing of frame argument values at function
14086 entry may fail:
14088 @smallexample
14089 int v;
14090 static void __attribute__((noinline, noclone)) c (int i) @{ v++; @}
14091 static void __attribute__((noinline, noclone)) a (int i);
14092 static void __attribute__((noinline, noclone)) b (int i) @{ a (i); @}
14093 static void __attribute__((noinline, noclone)) a (int i)
14094 @{ if (i) b (i - 1); else c (0); @}
14095 int main (void) @{ a (5); return 0; @}
14097 (gdb) bt
14098 #0  c (i=i@@entry=0) at t.c:2
14099 #1  0x0000000000400428 in a (DW_OP_entry_value resolving has found
14100 function "a" at 0x400420 can call itself via tail calls
14101 i=<optimized out>) at t.c:6
14102 #2  0x000000000040036e in main () at t.c:7
14103 @end smallexample
14105 @value{GDBN} cannot find out from the inferior state if and how many times did
14106 function @code{a} call itself (via function @code{b}) as these calls would be
14107 tail calls.  Such tail calls would modify the @code{i} variable, therefore
14108 @value{GDBN} cannot be sure the value it knows would be right - @value{GDBN}
14109 prints @code{<optimized out>} instead.
14111 @node Macros
14112 @chapter C Preprocessor Macros
14114 Some languages, such as C and C@t{++}, provide a way to define and invoke
14115 ``preprocessor macros'' which expand into strings of tokens.
14116 @value{GDBN} can evaluate expressions containing macro invocations, show
14117 the result of macro expansion, and show a macro's definition, including
14118 where it was defined.
14120 You may need to compile your program specially to provide @value{GDBN}
14121 with information about preprocessor macros.  Most compilers do not
14122 include macros in their debugging information, even when you compile
14123 with the @option{-g} flag.  @xref{Compilation}.
14125 A program may define a macro at one point, remove that definition later,
14126 and then provide a different definition after that.  Thus, at different
14127 points in the program, a macro may have different definitions, or have
14128 no definition at all.  If there is a current stack frame, @value{GDBN}
14129 uses the macros in scope at that frame's source code line.  Otherwise,
14130 @value{GDBN} uses the macros in scope at the current listing location;
14131 see @ref{List}.
14133 Whenever @value{GDBN} evaluates an expression, it always expands any
14134 macro invocations present in the expression.  @value{GDBN} also provides
14135 the following commands for working with macros explicitly.
14137 @table @code
14139 @kindex macro expand
14140 @cindex macro expansion, showing the results of preprocessor
14141 @cindex preprocessor macro expansion, showing the results of
14142 @cindex expanding preprocessor macros
14143 @item macro expand @var{expression}
14144 @itemx macro exp @var{expression}
14145 Show the results of expanding all preprocessor macro invocations in
14146 @var{expression}.  Since @value{GDBN} simply expands macros, but does
14147 not parse the result, @var{expression} need not be a valid expression;
14148 it can be any string of tokens.
14150 @kindex macro exp1
14151 @item macro expand-once @var{expression}
14152 @itemx macro exp1 @var{expression}
14153 @cindex expand macro once
14154 @i{(This command is not yet implemented.)}  Show the results of
14155 expanding those preprocessor macro invocations that appear explicitly in
14156 @var{expression}.  Macro invocations appearing in that expansion are
14157 left unchanged.  This command allows you to see the effect of a
14158 particular macro more clearly, without being confused by further
14159 expansions.  Since @value{GDBN} simply expands macros, but does not
14160 parse the result, @var{expression} need not be a valid expression; it
14161 can be any string of tokens.
14163 @kindex info macro
14164 @cindex macro definition, showing
14165 @cindex definition of a macro, showing
14166 @cindex macros, from debug info
14167 @item info macro [-a|-all] [--] @var{macro}
14168 Show the current definition or all definitions of the named @var{macro},
14169 and describe the source location or compiler command-line where that
14170 definition was established.  The optional double dash is to signify the end of
14171 argument processing and the beginning of @var{macro} for non C-like macros where
14172 the macro may begin with a hyphen.
14174 @kindex info macros
14175 @item info macros @var{location}
14176 Show all macro definitions that are in effect at the location specified
14177 by @var{location},  and describe the source location or compiler
14178 command-line where those definitions were established.
14180 @kindex macro define
14181 @cindex user-defined macros
14182 @cindex defining macros interactively
14183 @cindex macros, user-defined
14184 @item macro define @var{macro} @var{replacement-list}
14185 @itemx macro define @var{macro}(@var{arglist}) @var{replacement-list}
14186 Introduce a definition for a preprocessor macro named @var{macro},
14187 invocations of which are replaced by the tokens given in
14188 @var{replacement-list}.  The first form of this command defines an
14189 ``object-like'' macro, which takes no arguments; the second form
14190 defines a ``function-like'' macro, which takes the arguments given in
14191 @var{arglist}.
14193 A definition introduced by this command is in scope in every
14194 expression evaluated in @value{GDBN}, until it is removed with the
14195 @code{macro undef} command, described below.  The definition overrides
14196 all definitions for @var{macro} present in the program being debugged,
14197 as well as any previous user-supplied definition.
14199 @kindex macro undef
14200 @item macro undef @var{macro}
14201 Remove any user-supplied definition for the macro named @var{macro}.
14202 This command only affects definitions provided with the @code{macro
14203 define} command, described above; it cannot remove definitions present
14204 in the program being debugged.
14206 @kindex macro list
14207 @item macro list
14208 List all the macros defined using the @code{macro define} command.
14209 @end table
14211 @cindex macros, example of debugging with
14212 Here is a transcript showing the above commands in action.  First, we
14213 show our source files:
14215 @smallexample
14216 $ cat sample.c
14217 #include <stdio.h>
14218 #include "sample.h"
14220 #define M 42
14221 #define ADD(x) (M + x)
14223 main ()
14225 #define N 28
14226   printf ("Hello, world!\n");
14227 #undef N
14228   printf ("We're so creative.\n");
14229 #define N 1729
14230   printf ("Goodbye, world!\n");
14232 $ cat sample.h
14233 #define Q <
14235 @end smallexample
14237 Now, we compile the program using the @sc{gnu} C compiler,
14238 @value{NGCC}.  We pass the @option{-gdwarf-2}@footnote{This is the
14239 minimum.  Recent versions of @value{NGCC} support @option{-gdwarf-3}
14240 and @option{-gdwarf-4}; we recommend always choosing the most recent
14241 version of DWARF.} @emph{and} @option{-g3} flags to ensure the compiler
14242 includes information about preprocessor macros in the debugging
14243 information.
14245 @smallexample
14246 $ gcc -gdwarf-2 -g3 sample.c -o sample
14248 @end smallexample
14250 Now, we start @value{GDBN} on our sample program:
14252 @smallexample
14253 $ gdb -nw sample
14254 GNU gdb 2002-05-06-cvs
14255 Copyright 2002 Free Software Foundation, Inc.
14256 GDB is free software, @dots{}
14257 (@value{GDBP})
14258 @end smallexample
14260 We can expand macros and examine their definitions, even when the
14261 program is not running.  @value{GDBN} uses the current listing position
14262 to decide which macro definitions are in scope:
14264 @smallexample
14265 (@value{GDBP}) list main
14267 4       #define M 42
14268 5       #define ADD(x) (M + x)
14270 7       main ()
14271 8       @{
14272 9       #define N 28
14273 10        printf ("Hello, world!\n");
14274 11      #undef N
14275 12        printf ("We're so creative.\n");
14276 (@value{GDBP}) info macro ADD
14277 Defined at /home/jimb/gdb/macros/play/sample.c:5
14278 #define ADD(x) (M + x)
14279 (@value{GDBP}) info macro Q
14280 Defined at /home/jimb/gdb/macros/play/sample.h:1
14281   included at /home/jimb/gdb/macros/play/sample.c:2
14282 #define Q <
14283 (@value{GDBP}) macro expand ADD(1)
14284 expands to: (42 + 1)
14285 (@value{GDBP}) macro expand-once ADD(1)
14286 expands to: once (M + 1)
14287 (@value{GDBP})
14288 @end smallexample
14290 In the example above, note that @code{macro expand-once} expands only
14291 the macro invocation explicit in the original text --- the invocation of
14292 @code{ADD} --- but does not expand the invocation of the macro @code{M},
14293 which was introduced by @code{ADD}.
14295 Once the program is running, @value{GDBN} uses the macro definitions in
14296 force at the source line of the current stack frame:
14298 @smallexample
14299 (@value{GDBP}) break main
14300 Breakpoint 1 at 0x8048370: file sample.c, line 10.
14301 (@value{GDBP}) run
14302 Starting program: /home/jimb/gdb/macros/play/sample
14304 Breakpoint 1, main () at sample.c:10
14305 10        printf ("Hello, world!\n");
14306 (@value{GDBP})
14307 @end smallexample
14309 At line 10, the definition of the macro @code{N} at line 9 is in force:
14311 @smallexample
14312 (@value{GDBP}) info macro N
14313 Defined at /home/jimb/gdb/macros/play/sample.c:9
14314 #define N 28
14315 (@value{GDBP}) macro expand N Q M
14316 expands to: 28 < 42
14317 (@value{GDBP}) print N Q M
14318 $1 = 1
14319 (@value{GDBP})
14320 @end smallexample
14322 As we step over directives that remove @code{N}'s definition, and then
14323 give it a new definition, @value{GDBN} finds the definition (or lack
14324 thereof) in force at each point:
14326 @smallexample
14327 (@value{GDBP}) next
14328 Hello, world!
14329 12        printf ("We're so creative.\n");
14330 (@value{GDBP}) info macro N
14331 The symbol `N' has no definition as a C/C++ preprocessor macro
14332 at /home/jimb/gdb/macros/play/sample.c:12
14333 (@value{GDBP}) next
14334 We're so creative.
14335 14        printf ("Goodbye, world!\n");
14336 (@value{GDBP}) info macro N
14337 Defined at /home/jimb/gdb/macros/play/sample.c:13
14338 #define N 1729
14339 (@value{GDBP}) macro expand N Q M
14340 expands to: 1729 < 42
14341 (@value{GDBP}) print N Q M
14342 $2 = 0
14343 (@value{GDBP})
14344 @end smallexample
14346 In addition to source files, macros can be defined on the compilation command
14347 line using the @option{-D@var{name}=@var{value}} syntax.  For macros defined in
14348 such a way, @value{GDBN} displays the location of their definition as line zero
14349 of the source file submitted to the compiler.
14351 @smallexample
14352 (@value{GDBP}) info macro __STDC__
14353 Defined at /home/jimb/gdb/macros/play/sample.c:0
14354 -D__STDC__=1
14355 (@value{GDBP})
14356 @end smallexample
14359 @node Tracepoints
14360 @chapter Tracepoints
14361 @c This chapter is based on the documentation written by Michael
14362 @c Snyder, David Taylor, Jim Blandy, and Elena Zannoni.
14364 @cindex tracepoints
14365 In some applications, it is not feasible for the debugger to interrupt
14366 the program's execution long enough for the developer to learn
14367 anything helpful about its behavior.  If the program's correctness
14368 depends on its real-time behavior, delays introduced by a debugger
14369 might cause the program to change its behavior drastically, or perhaps
14370 fail, even when the code itself is correct.  It is useful to be able
14371 to observe the program's behavior without interrupting it.
14373 Using @value{GDBN}'s @code{trace} and @code{collect} commands, you can
14374 specify locations in the program, called @dfn{tracepoints}, and
14375 arbitrary expressions to evaluate when those tracepoints are reached.
14376 Later, using the @code{tfind} command, you can examine the values
14377 those expressions had when the program hit the tracepoints.  The
14378 expressions may also denote objects in memory---structures or arrays,
14379 for example---whose values @value{GDBN} should record; while visiting
14380 a particular tracepoint, you may inspect those objects as if they were
14381 in memory at that moment.  However, because @value{GDBN} records these
14382 values without interacting with you, it can do so quickly and
14383 unobtrusively, hopefully not disturbing the program's behavior.
14385 The tracepoint facility is currently available only for remote
14386 targets.  @xref{Targets}.  In addition, your remote target must know
14387 how to collect trace data.  This functionality is implemented in the
14388 remote stub; however, none of the stubs distributed with @value{GDBN}
14389 support tracepoints as of this writing.  The format of the remote
14390 packets used to implement tracepoints are described in @ref{Tracepoint
14391 Packets}.
14393 It is also possible to get trace data from a file, in a manner reminiscent
14394 of corefiles; you specify the filename, and use @code{tfind} to search
14395 through the file.  @xref{Trace Files}, for more details.
14397 This chapter describes the tracepoint commands and features.
14399 @menu
14400 * Set Tracepoints::
14401 * Analyze Collected Data::
14402 * Tracepoint Variables::
14403 * Trace Files::
14404 @end menu
14406 @node Set Tracepoints
14407 @section Commands to Set Tracepoints
14409 Before running such a @dfn{trace experiment}, an arbitrary number of
14410 tracepoints can be set.  A tracepoint is actually a special type of
14411 breakpoint (@pxref{Set Breaks}), so you can manipulate it using
14412 standard breakpoint commands.  For instance, as with breakpoints,
14413 tracepoint numbers are successive integers starting from one, and many
14414 of the commands associated with tracepoints take the tracepoint number
14415 as their argument, to identify which tracepoint to work on.
14417 For each tracepoint, you can specify, in advance, some arbitrary set
14418 of data that you want the target to collect in the trace buffer when
14419 it hits that tracepoint.  The collected data can include registers,
14420 local variables, or global data.  Later, you can use @value{GDBN}
14421 commands to examine the values these data had at the time the
14422 tracepoint was hit.
14424 Tracepoints do not support every breakpoint feature.  Ignore counts on
14425 tracepoints have no effect, and tracepoints cannot run @value{GDBN}
14426 commands when they are hit.  Tracepoints may not be thread-specific
14427 either.
14429 @cindex fast tracepoints
14430 Some targets may support @dfn{fast tracepoints}, which are inserted in
14431 a different way (such as with a jump instead of a trap), that is
14432 faster but possibly restricted in where they may be installed.
14434 @cindex static tracepoints
14435 @cindex markers, static tracepoints
14436 @cindex probing markers, static tracepoints
14437 Regular and fast tracepoints are dynamic tracing facilities, meaning
14438 that they can be used to insert tracepoints at (almost) any location
14439 in the target.  Some targets may also support controlling @dfn{static
14440 tracepoints} from @value{GDBN}.  With static tracing, a set of
14441 instrumentation points, also known as @dfn{markers}, are embedded in
14442 the target program, and can be activated or deactivated by name or
14443 address.  These are usually placed at locations which facilitate
14444 investigating what the target is actually doing.  @value{GDBN}'s
14445 support for static tracing includes being able to list instrumentation
14446 points, and attach them with @value{GDBN} defined high level
14447 tracepoints that expose the whole range of convenience of
14448 @value{GDBN}'s tracepoints support.  Namely, support for collecting
14449 registers values and values of global or local (to the instrumentation
14450 point) variables; tracepoint conditions and trace state variables.
14451 The act of installing a @value{GDBN} static tracepoint on an
14452 instrumentation point, or marker, is referred to as @dfn{probing} a
14453 static tracepoint marker.
14455 @code{gdbserver} supports tracepoints on some target systems.
14456 @xref{Server,,Tracepoints support in @code{gdbserver}}.
14458 This section describes commands to set tracepoints and associated
14459 conditions and actions.
14461 @menu
14462 * Create and Delete Tracepoints::
14463 * Enable and Disable Tracepoints::
14464 * Tracepoint Passcounts::
14465 * Tracepoint Conditions::
14466 * Trace State Variables::
14467 * Tracepoint Actions::
14468 * Listing Tracepoints::
14469 * Listing Static Tracepoint Markers::
14470 * Starting and Stopping Trace Experiments::
14471 * Tracepoint Restrictions::
14472 @end menu
14474 @node Create and Delete Tracepoints
14475 @subsection Create and Delete Tracepoints
14477 @table @code
14478 @cindex set tracepoint
14479 @kindex trace
14480 @item trace @var{location}
14481 The @code{trace} command is very similar to the @code{break} command.
14482 Its argument @var{location} can be any valid location.
14483 @xref{Specify Location}.  The @code{trace} command defines a tracepoint,
14484 which is a point in the target program where the debugger will briefly stop,
14485 collect some data, and then allow the program to continue.  Setting a tracepoint
14486 or changing its actions takes effect immediately if the remote stub
14487 supports the @samp{InstallInTrace} feature (@pxref{install tracepoint
14488 in tracing}).
14489 If remote stub doesn't support the @samp{InstallInTrace} feature, all
14490 these changes don't take effect until the next @code{tstart}
14491 command, and once a trace experiment is running, further changes will
14492 not have any effect until the next trace experiment starts.  In addition,
14493 @value{GDBN} supports @dfn{pending tracepoints}---tracepoints whose
14494 address is not yet resolved.  (This is similar to pending breakpoints.)
14495 Pending tracepoints are not downloaded to the target and not installed
14496 until they are resolved.  The resolution of pending tracepoints requires
14497 @value{GDBN} support---when debugging with the remote target, and
14498 @value{GDBN} disconnects from the remote stub (@pxref{disconnected
14499 tracing}), pending tracepoints can not be resolved (and downloaded to
14500 the remote stub) while @value{GDBN} is disconnected.
14502 Here are some examples of using the @code{trace} command:
14504 @smallexample
14505 (@value{GDBP}) @b{trace foo.c:121}    // a source file and line number
14507 (@value{GDBP}) @b{trace +2}           // 2 lines forward
14509 (@value{GDBP}) @b{trace my_function}  // first source line of function
14511 (@value{GDBP}) @b{trace *my_function} // EXACT start address of function
14513 (@value{GDBP}) @b{trace *0x2117c4}    // an address
14514 @end smallexample
14516 @noindent
14517 You can abbreviate @code{trace} as @code{tr}.
14519 @item trace @var{location} if @var{cond}
14520 Set a tracepoint with condition @var{cond}; evaluate the expression
14521 @var{cond} each time the tracepoint is reached, and collect data only
14522 if the value is nonzero---that is, if @var{cond} evaluates as true.
14523 @xref{Tracepoint Conditions, ,Tracepoint Conditions}, for more
14524 information on tracepoint conditions.
14526 @item ftrace @var{location} [ if @var{cond} ]
14527 @cindex set fast tracepoint
14528 @cindex fast tracepoints, setting
14529 @kindex ftrace
14530 The @code{ftrace} command sets a fast tracepoint.  For targets that
14531 support them, fast tracepoints will use a more efficient but possibly
14532 less general technique to trigger data collection, such as a jump
14533 instruction instead of a trap, or some sort of hardware support.  It
14534 may not be possible to create a fast tracepoint at the desired
14535 location, in which case the command will exit with an explanatory
14536 message.
14538 @value{GDBN} handles arguments to @code{ftrace} exactly as for
14539 @code{trace}.
14541 On 32-bit x86-architecture systems, fast tracepoints normally need to
14542 be placed at an instruction that is 5 bytes or longer, but can be
14543 placed at 4-byte instructions if the low 64K of memory of the target
14544 program is available to install trampolines.  Some Unix-type systems,
14545 such as @sc{gnu}/Linux, exclude low addresses from the program's
14546 address space; but for instance with the Linux kernel it is possible
14547 to let @value{GDBN} use this area by doing a @command{sysctl} command
14548 to set the @code{mmap_min_addr} kernel parameter, as in
14550 @example
14551 sudo sysctl -w vm.mmap_min_addr=32768
14552 @end example
14554 @noindent
14555 which sets the low address to 32K, which leaves plenty of room for
14556 trampolines.  The minimum address should be set to a page boundary.
14558 @item strace @var{location} [ if @var{cond} ]
14559 @cindex set static tracepoint
14560 @cindex static tracepoints, setting
14561 @cindex probe static tracepoint marker
14562 @kindex strace
14563 The @code{strace} command sets a static tracepoint.  For targets that
14564 support it, setting a static tracepoint probes a static
14565 instrumentation point, or marker, found at @var{location}.  It may not
14566 be possible to set a static tracepoint at the desired location, in
14567 which case the command will exit with an explanatory message.
14569 @value{GDBN} handles arguments to @code{strace} exactly as for
14570 @code{trace}, with the addition that the user can also specify
14571 @code{-m @var{marker}} as @var{location}.  This probes the marker
14572 identified by the @var{marker} string identifier.  This identifier
14573 depends on the static tracepoint backend library your program is
14574 using.  You can find all the marker identifiers in the @samp{ID} field
14575 of the @code{info static-tracepoint-markers} command output.
14576 @xref{Listing Static Tracepoint Markers,,Listing Static Tracepoint
14577 Markers}.  For example, in the following small program using the UST
14578 tracing engine:
14580 @smallexample
14581 main ()
14583   trace_mark(ust, bar33, "str %s", "FOOBAZ");
14585 @end smallexample
14587 @noindent
14588 the marker id is composed of joining the first two arguments to the
14589 @code{trace_mark} call with a slash, which translates to:
14591 @smallexample
14592 (@value{GDBP}) info static-tracepoint-markers
14593 Cnt Enb ID         Address            What
14594 1   n   ust/bar33  0x0000000000400ddc in main at stexample.c:22
14595          Data: "str %s"
14596 [etc...]
14597 @end smallexample
14599 @noindent
14600 so you may probe the marker above with:
14602 @smallexample
14603 (@value{GDBP}) strace -m ust/bar33
14604 @end smallexample
14606 Static tracepoints accept an extra collect action --- @code{collect
14607 $_sdata}.  This collects arbitrary user data passed in the probe point
14608 call to the tracing library.  In the UST example above, you'll see
14609 that the third argument to @code{trace_mark} is a printf-like format
14610 string.  The user data is then the result of running that formatting
14611 string against the following arguments.  Note that @code{info
14612 static-tracepoint-markers} command output lists that format string in
14613 the @samp{Data:} field.
14615 You can inspect this data when analyzing the trace buffer, by printing
14616 the $_sdata variable like any other variable available to
14617 @value{GDBN}.  @xref{Tracepoint Actions,,Tracepoint Action Lists}.
14619 @vindex $tpnum
14620 @cindex last tracepoint number
14621 @cindex recent tracepoint number
14622 @cindex tracepoint number
14623 The convenience variable @code{$tpnum} records the tracepoint number
14624 of the most recently set tracepoint.
14626 @kindex delete tracepoint
14627 @cindex tracepoint deletion
14628 @item delete tracepoint @r{[}@var{num}@r{]}
14629 Permanently delete one or more tracepoints.  With no argument, the
14630 default is to delete all tracepoints.  Note that the regular
14631 @code{delete} command can remove tracepoints also.
14633 Examples:
14635 @smallexample
14636 (@value{GDBP}) @b{delete trace 1 2 3} // remove three tracepoints
14638 (@value{GDBP}) @b{delete trace}       // remove all tracepoints
14639 @end smallexample
14641 @noindent
14642 You can abbreviate this command as @code{del tr}.
14643 @end table
14645 @node Enable and Disable Tracepoints
14646 @subsection Enable and Disable Tracepoints
14648 These commands are deprecated; they are equivalent to plain @code{disable} and @code{enable}.
14650 @table @code
14651 @kindex disable tracepoint
14652 @item disable tracepoint @r{[}@var{num}@r{]}
14653 Disable tracepoint @var{num}, or all tracepoints if no argument
14654 @var{num} is given.  A disabled tracepoint will have no effect during
14655 a trace experiment, but it is not forgotten.  You can re-enable
14656 a disabled tracepoint using the @code{enable tracepoint} command.
14657 If the command is issued during a trace experiment and the debug target
14658 has support for disabling tracepoints during a trace experiment, then the
14659 change will be effective immediately.  Otherwise, it will be applied to the
14660 next trace experiment.
14662 @kindex enable tracepoint
14663 @item enable tracepoint @r{[}@var{num}@r{]}
14664 Enable tracepoint @var{num}, or all tracepoints.  If this command is
14665 issued during a trace experiment and the debug target supports enabling
14666 tracepoints during a trace experiment, then the enabled tracepoints will
14667 become effective immediately.  Otherwise, they will become effective the
14668 next time a trace experiment is run.
14669 @end table
14671 @node Tracepoint Passcounts
14672 @subsection Tracepoint Passcounts
14674 @table @code
14675 @kindex passcount
14676 @cindex tracepoint pass count
14677 @item passcount @r{[}@var{n} @r{[}@var{num}@r{]]}
14678 Set the @dfn{passcount} of a tracepoint.  The passcount is a way to
14679 automatically stop a trace experiment.  If a tracepoint's passcount is
14680 @var{n}, then the trace experiment will be automatically stopped on
14681 the @var{n}'th time that tracepoint is hit.  If the tracepoint number
14682 @var{num} is not specified, the @code{passcount} command sets the
14683 passcount of the most recently defined tracepoint.  If no passcount is
14684 given, the trace experiment will run until stopped explicitly by the
14685 user.
14687 Examples:
14689 @smallexample
14690 (@value{GDBP}) @b{passcount 5 2} // Stop on the 5th execution of
14691 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// tracepoint 2}
14693 (@value{GDBP}) @b{passcount 12}  // Stop on the 12th execution of the
14694 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// most recently defined tracepoint.}
14695 (@value{GDBP}) @b{trace foo}
14696 (@value{GDBP}) @b{pass 3}
14697 (@value{GDBP}) @b{trace bar}
14698 (@value{GDBP}) @b{pass 2}
14699 (@value{GDBP}) @b{trace baz}
14700 (@value{GDBP}) @b{pass 1}        // Stop tracing when foo has been
14701 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// executed 3 times OR when bar has}
14702 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// been executed 2 times}
14703 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// OR when baz has been executed 1 time.}
14704 @end smallexample
14705 @end table
14707 @node Tracepoint Conditions
14708 @subsection Tracepoint Conditions
14709 @cindex conditional tracepoints
14710 @cindex tracepoint conditions
14712 The simplest sort of tracepoint collects data every time your program
14713 reaches a specified place.  You can also specify a @dfn{condition} for
14714 a tracepoint.  A condition is just a Boolean expression in your
14715 programming language (@pxref{Expressions, ,Expressions}).  A
14716 tracepoint with a condition evaluates the expression each time your
14717 program reaches it, and data collection happens only if the condition
14718 is true.
14720 Tracepoint conditions can be specified when a tracepoint is set, by
14721 using @samp{if} in the arguments to the @code{trace} command.
14722 @xref{Create and Delete Tracepoints, ,Setting Tracepoints}.  They can
14723 also be set or changed at any time with the @code{condition} command,
14724 just as with breakpoints.
14726 Unlike breakpoint conditions, @value{GDBN} does not actually evaluate
14727 the conditional expression itself.  Instead, @value{GDBN} encodes the
14728 expression into an agent expression (@pxref{Agent Expressions})
14729 suitable for execution on the target, independently of @value{GDBN}.
14730 Global variables become raw memory locations, locals become stack
14731 accesses, and so forth.
14733 For instance, suppose you have a function that is usually called
14734 frequently, but should not be called after an error has occurred.  You
14735 could use the following tracepoint command to collect data about calls
14736 of that function that happen while the error code is propagating
14737 through the program; an unconditional tracepoint could end up
14738 collecting thousands of useless trace frames that you would have to
14739 search through.
14741 @smallexample
14742 (@value{GDBP}) @kbd{trace normal_operation if errcode > 0}
14743 @end smallexample
14745 @node Trace State Variables
14746 @subsection Trace State Variables
14747 @cindex trace state variables
14749 A @dfn{trace state variable} is a special type of variable that is
14750 created and managed by target-side code.  The syntax is the same as
14751 that for GDB's convenience variables (a string prefixed with ``$''),
14752 but they are stored on the target.  They must be created explicitly,
14753 using a @code{tvariable} command.  They are always 64-bit signed
14754 integers.
14756 Trace state variables are remembered by @value{GDBN}, and downloaded
14757 to the target along with tracepoint information when the trace
14758 experiment starts.  There are no intrinsic limits on the number of
14759 trace state variables, beyond memory limitations of the target.
14761 @cindex convenience variables, and trace state variables
14762 Although trace state variables are managed by the target, you can use
14763 them in print commands and expressions as if they were convenience
14764 variables; @value{GDBN} will get the current value from the target
14765 while the trace experiment is running.  Trace state variables share
14766 the same namespace as other ``$'' variables, which means that you
14767 cannot have trace state variables with names like @code{$23} or
14768 @code{$pc}, nor can you have a trace state variable and a convenience
14769 variable with the same name.
14771 @table @code
14773 @item tvariable $@var{name} [ = @var{expression} ]
14774 @kindex tvariable
14775 The @code{tvariable} command creates a new trace state variable named
14776 @code{$@var{name}}, and optionally gives it an initial value of
14777 @var{expression}.  The @var{expression} is evaluated when this command is
14778 entered; the result will be converted to an integer if possible,
14779 otherwise @value{GDBN} will report an error. A subsequent
14780 @code{tvariable} command specifying the same name does not create a
14781 variable, but instead assigns the supplied initial value to the
14782 existing variable of that name, overwriting any previous initial
14783 value. The default initial value is 0.
14785 @item info tvariables
14786 @kindex info tvariables
14787 List all the trace state variables along with their initial values.
14788 Their current values may also be displayed, if the trace experiment is
14789 currently running.
14791 @item delete tvariable @r{[} $@var{name} @dots{} @r{]}
14792 @kindex delete tvariable
14793 Delete the given trace state variables, or all of them if no arguments
14794 are specified.
14796 @end table
14798 @node Tracepoint Actions
14799 @subsection Tracepoint Action Lists
14801 @table @code
14802 @kindex actions
14803 @cindex tracepoint actions
14804 @item actions @r{[}@var{num}@r{]}
14805 This command will prompt for a list of actions to be taken when the
14806 tracepoint is hit.  If the tracepoint number @var{num} is not
14807 specified, this command sets the actions for the one that was most
14808 recently defined (so that you can define a tracepoint and then say
14809 @code{actions} without bothering about its number).  You specify the
14810 actions themselves on the following lines, one action at a time, and
14811 terminate the actions list with a line containing just @code{end}.  So
14812 far, the only defined actions are @code{collect}, @code{teval}, and
14813 @code{while-stepping}.
14815 @code{actions} is actually equivalent to @code{commands} (@pxref{Break
14816 Commands, ,Breakpoint Command Lists}), except that only the defined
14817 actions are allowed; any other @value{GDBN} command is rejected.
14819 @cindex remove actions from a tracepoint
14820 To remove all actions from a tracepoint, type @samp{actions @var{num}}
14821 and follow it immediately with @samp{end}.
14823 @smallexample
14824 (@value{GDBP}) @b{collect @var{data}} // collect some data
14826 (@value{GDBP}) @b{while-stepping 5} // single-step 5 times, collect data
14828 (@value{GDBP}) @b{end}              // signals the end of actions.
14829 @end smallexample
14831 In the following example, the action list begins with @code{collect}
14832 commands indicating the things to be collected when the tracepoint is
14833 hit.  Then, in order to single-step and collect additional data
14834 following the tracepoint, a @code{while-stepping} command is used,
14835 followed by the list of things to be collected after each step in a
14836 sequence of single steps.  The @code{while-stepping} command is
14837 terminated by its own separate @code{end} command.  Lastly, the action
14838 list is terminated by an @code{end} command.
14840 @smallexample
14841 (@value{GDBP}) @b{trace foo}
14842 (@value{GDBP}) @b{actions}
14843 Enter actions for tracepoint 1, one per line:
14844 > collect bar,baz
14845 > collect $regs
14846 > while-stepping 12
14847   > collect $pc, arr[i]
14848   > end
14850 @end smallexample
14852 @kindex collect @r{(tracepoints)}
14853 @item collect@r{[}/@var{mods}@r{]} @var{expr1}, @var{expr2}, @dots{}
14854 Collect values of the given expressions when the tracepoint is hit.
14855 This command accepts a comma-separated list of any valid expressions.
14856 In addition to global, static, or local variables, the following
14857 special arguments are supported:
14859 @table @code
14860 @item $regs
14861 Collect all registers.
14863 @item $args
14864 Collect all function arguments.
14866 @item $locals
14867 Collect all local variables.
14869 @item $_ret
14870 Collect the return address.  This is helpful if you want to see more
14871 of a backtrace.
14873 @emph{Note:} The return address location can not always be reliably
14874 determined up front, and the wrong address / registers may end up
14875 collected instead.  On some architectures the reliability is higher
14876 for tracepoints at function entry, while on others it's the opposite.
14877 When this happens, backtracing will stop because the return address is
14878 found unavailable (unless another collect rule happened to match it).
14880 @item $_probe_argc
14881 Collects the number of arguments from the static probe at which the
14882 tracepoint is located.
14883 @xref{Static Probe Points}.
14885 @item $_probe_arg@var{n}
14886 @var{n} is an integer between 0 and 11.  Collects the @var{n}th argument
14887 from the static probe at which the tracepoint is located.
14888 @xref{Static Probe Points}.
14890 @item $_sdata
14891 @vindex $_sdata@r{, collect}
14892 Collect static tracepoint marker specific data.  Only available for
14893 static tracepoints.  @xref{Tracepoint Actions,,Tracepoint Action
14894 Lists}.  On the UST static tracepoints library backend, an
14895 instrumentation point resembles a @code{printf} function call.  The
14896 tracing library is able to collect user specified data formatted to a
14897 character string using the format provided by the programmer that
14898 instrumented the program.  Other backends have similar mechanisms.
14899 Here's an example of a UST marker call:
14901 @smallexample
14902  const char master_name[] = "$your_name";
14903  trace_mark(channel1, marker1, "hello %s", master_name)
14904 @end smallexample
14906 In this case, collecting @code{$_sdata} collects the string
14907 @samp{hello $yourname}.  When analyzing the trace buffer, you can
14908 inspect @samp{$_sdata} like any other variable available to
14909 @value{GDBN}.
14910 @end table
14912 You can give several consecutive @code{collect} commands, each one
14913 with a single argument, or one @code{collect} command with several
14914 arguments separated by commas; the effect is the same.
14916 The optional @var{mods} changes the usual handling of the arguments.
14917 @code{s} requests that pointers to chars be handled as strings, in
14918 particular collecting the contents of the memory being pointed at, up
14919 to the first zero.  The upper bound is by default the value of the
14920 @code{print elements} variable; if @code{s} is followed by a decimal
14921 number, that is the upper bound instead.  So for instance
14922 @samp{collect/s25 mystr} collects as many as 25 characters at
14923 @samp{mystr}.
14925 The command @code{info scope} (@pxref{Symbols, info scope}) is
14926 particularly useful for figuring out what data to collect.
14928 @kindex teval @r{(tracepoints)}
14929 @item teval @var{expr1}, @var{expr2}, @dots{}
14930 Evaluate the given expressions when the tracepoint is hit.  This
14931 command accepts a comma-separated list of expressions.  The results
14932 are discarded, so this is mainly useful for assigning values to trace
14933 state variables (@pxref{Trace State Variables}) without adding those
14934 values to the trace buffer, as would be the case if the @code{collect}
14935 action were used.
14937 @kindex while-stepping @r{(tracepoints)}
14938 @item while-stepping @var{n}
14939 Perform @var{n} single-step instruction traces after the tracepoint,
14940 collecting new data after each step.  The @code{while-stepping}
14941 command is followed by the list of what to collect while stepping
14942 (followed by its own @code{end} command):
14944 @smallexample
14945 > while-stepping 12
14946   > collect $regs, myglobal
14947   > end
14949 @end smallexample
14951 @noindent
14952 Note that @code{$pc} is not automatically collected by
14953 @code{while-stepping}; you need to explicitly collect that register if
14954 you need it.  You may abbreviate @code{while-stepping} as @code{ws} or
14955 @code{stepping}.
14957 @item set default-collect @var{expr1}, @var{expr2}, @dots{}
14958 @kindex set default-collect
14959 @cindex default collection action
14960 This variable is a list of expressions to collect at each tracepoint
14961 hit.  It is effectively an additional @code{collect} action prepended
14962 to every tracepoint action list.  The expressions are parsed
14963 individually for each tracepoint, so for instance a variable named
14964 @code{xyz} may be interpreted as a global for one tracepoint, and a
14965 local for another, as appropriate to the tracepoint's location.
14967 @item show default-collect
14968 @kindex show default-collect
14969 Show the list of expressions that are collected by default at each
14970 tracepoint hit.
14972 @end table
14974 @node Listing Tracepoints
14975 @subsection Listing Tracepoints
14977 @table @code
14978 @kindex info tracepoints @r{[}@var{n}@dots{}@r{]}
14979 @kindex info tp @r{[}@var{n}@dots{}@r{]}
14980 @cindex information about tracepoints
14981 @item info tracepoints @r{[}@var{num}@dots{}@r{]}
14982 Display information about the tracepoint @var{num}.  If you don't
14983 specify a tracepoint number, displays information about all the
14984 tracepoints defined so far.  The format is similar to that used for
14985 @code{info breakpoints}; in fact, @code{info tracepoints} is the same
14986 command, simply restricting itself to tracepoints.
14988 A tracepoint's listing may include additional information specific to
14989 tracing:
14991 @itemize @bullet
14992 @item
14993 its passcount as given by the @code{passcount @var{n}} command
14995 @item
14996 the state about installed on target of each location
14997 @end itemize
14999 @smallexample
15000 (@value{GDBP}) @b{info trace}
15001 Num     Type           Disp Enb Address    What
15002 1       tracepoint     keep y   0x0804ab57 in foo() at main.cxx:7
15003         while-stepping 20
15004           collect globfoo, $regs
15005         end
15006         collect globfoo2
15007         end
15008         pass count 1200 
15009 2       tracepoint     keep y   <MULTIPLE>
15010         collect $eip
15011 2.1                         y     0x0804859c in func4 at change-loc.h:35
15012         installed on target
15013 2.2                         y     0xb7ffc480 in func4 at change-loc.h:35
15014         installed on target
15015 2.3                         y     <PENDING>  set_tracepoint
15016 3       tracepoint     keep y   0x080485b1 in foo at change-loc.c:29
15017         not installed on target
15018 (@value{GDBP})
15019 @end smallexample
15021 @noindent
15022 This command can be abbreviated @code{info tp}.
15023 @end table
15025 @node Listing Static Tracepoint Markers
15026 @subsection Listing Static Tracepoint Markers
15028 @table @code
15029 @kindex info static-tracepoint-markers
15030 @cindex information about static tracepoint markers
15031 @item info static-tracepoint-markers
15032 Display information about all static tracepoint markers defined in the
15033 program.
15035 For each marker, the following columns are printed:
15037 @table @emph
15038 @item Count
15039 An incrementing counter, output to help readability.  This is not a
15040 stable identifier.
15041 @item ID
15042 The marker ID, as reported by the target.
15043 @item Enabled or Disabled
15044 Probed markers are tagged with @samp{y}.  @samp{n} identifies marks
15045 that are not enabled.
15046 @item Address
15047 Where the marker is in your program, as a memory address.
15048 @item What
15049 Where the marker is in the source for your program, as a file and line
15050 number.  If the debug information included in the program does not
15051 allow @value{GDBN} to locate the source of the marker, this column
15052 will be left blank.
15053 @end table
15055 @noindent
15056 In addition, the following information may be printed for each marker:
15058 @table @emph
15059 @item Data
15060 User data passed to the tracing library by the marker call.  In the
15061 UST backend, this is the format string passed as argument to the
15062 marker call.
15063 @item Static tracepoints probing the marker
15064 The list of static tracepoints attached to the marker.
15065 @end table
15067 @smallexample
15068 (@value{GDBP}) info static-tracepoint-markers
15069 Cnt ID         Enb Address            What
15070 1   ust/bar2   y   0x0000000000400e1a in main at stexample.c:25
15071      Data: number1 %d number2 %d
15072      Probed by static tracepoints: #2
15073 2   ust/bar33  n   0x0000000000400c87 in main at stexample.c:24
15074      Data: str %s
15075 (@value{GDBP})
15076 @end smallexample
15077 @end table
15079 @node Starting and Stopping Trace Experiments
15080 @subsection Starting and Stopping Trace Experiments
15082 @table @code
15083 @kindex tstart [ @var{notes} ]
15084 @cindex start a new trace experiment
15085 @cindex collected data discarded
15086 @item tstart
15087 This command starts the trace experiment, and begins collecting data.
15088 It has the side effect of discarding all the data collected in the
15089 trace buffer during the previous trace experiment.  If any arguments
15090 are supplied, they are taken as a note and stored with the trace
15091 experiment's state.  The notes may be arbitrary text, and are
15092 especially useful with disconnected tracing in a multi-user context;
15093 the notes can explain what the trace is doing, supply user contact
15094 information, and so forth.
15096 @kindex tstop [ @var{notes} ]
15097 @cindex stop a running trace experiment
15098 @item tstop
15099 This command stops the trace experiment.  If any arguments are
15100 supplied, they are recorded with the experiment as a note.  This is
15101 useful if you are stopping a trace started by someone else, for
15102 instance if the trace is interfering with the system's behavior and
15103 needs to be stopped quickly.
15105 @strong{Note}: a trace experiment and data collection may stop
15106 automatically if any tracepoint's passcount is reached
15107 (@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
15109 @kindex tstatus
15110 @cindex status of trace data collection
15111 @cindex trace experiment, status of
15112 @item tstatus
15113 This command displays the status of the current trace data
15114 collection.
15115 @end table
15117 Here is an example of the commands we described so far:
15119 @smallexample
15120 (@value{GDBP}) @b{trace gdb_c_test}
15121 (@value{GDBP}) @b{actions}
15122 Enter actions for tracepoint #1, one per line.
15123 > collect $regs,$locals,$args
15124 > while-stepping 11
15125   > collect $regs
15126   > end
15127 > end
15128 (@value{GDBP}) @b{tstart}
15129         [time passes @dots{}]
15130 (@value{GDBP}) @b{tstop}
15131 @end smallexample
15133 @anchor{disconnected tracing}
15134 @cindex disconnected tracing
15135 You can choose to continue running the trace experiment even if
15136 @value{GDBN} disconnects from the target, voluntarily or
15137 involuntarily.  For commands such as @code{detach}, the debugger will
15138 ask what you want to do with the trace.  But for unexpected
15139 terminations (@value{GDBN} crash, network outage), it would be
15140 unfortunate to lose hard-won trace data, so the variable
15141 @code{disconnected-tracing} lets you decide whether the trace should
15142 continue running without @value{GDBN}.
15144 @table @code
15145 @item set disconnected-tracing on
15146 @itemx set disconnected-tracing off
15147 @kindex set disconnected-tracing
15148 Choose whether a tracing run should continue to run if @value{GDBN}
15149 has disconnected from the target.  Note that @code{detach} or
15150 @code{quit} will ask you directly what to do about a running trace no
15151 matter what this variable's setting, so the variable is mainly useful
15152 for handling unexpected situations, such as loss of the network.
15154 @item show disconnected-tracing
15155 @kindex show disconnected-tracing
15156 Show the current choice for disconnected tracing.
15158 @end table
15160 When you reconnect to the target, the trace experiment may or may not
15161 still be running; it might have filled the trace buffer in the
15162 meantime, or stopped for one of the other reasons.  If it is running,
15163 it will continue after reconnection.
15165 Upon reconnection, the target will upload information about the
15166 tracepoints in effect.  @value{GDBN} will then compare that
15167 information to the set of tracepoints currently defined, and attempt
15168 to match them up, allowing for the possibility that the numbers may
15169 have changed due to creation and deletion in the meantime.  If one of
15170 the target's tracepoints does not match any in @value{GDBN}, the
15171 debugger will create a new tracepoint, so that you have a number with
15172 which to specify that tracepoint.  This matching-up process is
15173 necessarily heuristic, and it may result in useless tracepoints being
15174 created; you may simply delete them if they are of no use.
15176 @cindex circular trace buffer
15177 If your target agent supports a @dfn{circular trace buffer}, then you
15178 can run a trace experiment indefinitely without filling the trace
15179 buffer; when space runs out, the agent deletes already-collected trace
15180 frames, oldest first, until there is enough room to continue
15181 collecting.  This is especially useful if your tracepoints are being
15182 hit too often, and your trace gets terminated prematurely because the
15183 buffer is full.  To ask for a circular trace buffer, simply set
15184 @samp{circular-trace-buffer} to on.  You can set this at any time,
15185 including during tracing; if the agent can do it, it will change
15186 buffer handling on the fly, otherwise it will not take effect until
15187 the next run.
15189 @table @code
15190 @item set circular-trace-buffer on
15191 @itemx set circular-trace-buffer off
15192 @kindex set circular-trace-buffer
15193 Choose whether a tracing run should use a linear or circular buffer
15194 for trace data.  A linear buffer will not lose any trace data, but may
15195 fill up prematurely, while a circular buffer will discard old trace
15196 data, but it will have always room for the latest tracepoint hits.
15198 @item show circular-trace-buffer
15199 @kindex show circular-trace-buffer
15200 Show the current choice for the trace buffer.  Note that this may not
15201 match the agent's current buffer handling, nor is it guaranteed to
15202 match the setting that might have been in effect during a past run,
15203 for instance if you are looking at frames from a trace file.
15205 @end table
15207 @table @code
15208 @item set trace-buffer-size @var{n}
15209 @itemx set trace-buffer-size unlimited
15210 @kindex set trace-buffer-size
15211 Request that the target use a trace buffer of @var{n} bytes.  Not all
15212 targets will honor the request; they may have a compiled-in size for
15213 the trace buffer, or some other limitation.  Set to a value of
15214 @code{unlimited} or @code{-1} to let the target use whatever size it
15215 likes.  This is also the default.
15217 @item show trace-buffer-size
15218 @kindex show trace-buffer-size
15219 Show the current requested size for the trace buffer.  Note that this
15220 will only match the actual size if the target supports size-setting,
15221 and was able to handle the requested size.  For instance, if the
15222 target can only change buffer size between runs, this variable will
15223 not reflect the change until the next run starts.  Use @code{tstatus}
15224 to get a report of the actual buffer size.
15225 @end table
15227 @table @code
15228 @item set trace-user @var{text}
15229 @kindex set trace-user
15231 @item show trace-user
15232 @kindex show trace-user
15234 @item set trace-notes @var{text}
15235 @kindex set trace-notes
15236 Set the trace run's notes.
15238 @item show trace-notes
15239 @kindex show trace-notes
15240 Show the trace run's notes.
15242 @item set trace-stop-notes @var{text}
15243 @kindex set trace-stop-notes
15244 Set the trace run's stop notes.  The handling of the note is as for
15245 @code{tstop} arguments; the set command is convenient way to fix a
15246 stop note that is mistaken or incomplete.
15248 @item show trace-stop-notes
15249 @kindex show trace-stop-notes
15250 Show the trace run's stop notes.
15252 @end table
15254 @node Tracepoint Restrictions
15255 @subsection Tracepoint Restrictions
15257 @cindex tracepoint restrictions
15258 There are a number of restrictions on the use of tracepoints.  As
15259 described above, tracepoint data gathering occurs on the target
15260 without interaction from @value{GDBN}.  Thus the full capabilities of
15261 the debugger are not available during data gathering, and then at data
15262 examination time, you will be limited by only having what was
15263 collected.  The following items describe some common problems, but it
15264 is not exhaustive, and you may run into additional difficulties not
15265 mentioned here.
15267 @itemize @bullet
15269 @item
15270 Tracepoint expressions are intended to gather objects (lvalues).  Thus
15271 the full flexibility of GDB's expression evaluator is not available.
15272 You cannot call functions, cast objects to aggregate types, access
15273 convenience variables or modify values (except by assignment to trace
15274 state variables).  Some language features may implicitly call
15275 functions (for instance Objective-C fields with accessors), and therefore
15276 cannot be collected either.
15278 @item
15279 Collection of local variables, either individually or in bulk with
15280 @code{$locals} or @code{$args}, during @code{while-stepping} may
15281 behave erratically.  The stepping action may enter a new scope (for
15282 instance by stepping into a function), or the location of the variable
15283 may change (for instance it is loaded into a register).  The
15284 tracepoint data recorded uses the location information for the
15285 variables that is correct for the tracepoint location.  When the
15286 tracepoint is created, it is not possible, in general, to determine
15287 where the steps of a @code{while-stepping} sequence will advance the
15288 program---particularly if a conditional branch is stepped.
15290 @item
15291 Collection of an incompletely-initialized or partially-destroyed object
15292 may result in something that @value{GDBN} cannot display, or displays
15293 in a misleading way.
15295 @item
15296 When @value{GDBN} displays a pointer to character it automatically
15297 dereferences the pointer to also display characters of the string
15298 being pointed to.  However, collecting the pointer during tracing does
15299 not automatically collect the string.  You need to explicitly
15300 dereference the pointer and provide size information if you want to
15301 collect not only the pointer, but the memory pointed to.  For example,
15302 @code{*ptr@@50} can be used to collect the 50 element array pointed to
15303 by @code{ptr}.
15305 @item
15306 It is not possible to collect a complete stack backtrace at a
15307 tracepoint.  Instead, you may collect the registers and a few hundred
15308 bytes from the stack pointer with something like @code{*(unsigned char *)$esp@@300}
15309 (adjust to use the name of the actual stack pointer register on your
15310 target architecture, and the amount of stack you wish to capture).
15311 Then the @code{backtrace} command will show a partial backtrace when
15312 using a trace frame.  The number of stack frames that can be examined
15313 depends on the sizes of the frames in the collected stack.  Note that
15314 if you ask for a block so large that it goes past the bottom of the
15315 stack, the target agent may report an error trying to read from an
15316 invalid address.
15318 @item
15319 If you do not collect registers at a tracepoint, @value{GDBN} can
15320 infer that the value of @code{$pc} must be the same as the address of
15321 the tracepoint and use that when you are looking at a trace frame
15322 for that tracepoint.  However, this cannot work if the tracepoint has
15323 multiple locations (for instance if it was set in a function that was
15324 inlined), or if it has a @code{while-stepping} loop.  In those cases
15325 @value{GDBN} will warn you that it can't infer @code{$pc}, and default
15326 it to zero.
15328 @end itemize
15330 @node Analyze Collected Data
15331 @section Using the Collected Data
15333 After the tracepoint experiment ends, you use @value{GDBN} commands
15334 for examining the trace data.  The basic idea is that each tracepoint
15335 collects a trace @dfn{snapshot} every time it is hit and another
15336 snapshot every time it single-steps.  All these snapshots are
15337 consecutively numbered from zero and go into a buffer, and you can
15338 examine them later.  The way you examine them is to @dfn{focus} on a
15339 specific trace snapshot.  When the remote stub is focused on a trace
15340 snapshot, it will respond to all @value{GDBN} requests for memory and
15341 registers by reading from the buffer which belongs to that snapshot,
15342 rather than from @emph{real} memory or registers of the program being
15343 debugged.  This means that @strong{all} @value{GDBN} commands
15344 (@code{print}, @code{info registers}, @code{backtrace}, etc.) will
15345 behave as if we were currently debugging the program state as it was
15346 when the tracepoint occurred.  Any requests for data that are not in
15347 the buffer will fail.
15349 @menu
15350 * tfind::                       How to select a trace snapshot
15351 * tdump::                       How to display all data for a snapshot
15352 * save tracepoints::            How to save tracepoints for a future run
15353 @end menu
15355 @node tfind
15356 @subsection @code{tfind @var{n}}
15358 @kindex tfind
15359 @cindex select trace snapshot
15360 @cindex find trace snapshot
15361 The basic command for selecting a trace snapshot from the buffer is
15362 @code{tfind @var{n}}, which finds trace snapshot number @var{n},
15363 counting from zero.  If no argument @var{n} is given, the next
15364 snapshot is selected.
15366 Here are the various forms of using the @code{tfind} command.
15368 @table @code
15369 @item tfind start
15370 Find the first snapshot in the buffer.  This is a synonym for
15371 @code{tfind 0} (since 0 is the number of the first snapshot).
15373 @item tfind none
15374 Stop debugging trace snapshots, resume @emph{live} debugging.
15376 @item tfind end
15377 Same as @samp{tfind none}.
15379 @item tfind
15380 No argument means find the next trace snapshot or find the first
15381 one if no trace snapshot is selected.
15383 @item tfind -
15384 Find the previous trace snapshot before the current one.  This permits
15385 retracing earlier steps.
15387 @item tfind tracepoint @var{num}
15388 Find the next snapshot associated with tracepoint @var{num}.  Search
15389 proceeds forward from the last examined trace snapshot.  If no
15390 argument @var{num} is given, it means find the next snapshot collected
15391 for the same tracepoint as the current snapshot.
15393 @item tfind pc @var{addr}
15394 Find the next snapshot associated with the value @var{addr} of the
15395 program counter.  Search proceeds forward from the last examined trace
15396 snapshot.  If no argument @var{addr} is given, it means find the next
15397 snapshot with the same value of PC as the current snapshot.
15399 @item tfind outside @var{addr1}, @var{addr2}
15400 Find the next snapshot whose PC is outside the given range of
15401 addresses (exclusive).
15403 @item tfind range @var{addr1}, @var{addr2}
15404 Find the next snapshot whose PC is between @var{addr1} and
15405 @var{addr2} (inclusive).
15407 @item tfind line @r{[}@var{file}:@r{]}@var{n}
15408 Find the next snapshot associated with the source line @var{n}.  If
15409 the optional argument @var{file} is given, refer to line @var{n} in
15410 that source file.  Search proceeds forward from the last examined
15411 trace snapshot.  If no argument @var{n} is given, it means find the
15412 next line other than the one currently being examined; thus saying
15413 @code{tfind line} repeatedly can appear to have the same effect as
15414 stepping from line to line in a @emph{live} debugging session.
15415 @end table
15417 The default arguments for the @code{tfind} commands are specifically
15418 designed to make it easy to scan through the trace buffer.  For
15419 instance, @code{tfind} with no argument selects the next trace
15420 snapshot, and @code{tfind -} with no argument selects the previous
15421 trace snapshot.  So, by giving one @code{tfind} command, and then
15422 simply hitting @key{RET} repeatedly you can examine all the trace
15423 snapshots in order.  Or, by saying @code{tfind -} and then hitting
15424 @key{RET} repeatedly you can examine the snapshots in reverse order.
15425 The @code{tfind line} command with no argument selects the snapshot
15426 for the next source line executed.  The @code{tfind pc} command with
15427 no argument selects the next snapshot with the same program counter
15428 (PC) as the current frame.  The @code{tfind tracepoint} command with
15429 no argument selects the next trace snapshot collected by the same
15430 tracepoint as the current one.
15432 In addition to letting you scan through the trace buffer manually,
15433 these commands make it easy to construct @value{GDBN} scripts that
15434 scan through the trace buffer and print out whatever collected data
15435 you are interested in.  Thus, if we want to examine the PC, FP, and SP
15436 registers from each trace frame in the buffer, we can say this:
15438 @smallexample
15439 (@value{GDBP}) @b{tfind start}
15440 (@value{GDBP}) @b{while ($trace_frame != -1)}
15441 > printf "Frame %d, PC = %08X, SP = %08X, FP = %08X\n", \
15442           $trace_frame, $pc, $sp, $fp
15443 > tfind
15444 > end
15446 Frame 0, PC = 0020DC64, SP = 0030BF3C, FP = 0030BF44
15447 Frame 1, PC = 0020DC6C, SP = 0030BF38, FP = 0030BF44
15448 Frame 2, PC = 0020DC70, SP = 0030BF34, FP = 0030BF44
15449 Frame 3, PC = 0020DC74, SP = 0030BF30, FP = 0030BF44
15450 Frame 4, PC = 0020DC78, SP = 0030BF2C, FP = 0030BF44
15451 Frame 5, PC = 0020DC7C, SP = 0030BF28, FP = 0030BF44
15452 Frame 6, PC = 0020DC80, SP = 0030BF24, FP = 0030BF44
15453 Frame 7, PC = 0020DC84, SP = 0030BF20, FP = 0030BF44
15454 Frame 8, PC = 0020DC88, SP = 0030BF1C, FP = 0030BF44
15455 Frame 9, PC = 0020DC8E, SP = 0030BF18, FP = 0030BF44
15456 Frame 10, PC = 00203F6C, SP = 0030BE3C, FP = 0030BF14
15457 @end smallexample
15459 Or, if we want to examine the variable @code{X} at each source line in
15460 the buffer:
15462 @smallexample
15463 (@value{GDBP}) @b{tfind start}
15464 (@value{GDBP}) @b{while ($trace_frame != -1)}
15465 > printf "Frame %d, X == %d\n", $trace_frame, X
15466 > tfind line
15467 > end
15469 Frame 0, X = 1
15470 Frame 7, X = 2
15471 Frame 13, X = 255
15472 @end smallexample
15474 @node tdump
15475 @subsection @code{tdump}
15476 @kindex tdump
15477 @cindex dump all data collected at tracepoint
15478 @cindex tracepoint data, display
15480 This command takes no arguments.  It prints all the data collected at
15481 the current trace snapshot.
15483 @smallexample
15484 (@value{GDBP}) @b{trace 444}
15485 (@value{GDBP}) @b{actions}
15486 Enter actions for tracepoint #2, one per line:
15487 > collect $regs, $locals, $args, gdb_long_test
15488 > end
15490 (@value{GDBP}) @b{tstart}
15492 (@value{GDBP}) @b{tfind line 444}
15493 #0  gdb_test (p1=0x11, p2=0x22, p3=0x33, p4=0x44, p5=0x55, p6=0x66)
15494 at gdb_test.c:444
15495 444        printp( "%s: arguments = 0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n", )
15497 (@value{GDBP}) @b{tdump}
15498 Data collected at tracepoint 2, trace frame 1:
15499 d0             0xc4aa0085       -995491707
15500 d1             0x18     24
15501 d2             0x80     128
15502 d3             0x33     51
15503 d4             0x71aea3d        119204413
15504 d5             0x22     34
15505 d6             0xe0     224
15506 d7             0x380035 3670069
15507 a0             0x19e24a 1696330
15508 a1             0x3000668        50333288
15509 a2             0x100    256
15510 a3             0x322000 3284992
15511 a4             0x3000698        50333336
15512 a5             0x1ad3cc 1758156
15513 fp             0x30bf3c 0x30bf3c
15514 sp             0x30bf34 0x30bf34
15515 ps             0x0      0
15516 pc             0x20b2c8 0x20b2c8
15517 fpcontrol      0x0      0
15518 fpstatus       0x0      0
15519 fpiaddr        0x0      0
15520 p = 0x20e5b4 "gdb-test"
15521 p1 = (void *) 0x11
15522 p2 = (void *) 0x22
15523 p3 = (void *) 0x33
15524 p4 = (void *) 0x44
15525 p5 = (void *) 0x55
15526 p6 = (void *) 0x66
15527 gdb_long_test = 17 '\021'
15529 (@value{GDBP})
15530 @end smallexample
15532 @code{tdump} works by scanning the tracepoint's current collection
15533 actions and printing the value of each expression listed.  So
15534 @code{tdump} can fail, if after a run, you change the tracepoint's
15535 actions to mention variables that were not collected during the run.
15537 Also, for tracepoints with @code{while-stepping} loops, @code{tdump}
15538 uses the collected value of @code{$pc} to distinguish between trace
15539 frames that were collected at the tracepoint hit, and frames that were
15540 collected while stepping.  This allows it to correctly choose whether
15541 to display the basic list of collections, or the collections from the
15542 body of the while-stepping loop.  However, if @code{$pc} was not collected,
15543 then @code{tdump} will always attempt to dump using the basic collection
15544 list, and may fail if a while-stepping frame does not include all the
15545 same data that is collected at the tracepoint hit.
15546 @c This is getting pretty arcane, example would be good.
15548 @node save tracepoints
15549 @subsection @code{save tracepoints @var{filename}}
15550 @kindex save tracepoints
15551 @kindex save-tracepoints
15552 @cindex save tracepoints for future sessions
15554 This command saves all current tracepoint definitions together with
15555 their actions and passcounts, into a file @file{@var{filename}}
15556 suitable for use in a later debugging session.  To read the saved
15557 tracepoint definitions, use the @code{source} command (@pxref{Command
15558 Files}).  The @w{@code{save-tracepoints}} command is a deprecated
15559 alias for @w{@code{save tracepoints}}
15561 @node Tracepoint Variables
15562 @section Convenience Variables for Tracepoints
15563 @cindex tracepoint variables
15564 @cindex convenience variables for tracepoints
15566 @table @code
15567 @vindex $trace_frame
15568 @item (int) $trace_frame
15569 The current trace snapshot (a.k.a.@: @dfn{frame}) number, or -1 if no
15570 snapshot is selected.
15572 @vindex $tracepoint
15573 @item (int) $tracepoint
15574 The tracepoint for the current trace snapshot.
15576 @vindex $trace_line
15577 @item (int) $trace_line
15578 The line number for the current trace snapshot.
15580 @vindex $trace_file
15581 @item (char []) $trace_file
15582 The source file for the current trace snapshot.
15584 @vindex $trace_func
15585 @item (char []) $trace_func
15586 The name of the function containing @code{$tracepoint}.
15587 @end table
15589 Note: @code{$trace_file} is not suitable for use in @code{printf},
15590 use @code{output} instead.
15592 Here's a simple example of using these convenience variables for
15593 stepping through all the trace snapshots and printing some of their
15594 data.  Note that these are not the same as trace state variables,
15595 which are managed by the target.
15597 @smallexample
15598 (@value{GDBP}) @b{tfind start}
15600 (@value{GDBP}) @b{while $trace_frame != -1}
15601 > output $trace_file
15602 > printf ", line %d (tracepoint #%d)\n", $trace_line, $tracepoint
15603 > tfind
15604 > end
15605 @end smallexample
15607 @node Trace Files
15608 @section Using Trace Files
15609 @cindex trace files
15611 In some situations, the target running a trace experiment may no
15612 longer be available; perhaps it crashed, or the hardware was needed
15613 for a different activity.  To handle these cases, you can arrange to
15614 dump the trace data into a file, and later use that file as a source
15615 of trace data, via the @code{target tfile} command.
15617 @table @code
15619 @kindex tsave
15620 @item tsave [ -r ] @var{filename}
15621 @itemx tsave [-ctf] @var{dirname}
15622 Save the trace data to @var{filename}.  By default, this command
15623 assumes that @var{filename} refers to the host filesystem, so if
15624 necessary @value{GDBN} will copy raw trace data up from the target and
15625 then save it.  If the target supports it, you can also supply the
15626 optional argument @code{-r} (``remote'') to direct the target to save
15627 the data directly into @var{filename} in its own filesystem, which may be
15628 more efficient if the trace buffer is very large.  (Note, however, that
15629 @code{target tfile} can only read from files accessible to the host.)
15630 By default, this command will save trace frame in tfile format.
15631 You can supply the optional argument @code{-ctf} to save data in CTF
15632 format.  The @dfn{Common Trace Format} (CTF) is proposed as a trace format
15633 that can be shared by multiple debugging and tracing tools.  Please go to
15634 @indicateurl{http://www.efficios.com/ctf} to get more information.
15636 @kindex target tfile
15637 @kindex tfile
15638 @kindex target ctf
15639 @kindex ctf
15640 @item target tfile @var{filename}
15641 @itemx target ctf @var{dirname}
15642 Use the file named @var{filename} or directory named @var{dirname} as
15643 a source of trace data.  Commands that examine data work as they do with
15644 a live target, but it is not possible to run any new trace experiments.
15645 @code{tstatus} will report the state of the trace run at the moment
15646 the data was saved, as well as the current trace frame you are examining.
15647 Both @var{filename} and @var{dirname} must be on a filesystem accessible to
15648 the host.
15650 @smallexample
15651 (@value{GDBP}) target ctf ctf.ctf
15652 (@value{GDBP}) tfind
15653 Found trace frame 0, tracepoint 2
15654 39            ++a;  /* set tracepoint 1 here */
15655 (@value{GDBP}) tdump
15656 Data collected at tracepoint 2, trace frame 0:
15657 i = 0
15658 a = 0
15659 b = 1 '\001'
15660 c = @{"123", "456", "789", "123", "456", "789"@}
15661 d = @{@{@{a = 1, b = 2@}, @{a = 3, b = 4@}@}, @{@{a = 5, b = 6@}, @{a = 7, b = 8@}@}@}
15662 (@value{GDBP}) p b
15663 $1 = 1
15664 @end smallexample
15666 @end table
15668 @node Overlays
15669 @chapter Debugging Programs That Use Overlays
15670 @cindex overlays
15672 If your program is too large to fit completely in your target system's
15673 memory, you can sometimes use @dfn{overlays} to work around this
15674 problem.  @value{GDBN} provides some support for debugging programs that
15675 use overlays.
15677 @menu
15678 * How Overlays Work::              A general explanation of overlays.
15679 * Overlay Commands::               Managing overlays in @value{GDBN}.
15680 * Automatic Overlay Debugging::    @value{GDBN} can find out which overlays are
15681                                    mapped by asking the inferior.
15682 * Overlay Sample Program::         A sample program using overlays.
15683 @end menu
15685 @node How Overlays Work
15686 @section How Overlays Work
15687 @cindex mapped overlays
15688 @cindex unmapped overlays
15689 @cindex load address, overlay's
15690 @cindex mapped address
15691 @cindex overlay area
15693 Suppose you have a computer whose instruction address space is only 64
15694 kilobytes long, but which has much more memory which can be accessed by
15695 other means: special instructions, segment registers, or memory
15696 management hardware, for example.  Suppose further that you want to
15697 adapt a program which is larger than 64 kilobytes to run on this system.
15699 One solution is to identify modules of your program which are relatively
15700 independent, and need not call each other directly; call these modules
15701 @dfn{overlays}.  Separate the overlays from the main program, and place
15702 their machine code in the larger memory.  Place your main program in
15703 instruction memory, but leave at least enough space there to hold the
15704 largest overlay as well.
15706 Now, to call a function located in an overlay, you must first copy that
15707 overlay's machine code from the large memory into the space set aside
15708 for it in the instruction memory, and then jump to its entry point
15709 there.
15711 @c NB:  In the below the mapped area's size is greater or equal to the
15712 @c size of all overlays.  This is intentional to remind the developer
15713 @c that overlays don't necessarily need to be the same size.
15715 @smallexample
15716 @group
15717     Data             Instruction            Larger
15718 Address Space       Address Space        Address Space
15719 +-----------+       +-----------+        +-----------+
15720 |           |       |           |        |           |
15721 +-----------+       +-----------+        +-----------+<-- overlay 1
15722 | program   |       |   main    |   .----| overlay 1 | load address
15723 | variables |       |  program  |   |    +-----------+
15724 | and heap  |       |           |   |    |           |
15725 +-----------+       |           |   |    +-----------+<-- overlay 2
15726 |           |       +-----------+   |    |           | load address
15727 +-----------+       |           |   |  .-| overlay 2 |
15728                     |           |   |  | |           |
15729          mapped --->+-----------+   |  | +-----------+
15730          address    |           |   |  | |           |
15731                     |  overlay  | <-'  | |           |
15732                     |   area    |  <---' +-----------+<-- overlay 3
15733                     |           | <---.  |           | load address
15734                     +-----------+     `--| overlay 3 |
15735                     |           |        |           |
15736                     +-----------+        |           |
15737                                          +-----------+
15738                                          |           |
15739                                          +-----------+
15741                     @anchor{A code overlay}A code overlay
15742 @end group
15743 @end smallexample
15745 The diagram (@pxref{A code overlay}) shows a system with separate data
15746 and instruction address spaces.  To map an overlay, the program copies
15747 its code from the larger address space to the instruction address space.
15748 Since the overlays shown here all use the same mapped address, only one
15749 may be mapped at a time.  For a system with a single address space for
15750 data and instructions, the diagram would be similar, except that the
15751 program variables and heap would share an address space with the main
15752 program and the overlay area.
15754 An overlay loaded into instruction memory and ready for use is called a
15755 @dfn{mapped} overlay; its @dfn{mapped address} is its address in the
15756 instruction memory.  An overlay not present (or only partially present)
15757 in instruction memory is called @dfn{unmapped}; its @dfn{load address}
15758 is its address in the larger memory.  The mapped address is also called
15759 the @dfn{virtual memory address}, or @dfn{VMA}; the load address is also
15760 called the @dfn{load memory address}, or @dfn{LMA}.
15762 Unfortunately, overlays are not a completely transparent way to adapt a
15763 program to limited instruction memory.  They introduce a new set of
15764 global constraints you must keep in mind as you design your program:
15766 @itemize @bullet
15768 @item
15769 Before calling or returning to a function in an overlay, your program
15770 must make sure that overlay is actually mapped.  Otherwise, the call or
15771 return will transfer control to the right address, but in the wrong
15772 overlay, and your program will probably crash.
15774 @item
15775 If the process of mapping an overlay is expensive on your system, you
15776 will need to choose your overlays carefully to minimize their effect on
15777 your program's performance.
15779 @item
15780 The executable file you load onto your system must contain each
15781 overlay's instructions, appearing at the overlay's load address, not its
15782 mapped address.  However, each overlay's instructions must be relocated
15783 and its symbols defined as if the overlay were at its mapped address.
15784 You can use GNU linker scripts to specify different load and relocation
15785 addresses for pieces of your program; see @ref{Overlay Description,,,
15786 ld.info, Using ld: the GNU linker}.
15788 @item
15789 The procedure for loading executable files onto your system must be able
15790 to load their contents into the larger address space as well as the
15791 instruction and data spaces.
15793 @end itemize
15795 The overlay system described above is rather simple, and could be
15796 improved in many ways:
15798 @itemize @bullet
15800 @item
15801 If your system has suitable bank switch registers or memory management
15802 hardware, you could use those facilities to make an overlay's load area
15803 contents simply appear at their mapped address in instruction space.
15804 This would probably be faster than copying the overlay to its mapped
15805 area in the usual way.
15807 @item
15808 If your overlays are small enough, you could set aside more than one
15809 overlay area, and have more than one overlay mapped at a time.
15811 @item
15812 You can use overlays to manage data, as well as instructions.  In
15813 general, data overlays are even less transparent to your design than
15814 code overlays: whereas code overlays only require care when you call or
15815 return to functions, data overlays require care every time you access
15816 the data.  Also, if you change the contents of a data overlay, you
15817 must copy its contents back out to its load address before you can copy a
15818 different data overlay into the same mapped area.
15820 @end itemize
15823 @node Overlay Commands
15824 @section Overlay Commands
15826 To use @value{GDBN}'s overlay support, each overlay in your program must
15827 correspond to a separate section of the executable file.  The section's
15828 virtual memory address and load memory address must be the overlay's
15829 mapped and load addresses.  Identifying overlays with sections allows
15830 @value{GDBN} to determine the appropriate address of a function or
15831 variable, depending on whether the overlay is mapped or not.
15833 @value{GDBN}'s overlay commands all start with the word @code{overlay};
15834 you can abbreviate this as @code{ov} or @code{ovly}.  The commands are:
15836 @table @code
15837 @item overlay off
15838 @kindex overlay
15839 Disable @value{GDBN}'s overlay support.  When overlay support is
15840 disabled, @value{GDBN} assumes that all functions and variables are
15841 always present at their mapped addresses.  By default, @value{GDBN}'s
15842 overlay support is disabled.
15844 @item overlay manual
15845 @cindex manual overlay debugging
15846 Enable @dfn{manual} overlay debugging.  In this mode, @value{GDBN}
15847 relies on you to tell it which overlays are mapped, and which are not,
15848 using the @code{overlay map-overlay} and @code{overlay unmap-overlay}
15849 commands described below.
15851 @item overlay map-overlay @var{overlay}
15852 @itemx overlay map @var{overlay}
15853 @cindex map an overlay
15854 Tell @value{GDBN} that @var{overlay} is now mapped; @var{overlay} must
15855 be the name of the object file section containing the overlay.  When an
15856 overlay is mapped, @value{GDBN} assumes it can find the overlay's
15857 functions and variables at their mapped addresses.  @value{GDBN} assumes
15858 that any other overlays whose mapped ranges overlap that of
15859 @var{overlay} are now unmapped.
15861 @item overlay unmap-overlay @var{overlay}
15862 @itemx overlay unmap @var{overlay}
15863 @cindex unmap an overlay
15864 Tell @value{GDBN} that @var{overlay} is no longer mapped; @var{overlay}
15865 must be the name of the object file section containing the overlay.
15866 When an overlay is unmapped, @value{GDBN} assumes it can find the
15867 overlay's functions and variables at their load addresses.
15869 @item overlay auto
15870 Enable @dfn{automatic} overlay debugging.  In this mode, @value{GDBN}
15871 consults a data structure the overlay manager maintains in the inferior
15872 to see which overlays are mapped.  For details, see @ref{Automatic
15873 Overlay Debugging}.
15875 @item overlay load-target
15876 @itemx overlay load
15877 @cindex reloading the overlay table
15878 Re-read the overlay table from the inferior.  Normally, @value{GDBN}
15879 re-reads the table @value{GDBN} automatically each time the inferior
15880 stops, so this command should only be necessary if you have changed the
15881 overlay mapping yourself using @value{GDBN}.  This command is only
15882 useful when using automatic overlay debugging.
15884 @item overlay list-overlays
15885 @itemx overlay list
15886 @cindex listing mapped overlays
15887 Display a list of the overlays currently mapped, along with their mapped
15888 addresses, load addresses, and sizes.
15890 @end table
15892 Normally, when @value{GDBN} prints a code address, it includes the name
15893 of the function the address falls in:
15895 @smallexample
15896 (@value{GDBP}) print main
15897 $3 = @{int ()@} 0x11a0 <main>
15898 @end smallexample
15899 @noindent
15900 When overlay debugging is enabled, @value{GDBN} recognizes code in
15901 unmapped overlays, and prints the names of unmapped functions with
15902 asterisks around them.  For example, if @code{foo} is a function in an
15903 unmapped overlay, @value{GDBN} prints it this way:
15905 @smallexample
15906 (@value{GDBP}) overlay list
15907 No sections are mapped.
15908 (@value{GDBP}) print foo
15909 $5 = @{int (int)@} 0x100000 <*foo*>
15910 @end smallexample
15911 @noindent
15912 When @code{foo}'s overlay is mapped, @value{GDBN} prints the function's
15913 name normally:
15915 @smallexample
15916 (@value{GDBP}) overlay list
15917 Section .ov.foo.text, loaded at 0x100000 - 0x100034,
15918         mapped at 0x1016 - 0x104a
15919 (@value{GDBP}) print foo
15920 $6 = @{int (int)@} 0x1016 <foo>
15921 @end smallexample
15923 When overlay debugging is enabled, @value{GDBN} can find the correct
15924 address for functions and variables in an overlay, whether or not the
15925 overlay is mapped.  This allows most @value{GDBN} commands, like
15926 @code{break} and @code{disassemble}, to work normally, even on unmapped
15927 code.  However, @value{GDBN}'s breakpoint support has some limitations:
15929 @itemize @bullet
15930 @item
15931 @cindex breakpoints in overlays
15932 @cindex overlays, setting breakpoints in
15933 You can set breakpoints in functions in unmapped overlays, as long as
15934 @value{GDBN} can write to the overlay at its load address.
15935 @item
15936 @value{GDBN} can not set hardware or simulator-based breakpoints in
15937 unmapped overlays.  However, if you set a breakpoint at the end of your
15938 overlay manager (and tell @value{GDBN} which overlays are now mapped, if
15939 you are using manual overlay management), @value{GDBN} will re-set its
15940 breakpoints properly.
15941 @end itemize
15944 @node Automatic Overlay Debugging
15945 @section Automatic Overlay Debugging
15946 @cindex automatic overlay debugging
15948 @value{GDBN} can automatically track which overlays are mapped and which
15949 are not, given some simple co-operation from the overlay manager in the
15950 inferior.  If you enable automatic overlay debugging with the
15951 @code{overlay auto} command (@pxref{Overlay Commands}), @value{GDBN}
15952 looks in the inferior's memory for certain variables describing the
15953 current state of the overlays.
15955 Here are the variables your overlay manager must define to support
15956 @value{GDBN}'s automatic overlay debugging:
15958 @table @asis
15960 @item @code{_ovly_table}:
15961 This variable must be an array of the following structures:
15963 @smallexample
15964 struct
15966   /* The overlay's mapped address.  */
15967   unsigned long vma;
15969   /* The size of the overlay, in bytes.  */
15970   unsigned long size;
15972   /* The overlay's load address.  */
15973   unsigned long lma;
15975   /* Non-zero if the overlay is currently mapped;
15976      zero otherwise.  */
15977   unsigned long mapped;
15979 @end smallexample
15981 @item @code{_novlys}:
15982 This variable must be a four-byte signed integer, holding the total
15983 number of elements in @code{_ovly_table}.
15985 @end table
15987 To decide whether a particular overlay is mapped or not, @value{GDBN}
15988 looks for an entry in @w{@code{_ovly_table}} whose @code{vma} and
15989 @code{lma} members equal the VMA and LMA of the overlay's section in the
15990 executable file.  When @value{GDBN} finds a matching entry, it consults
15991 the entry's @code{mapped} member to determine whether the overlay is
15992 currently mapped.
15994 In addition, your overlay manager may define a function called
15995 @code{_ovly_debug_event}.  If this function is defined, @value{GDBN}
15996 will silently set a breakpoint there.  If the overlay manager then
15997 calls this function whenever it has changed the overlay table, this
15998 will enable @value{GDBN} to accurately keep track of which overlays
15999 are in program memory, and update any breakpoints that may be set
16000 in overlays.  This will allow breakpoints to work even if the
16001 overlays are kept in ROM or other non-writable memory while they
16002 are not being executed.
16004 @node Overlay Sample Program
16005 @section Overlay Sample Program
16006 @cindex overlay example program
16008 When linking a program which uses overlays, you must place the overlays
16009 at their load addresses, while relocating them to run at their mapped
16010 addresses.  To do this, you must write a linker script (@pxref{Overlay
16011 Description,,, ld.info, Using ld: the GNU linker}).  Unfortunately,
16012 since linker scripts are specific to a particular host system, target
16013 architecture, and target memory layout, this manual cannot provide
16014 portable sample code demonstrating @value{GDBN}'s overlay support.
16016 However, the @value{GDBN} source distribution does contain an overlaid
16017 program, with linker scripts for a few systems, as part of its test
16018 suite.  The program consists of the following files from
16019 @file{gdb/testsuite/gdb.base}:
16021 @table @file
16022 @item overlays.c
16023 The main program file.
16024 @item ovlymgr.c
16025 A simple overlay manager, used by @file{overlays.c}.
16026 @item foo.c
16027 @itemx bar.c
16028 @itemx baz.c
16029 @itemx grbx.c
16030 Overlay modules, loaded and used by @file{overlays.c}.
16031 @item d10v.ld
16032 @itemx m32r.ld
16033 Linker scripts for linking the test program on the @code{d10v-elf}
16034 and @code{m32r-elf} targets.
16035 @end table
16037 You can build the test program using the @code{d10v-elf} GCC
16038 cross-compiler like this:
16040 @smallexample
16041 $ d10v-elf-gcc -g -c overlays.c
16042 $ d10v-elf-gcc -g -c ovlymgr.c
16043 $ d10v-elf-gcc -g -c foo.c
16044 $ d10v-elf-gcc -g -c bar.c
16045 $ d10v-elf-gcc -g -c baz.c
16046 $ d10v-elf-gcc -g -c grbx.c
16047 $ d10v-elf-gcc -g overlays.o ovlymgr.o foo.o bar.o \
16048                   baz.o grbx.o -Wl,-Td10v.ld -o overlays
16049 @end smallexample
16051 The build process is identical for any other architecture, except that
16052 you must substitute the appropriate compiler and linker script for the
16053 target system for @code{d10v-elf-gcc} and @code{d10v.ld}.
16056 @node Languages
16057 @chapter Using @value{GDBN} with Different Languages
16058 @cindex languages
16060 Although programming languages generally have common aspects, they are
16061 rarely expressed in the same manner.  For instance, in ANSI C,
16062 dereferencing a pointer @code{p} is accomplished by @code{*p}, but in
16063 Modula-2, it is accomplished by @code{p^}.  Values can also be
16064 represented (and displayed) differently.  Hex numbers in C appear as
16065 @samp{0x1ae}, while in Modula-2 they appear as @samp{1AEH}.
16067 @cindex working language
16068 Language-specific information is built into @value{GDBN} for some languages,
16069 allowing you to express operations like the above in your program's
16070 native language, and allowing @value{GDBN} to output values in a manner
16071 consistent with the syntax of your program's native language.  The
16072 language you use to build expressions is called the @dfn{working
16073 language}.
16075 @menu
16076 * Setting::                     Switching between source languages
16077 * Show::                        Displaying the language
16078 * Checks::                      Type and range checks
16079 * Supported Languages::         Supported languages
16080 * Unsupported Languages::       Unsupported languages
16081 @end menu
16083 @node Setting
16084 @section Switching Between Source Languages
16086 There are two ways to control the working language---either have @value{GDBN}
16087 set it automatically, or select it manually yourself.  You can use the
16088 @code{set language} command for either purpose.  On startup, @value{GDBN}
16089 defaults to setting the language automatically.  The working language is
16090 used to determine how expressions you type are interpreted, how values
16091 are printed, etc.
16093 In addition to the working language, every source file that
16094 @value{GDBN} knows about has its own working language.  For some object
16095 file formats, the compiler might indicate which language a particular
16096 source file is in.  However, most of the time @value{GDBN} infers the
16097 language from the name of the file.  The language of a source file
16098 controls whether C@t{++} names are demangled---this way @code{backtrace} can
16099 show each frame appropriately for its own language.  There is no way to
16100 set the language of a source file from within @value{GDBN}, but you can
16101 set the language associated with a filename extension.  @xref{Show, ,
16102 Displaying the Language}.
16104 This is most commonly a problem when you use a program, such
16105 as @code{cfront} or @code{f2c}, that generates C but is written in
16106 another language.  In that case, make the
16107 program use @code{#line} directives in its C output; that way
16108 @value{GDBN} will know the correct language of the source code of the original
16109 program, and will display that source code, not the generated C code.
16111 @menu
16112 * Filenames::                   Filename extensions and languages.
16113 * Manually::                    Setting the working language manually
16114 * Automatically::               Having @value{GDBN} infer the source language
16115 @end menu
16117 @node Filenames
16118 @subsection List of Filename Extensions and Languages
16120 If a source file name ends in one of the following extensions, then
16121 @value{GDBN} infers that its language is the one indicated.
16123 @table @file
16124 @item .ada
16125 @itemx .ads
16126 @itemx .adb
16127 @itemx .a
16128 Ada source file.
16130 @item .c
16131 C source file
16133 @item .C
16134 @itemx .cc
16135 @itemx .cp
16136 @itemx .cpp
16137 @itemx .cxx
16138 @itemx .c++
16139 C@t{++} source file
16141 @item .d
16142 D source file
16144 @item .m
16145 Objective-C source file
16147 @item .f
16148 @itemx .F
16149 Fortran source file
16151 @item .mod
16152 Modula-2 source file
16154 @item .s
16155 @itemx .S
16156 Assembler source file.  This actually behaves almost like C, but
16157 @value{GDBN} does not skip over function prologues when stepping.
16158 @end table
16160 In addition, you may set the language associated with a filename
16161 extension.  @xref{Show, , Displaying the Language}.
16163 @node Manually
16164 @subsection Setting the Working Language
16166 If you allow @value{GDBN} to set the language automatically,
16167 expressions are interpreted the same way in your debugging session and
16168 your program.
16170 @kindex set language
16171 If you wish, you may set the language manually.  To do this, issue the
16172 command @samp{set language @var{lang}}, where @var{lang} is the name of
16173 a language, such as
16174 @code{c} or @code{modula-2}.
16175 For a list of the supported languages, type @samp{set language}.
16177 Setting the language manually prevents @value{GDBN} from updating the working
16178 language automatically.  This can lead to confusion if you try
16179 to debug a program when the working language is not the same as the
16180 source language, when an expression is acceptable to both
16181 languages---but means different things.  For instance, if the current
16182 source file were written in C, and @value{GDBN} was parsing Modula-2, a
16183 command such as:
16185 @smallexample
16186 print a = b + c
16187 @end smallexample
16189 @noindent
16190 might not have the effect you intended.  In C, this means to add
16191 @code{b} and @code{c} and place the result in @code{a}.  The result
16192 printed would be the value of @code{a}.  In Modula-2, this means to compare
16193 @code{a} to the result of @code{b+c}, yielding a @code{BOOLEAN} value.
16195 @node Automatically
16196 @subsection Having @value{GDBN} Infer the Source Language
16198 To have @value{GDBN} set the working language automatically, use
16199 @samp{set language local} or @samp{set language auto}.  @value{GDBN}
16200 then infers the working language.  That is, when your program stops in a
16201 frame (usually by encountering a breakpoint), @value{GDBN} sets the
16202 working language to the language recorded for the function in that
16203 frame.  If the language for a frame is unknown (that is, if the function
16204 or block corresponding to the frame was defined in a source file that
16205 does not have a recognized extension), the current working language is
16206 not changed, and @value{GDBN} issues a warning.
16208 This may not seem necessary for most programs, which are written
16209 entirely in one source language.  However, program modules and libraries
16210 written in one source language can be used by a main program written in
16211 a different source language.  Using @samp{set language auto} in this
16212 case frees you from having to set the working language manually.
16214 @node Show
16215 @section Displaying the Language
16217 The following commands help you find out which language is the
16218 working language, and also what language source files were written in.
16220 @table @code
16221 @item show language
16222 @anchor{show language}
16223 @kindex show language
16224 Display the current working language.  This is the
16225 language you can use with commands such as @code{print} to
16226 build and compute expressions that may involve variables in your program.
16228 @item info frame
16229 @kindex info frame@r{, show the source language}
16230 Display the source language for this frame.  This language becomes the
16231 working language if you use an identifier from this frame.
16232 @xref{Frame Info, ,Information about a Frame}, to identify the other
16233 information listed here.
16235 @item info source
16236 @kindex info source@r{, show the source language}
16237 Display the source language of this source file.
16238 @xref{Symbols, ,Examining the Symbol Table}, to identify the other
16239 information listed here.
16240 @end table
16242 In unusual circumstances, you may have source files with extensions
16243 not in the standard list.  You can then set the extension associated
16244 with a language explicitly:
16246 @table @code
16247 @item set extension-language @var{ext} @var{language}
16248 @kindex set extension-language
16249 Tell @value{GDBN} that source files with extension @var{ext} are to be
16250 assumed as written in the source language @var{language}.
16252 @item info extensions
16253 @kindex info extensions
16254 List all the filename extensions and the associated languages.
16255 @end table
16257 @node Checks
16258 @section Type and Range Checking
16260 Some languages are designed to guard you against making seemingly common
16261 errors through a series of compile- and run-time checks.  These include
16262 checking the type of arguments to functions and operators and making
16263 sure mathematical overflows are caught at run time.  Checks such as
16264 these help to ensure a program's correctness once it has been compiled
16265 by eliminating type mismatches and providing active checks for range
16266 errors when your program is running.
16268 By default @value{GDBN} checks for these errors according to the
16269 rules of the current source language.  Although @value{GDBN} does not check
16270 the statements in your program, it can check expressions entered directly
16271 into @value{GDBN} for evaluation via the @code{print} command, for example.
16273 @menu
16274 * Type Checking::               An overview of type checking
16275 * Range Checking::              An overview of range checking
16276 @end menu
16278 @cindex type checking
16279 @cindex checks, type
16280 @node Type Checking
16281 @subsection An Overview of Type Checking
16283 Some languages, such as C and C@t{++}, are strongly typed, meaning that the
16284 arguments to operators and functions have to be of the correct type,
16285 otherwise an error occurs.  These checks prevent type mismatch
16286 errors from ever causing any run-time problems.  For example,
16288 @smallexample
16289 int klass::my_method(char *b) @{ return  b ? 1 : 2; @}
16291 (@value{GDBP}) print obj.my_method (0)
16292 $1 = 2
16293 @exdent but
16294 (@value{GDBP}) print obj.my_method (0x1234)
16295 Cannot resolve method klass::my_method to any overloaded instance
16296 @end smallexample
16298 The second example fails because in C@t{++} the integer constant
16299 @samp{0x1234} is not type-compatible with the pointer parameter type.
16301 For the expressions you use in @value{GDBN} commands, you can tell
16302 @value{GDBN} to not enforce strict type checking or
16303 to treat any mismatches as errors and abandon the expression;
16304 When type checking is disabled, @value{GDBN} successfully evaluates
16305 expressions like the second example above.
16307 Even if type checking is off, there may be other reasons
16308 related to type that prevent @value{GDBN} from evaluating an expression.
16309 For instance, @value{GDBN} does not know how to add an @code{int} and
16310 a @code{struct foo}.  These particular type errors have nothing to do
16311 with the language in use and usually arise from expressions which make
16312 little sense to evaluate anyway.
16314 @value{GDBN} provides some additional commands for controlling type checking:
16316 @kindex set check type
16317 @kindex show check type
16318 @table @code
16319 @item set check type on
16320 @itemx set check type off
16321 Set strict type checking on or off.  If any type mismatches occur in
16322 evaluating an expression while type checking is on, @value{GDBN} prints a
16323 message and aborts evaluation of the expression.
16325 @item show check type
16326 Show the current setting of type checking and whether @value{GDBN}
16327 is enforcing strict type checking rules.
16328 @end table
16330 @cindex range checking
16331 @cindex checks, range
16332 @node Range Checking
16333 @subsection An Overview of Range Checking
16335 In some languages (such as Modula-2), it is an error to exceed the
16336 bounds of a type; this is enforced with run-time checks.  Such range
16337 checking is meant to ensure program correctness by making sure
16338 computations do not overflow, or indices on an array element access do
16339 not exceed the bounds of the array.
16341 For expressions you use in @value{GDBN} commands, you can tell
16342 @value{GDBN} to treat range errors in one of three ways: ignore them,
16343 always treat them as errors and abandon the expression, or issue
16344 warnings but evaluate the expression anyway.
16346 A range error can result from numerical overflow, from exceeding an
16347 array index bound, or when you type a constant that is not a member
16348 of any type.  Some languages, however, do not treat overflows as an
16349 error.  In many implementations of C, mathematical overflow causes the
16350 result to ``wrap around'' to lower values---for example, if @var{m} is
16351 the largest integer value, and @var{s} is the smallest, then
16353 @smallexample
16354 @var{m} + 1 @result{} @var{s}
16355 @end smallexample
16357 This, too, is specific to individual languages, and in some cases
16358 specific to individual compilers or machines.  @xref{Supported Languages, ,
16359 Supported Languages}, for further details on specific languages.
16361 @value{GDBN} provides some additional commands for controlling the range checker:
16363 @kindex set check range
16364 @kindex show check range
16365 @table @code
16366 @item set check range auto
16367 Set range checking on or off based on the current working language.
16368 @xref{Supported Languages, ,Supported Languages}, for the default settings for
16369 each language.
16371 @item set check range on
16372 @itemx set check range off
16373 Set range checking on or off, overriding the default setting for the
16374 current working language.  A warning is issued if the setting does not
16375 match the language default.  If a range error occurs and range checking is on,
16376 then a message is printed and evaluation of the expression is aborted.
16378 @item set check range warn
16379 Output messages when the @value{GDBN} range checker detects a range error,
16380 but attempt to evaluate the expression anyway.  Evaluating the
16381 expression may still be impossible for other reasons, such as accessing
16382 memory that the process does not own (a typical example from many Unix
16383 systems).
16385 @item show check range
16386 Show the current setting of the range checker, and whether or not it is
16387 being set automatically by @value{GDBN}.
16388 @end table
16390 @node Supported Languages
16391 @section Supported Languages
16393 @value{GDBN} supports C, C@t{++}, D, Go, Objective-C, Fortran,
16394 OpenCL C, Pascal, Rust, assembly, Modula-2, and Ada.
16395 @c This is false ...
16396 Some @value{GDBN} features may be used in expressions regardless of the
16397 language you use: the @value{GDBN} @code{@@} and @code{::} operators,
16398 and the @samp{@{type@}addr} construct (@pxref{Expressions,
16399 ,Expressions}) can be used with the constructs of any supported
16400 language.
16402 The following sections detail to what degree each source language is
16403 supported by @value{GDBN}.  These sections are not meant to be language
16404 tutorials or references, but serve only as a reference guide to what the
16405 @value{GDBN} expression parser accepts, and what input and output
16406 formats should look like for different languages.  There are many good
16407 books written on each of these languages; please look to these for a
16408 language reference or tutorial.
16410 @menu
16411 * C::                           C and C@t{++}
16412 * D::                           D
16413 * Go::                          Go
16414 * Objective-C::                 Objective-C
16415 * OpenCL C::                    OpenCL C
16416 * Fortran::                     Fortran
16417 * Pascal::                      Pascal
16418 * Rust::                        Rust
16419 * Modula-2::                    Modula-2
16420 * Ada::                         Ada
16421 @end menu
16423 @node C
16424 @subsection C and C@t{++}
16426 @cindex C and C@t{++}
16427 @cindex expressions in C or C@t{++}
16429 Since C and C@t{++} are so closely related, many features of @value{GDBN} apply
16430 to both languages.  Whenever this is the case, we discuss those languages
16431 together.
16433 @cindex C@t{++}
16434 @cindex @code{g++}, @sc{gnu} C@t{++} compiler
16435 @cindex @sc{gnu} C@t{++}
16436 The C@t{++} debugging facilities are jointly implemented by the C@t{++}
16437 compiler and @value{GDBN}.  Therefore, to debug your C@t{++} code
16438 effectively, you must compile your C@t{++} programs with a supported
16439 C@t{++} compiler, such as @sc{gnu} @code{g++}, or the HP ANSI C@t{++}
16440 compiler (@code{aCC}).
16442 @menu
16443 * C Operators::                 C and C@t{++} operators
16444 * C Constants::                 C and C@t{++} constants
16445 * C Plus Plus Expressions::     C@t{++} expressions
16446 * C Defaults::                  Default settings for C and C@t{++}
16447 * C Checks::                    C and C@t{++} type and range checks
16448 * Debugging C::                 @value{GDBN} and C
16449 * Debugging C Plus Plus::       @value{GDBN} features for C@t{++}
16450 * Decimal Floating Point::      Numbers in Decimal Floating Point format
16451 @end menu
16453 @node C Operators
16454 @subsubsection C and C@t{++} Operators
16456 @cindex C and C@t{++} operators
16458 Operators must be defined on values of specific types.  For instance,
16459 @code{+} is defined on numbers, but not on structures.  Operators are
16460 often defined on groups of types.
16462 For the purposes of C and C@t{++}, the following definitions hold:
16464 @itemize @bullet
16466 @item
16467 @emph{Integral types} include @code{int} with any of its storage-class
16468 specifiers; @code{char}; @code{enum}; and, for C@t{++}, @code{bool}.
16470 @item
16471 @emph{Floating-point types} include @code{float}, @code{double}, and
16472 @code{long double} (if supported by the target platform).
16474 @item
16475 @emph{Pointer types} include all types defined as @code{(@var{type} *)}.
16477 @item
16478 @emph{Scalar types} include all of the above.
16480 @end itemize
16482 @noindent
16483 The following operators are supported.  They are listed here
16484 in order of increasing precedence:
16486 @table @code
16487 @item ,
16488 The comma or sequencing operator.  Expressions in a comma-separated list
16489 are evaluated from left to right, with the result of the entire
16490 expression being the last expression evaluated.
16492 @item =
16493 Assignment.  The value of an assignment expression is the value
16494 assigned.  Defined on scalar types.
16496 @item @var{op}=
16497 Used in an expression of the form @w{@code{@var{a} @var{op}= @var{b}}},
16498 and translated to @w{@code{@var{a} = @var{a op b}}}.
16499 @w{@code{@var{op}=}} and @code{=} have the same precedence.  The operator
16500 @var{op} is any one of the operators @code{|}, @code{^}, @code{&},
16501 @code{<<}, @code{>>}, @code{+}, @code{-}, @code{*}, @code{/}, @code{%}.
16503 @item ?:
16504 The ternary operator.  @code{@var{a} ? @var{b} : @var{c}} can be thought
16505 of as:  if @var{a} then @var{b} else @var{c}.  The argument @var{a}
16506 should be of an integral type.
16508 @item ||
16509 Logical @sc{or}.  Defined on integral types.
16511 @item &&
16512 Logical @sc{and}.  Defined on integral types.
16514 @item |
16515 Bitwise @sc{or}.  Defined on integral types.
16517 @item ^
16518 Bitwise exclusive-@sc{or}.  Defined on integral types.
16520 @item &
16521 Bitwise @sc{and}.  Defined on integral types.
16523 @item ==@r{, }!=
16524 Equality and inequality.  Defined on scalar types.  The value of these
16525 expressions is 0 for false and non-zero for true.
16527 @item <@r{, }>@r{, }<=@r{, }>=
16528 Less than, greater than, less than or equal, greater than or equal.
16529 Defined on scalar types.  The value of these expressions is 0 for false
16530 and non-zero for true.
16532 @item <<@r{, }>>
16533 left shift, and right shift.  Defined on integral types.
16535 @item @@
16536 The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
16538 @item +@r{, }-
16539 Addition and subtraction.  Defined on integral types, floating-point types and
16540 pointer types.
16542 @item *@r{, }/@r{, }%
16543 Multiplication, division, and modulus.  Multiplication and division are
16544 defined on integral and floating-point types.  Modulus is defined on
16545 integral types.
16547 @item ++@r{, }--
16548 Increment and decrement.  When appearing before a variable, the
16549 operation is performed before the variable is used in an expression;
16550 when appearing after it, the variable's value is used before the
16551 operation takes place.
16553 @item *
16554 Pointer dereferencing.  Defined on pointer types.  Same precedence as
16555 @code{++}.
16557 @item &
16558 Address operator.  Defined on variables.  Same precedence as @code{++}.
16560 For debugging C@t{++}, @value{GDBN} implements a use of @samp{&} beyond what is
16561 allowed in the C@t{++} language itself: you can use @samp{&(&@var{ref})}
16562 to examine the address
16563 where a C@t{++} reference variable (declared with @samp{&@var{ref}}) is
16564 stored.
16566 @item -
16567 Negative.  Defined on integral and floating-point types.  Same
16568 precedence as @code{++}.
16570 @item !
16571 Logical negation.  Defined on integral types.  Same precedence as
16572 @code{++}.
16574 @item ~
16575 Bitwise complement operator.  Defined on integral types.  Same precedence as
16576 @code{++}.
16579 @item .@r{, }->
16580 Structure member, and pointer-to-structure member.  For convenience,
16581 @value{GDBN} regards the two as equivalent, choosing whether to dereference a
16582 pointer based on the stored type information.
16583 Defined on @code{struct} and @code{union} data.
16585 @item .*@r{, }->*
16586 Dereferences of pointers to members.
16588 @item []
16589 Array indexing.  @code{@var{a}[@var{i}]} is defined as
16590 @code{*(@var{a}+@var{i})}.  Same precedence as @code{->}.
16592 @item ()
16593 Function parameter list.  Same precedence as @code{->}.
16595 @item ::
16596 C@t{++} scope resolution operator.  Defined on @code{struct}, @code{union},
16597 and @code{class} types.
16599 @item ::
16600 Doubled colons also represent the @value{GDBN} scope operator
16601 (@pxref{Expressions, ,Expressions}).  Same precedence as @code{::},
16602 above.
16603 @end table
16605 If an operator is redefined in the user code, @value{GDBN} usually
16606 attempts to invoke the redefined version instead of using the operator's
16607 predefined meaning.
16609 @node C Constants
16610 @subsubsection C and C@t{++} Constants
16612 @cindex C and C@t{++} constants
16614 @value{GDBN} allows you to express the constants of C and C@t{++} in the
16615 following ways:
16617 @itemize @bullet
16618 @item
16619 Integer constants are a sequence of digits.  Octal constants are
16620 specified by a leading @samp{0} (i.e.@: zero), and hexadecimal constants
16621 by a leading @samp{0x} or @samp{0X}.  Constants may also end with a letter
16622 @samp{l}, specifying that the constant should be treated as a
16623 @code{long} value.
16625 @item
16626 Floating point constants are a sequence of digits, followed by a decimal
16627 point, followed by a sequence of digits, and optionally followed by an
16628 exponent.  An exponent is of the form:
16629 @samp{@w{e@r{[[}+@r{]|}-@r{]}@var{nnn}}}, where @var{nnn} is another
16630 sequence of digits.  The @samp{+} is optional for positive exponents.
16631 A floating-point constant may also end with a letter @samp{f} or
16632 @samp{F}, specifying that the constant should be treated as being of
16633 the @code{float} (as opposed to the default @code{double}) type; or with
16634 a letter @samp{l} or @samp{L}, which specifies a @code{long double}
16635 constant.
16637 @item
16638 Enumerated constants consist of enumerated identifiers, or their
16639 integral equivalents.
16641 @item
16642 Character constants are a single character surrounded by single quotes
16643 (@code{'}), or a number---the ordinal value of the corresponding character
16644 (usually its @sc{ascii} value).  Within quotes, the single character may
16645 be represented by a letter or by @dfn{escape sequences}, which are of
16646 the form @samp{\@var{nnn}}, where @var{nnn} is the octal representation
16647 of the character's ordinal value; or of the form @samp{\@var{x}}, where
16648 @samp{@var{x}} is a predefined special character---for example,
16649 @samp{\n} for newline.
16651 Wide character constants can be written by prefixing a character
16652 constant with @samp{L}, as in C.  For example, @samp{L'x'} is the wide
16653 form of @samp{x}.  The target wide character set is used when
16654 computing the value of this constant (@pxref{Character Sets}).
16656 @item
16657 String constants are a sequence of character constants surrounded by
16658 double quotes (@code{"}).  Any valid character constant (as described
16659 above) may appear.  Double quotes within the string must be preceded by
16660 a backslash, so for instance @samp{"a\"b'c"} is a string of five
16661 characters.
16663 Wide string constants can be written by prefixing a string constant
16664 with @samp{L}, as in C.  The target wide character set is used when
16665 computing the value of this constant (@pxref{Character Sets}).
16667 @item
16668 Pointer constants are an integral value.  You can also write pointers
16669 to constants using the C operator @samp{&}.
16671 @item
16672 Array constants are comma-separated lists surrounded by braces @samp{@{}
16673 and @samp{@}}; for example, @samp{@{1,2,3@}} is a three-element array of
16674 integers, @samp{@{@{1,2@}, @{3,4@}, @{5,6@}@}} is a three-by-two array,
16675 and @samp{@{&"hi", &"there", &"fred"@}} is a three-element array of pointers.
16676 @end itemize
16678 @node C Plus Plus Expressions
16679 @subsubsection C@t{++} Expressions
16681 @cindex expressions in C@t{++}
16682 @value{GDBN} expression handling can interpret most C@t{++} expressions.
16684 @cindex debugging C@t{++} programs
16685 @cindex C@t{++} compilers
16686 @cindex debug formats and C@t{++}
16687 @cindex @value{NGCC} and C@t{++}
16688 @quotation
16689 @emph{Warning:} @value{GDBN} can only debug C@t{++} code if you use
16690 the proper compiler and the proper debug format.  Currently,
16691 @value{GDBN} works best when debugging C@t{++} code that is compiled
16692 with the most recent version of @value{NGCC} possible.  The DWARF
16693 debugging format is preferred; @value{NGCC} defaults to this on most
16694 popular platforms.  Other compilers and/or debug formats are likely to
16695 work badly or not at all when using @value{GDBN} to debug C@t{++}
16696 code.  @xref{Compilation}.
16697 @end quotation
16699 @enumerate
16701 @cindex member functions
16702 @item
16703 Member function calls are allowed; you can use expressions like
16705 @smallexample
16706 count = aml->GetOriginal(x, y)
16707 @end smallexample
16709 @vindex this@r{, inside C@t{++} member functions}
16710 @cindex namespace in C@t{++}
16711 @item
16712 While a member function is active (in the selected stack frame), your
16713 expressions have the same namespace available as the member function;
16714 that is, @value{GDBN} allows implicit references to the class instance
16715 pointer @code{this} following the same rules as C@t{++}.  @code{using}
16716 declarations in the current scope are also respected by @value{GDBN}.
16718 @cindex call overloaded functions
16719 @cindex overloaded functions, calling
16720 @cindex type conversions in C@t{++}
16721 @item
16722 You can call overloaded functions; @value{GDBN} resolves the function
16723 call to the right definition, with some restrictions.  @value{GDBN} does not
16724 perform overload resolution involving user-defined type conversions,
16725 calls to constructors, or instantiations of templates that do not exist
16726 in the program.  It also cannot handle ellipsis argument lists or
16727 default arguments.
16729 It does perform integral conversions and promotions, floating-point
16730 promotions, arithmetic conversions, pointer conversions, conversions of
16731 class objects to base classes, and standard conversions such as those of
16732 functions or arrays to pointers; it requires an exact match on the
16733 number of function arguments.
16735 Overload resolution is always performed, unless you have specified
16736 @code{set overload-resolution off}.  @xref{Debugging C Plus Plus,
16737 ,@value{GDBN} Features for C@t{++}}.
16739 You must specify @code{set overload-resolution off} in order to use an
16740 explicit function signature to call an overloaded function, as in
16741 @smallexample
16742 p 'foo(char,int)'('x', 13)
16743 @end smallexample
16745 The @value{GDBN} command-completion facility can simplify this;
16746 see @ref{Completion, ,Command Completion}.
16748 @cindex reference declarations
16749 @item
16750 @value{GDBN} understands variables declared as C@t{++} lvalue or rvalue
16751 references; you can use them in expressions just as you do in C@t{++}
16752 source---they are automatically dereferenced.
16754 In the parameter list shown when @value{GDBN} displays a frame, the values of
16755 reference variables are not displayed (unlike other variables); this
16756 avoids clutter, since references are often used for large structures.
16757 The @emph{address} of a reference variable is always shown, unless
16758 you have specified @samp{set print address off}.
16760 @item
16761 @value{GDBN} supports the C@t{++} name resolution operator @code{::}---your
16762 expressions can use it just as expressions in your program do.  Since
16763 one scope may be defined in another, you can use @code{::} repeatedly if
16764 necessary, for example in an expression like
16765 @samp{@var{scope1}::@var{scope2}::@var{name}}.  @value{GDBN} also allows
16766 resolving name scope by reference to source files, in both C and C@t{++}
16767 debugging (@pxref{Variables, ,Program Variables}).
16769 @item
16770 @value{GDBN} performs argument-dependent lookup, following the C@t{++}
16771 specification.
16772 @end enumerate
16774 @node C Defaults
16775 @subsubsection C and C@t{++} Defaults
16777 @cindex C and C@t{++} defaults
16779 If you allow @value{GDBN} to set range checking automatically, it
16780 defaults to @code{off} whenever the working language changes to
16781 C or C@t{++}.  This happens regardless of whether you or @value{GDBN}
16782 selects the working language.
16784 If you allow @value{GDBN} to set the language automatically, it
16785 recognizes source files whose names end with @file{.c}, @file{.C}, or
16786 @file{.cc}, etc, and when @value{GDBN} enters code compiled from one of
16787 these files, it sets the working language to C or C@t{++}.
16788 @xref{Automatically, ,Having @value{GDBN} Infer the Source Language},
16789 for further details.
16791 @node C Checks
16792 @subsubsection C and C@t{++} Type and Range Checks
16794 @cindex C and C@t{++} checks
16796 By default, when @value{GDBN} parses C or C@t{++} expressions, strict type
16797 checking is used.  However, if you turn type checking off, @value{GDBN}
16798 will allow certain non-standard conversions, such as promoting integer
16799 constants to pointers.
16801 Range checking, if turned on, is done on mathematical operations.  Array
16802 indices are not checked, since they are often used to index a pointer
16803 that is not itself an array.
16805 @node Debugging C
16806 @subsubsection @value{GDBN} and C
16808 The @code{set print union} and @code{show print union} commands apply to
16809 the @code{union} type.  When set to @samp{on}, any @code{union} that is
16810 inside a @code{struct} or @code{class} is also printed.  Otherwise, it
16811 appears as @samp{@{...@}}.
16813 The @code{@@} operator aids in the debugging of dynamic arrays, formed
16814 with pointers and a memory allocation function.  @xref{Expressions,
16815 ,Expressions}.
16817 @node Debugging C Plus Plus
16818 @subsubsection @value{GDBN} Features for C@t{++}
16820 @cindex commands for C@t{++}
16822 Some @value{GDBN} commands are particularly useful with C@t{++}, and some are
16823 designed specifically for use with C@t{++}.  Here is a summary:
16825 @table @code
16826 @cindex break in overloaded functions
16827 @item @r{breakpoint menus}
16828 When you want a breakpoint in a function whose name is overloaded,
16829 @value{GDBN} has the capability to display a menu of possible breakpoint
16830 locations to help you specify which function definition you want.
16831 @xref{Ambiguous Expressions,,Ambiguous Expressions}.
16833 @cindex overloading in C@t{++}
16834 @item rbreak @var{regex}
16835 Setting breakpoints using regular expressions is helpful for setting
16836 breakpoints on overloaded functions that are not members of any special
16837 classes.
16838 @xref{Set Breaks, ,Setting Breakpoints}.
16840 @cindex C@t{++} exception handling
16841 @item catch throw
16842 @itemx catch rethrow
16843 @itemx catch catch
16844 Debug C@t{++} exception handling using these commands.  @xref{Set
16845 Catchpoints, , Setting Catchpoints}.
16847 @cindex inheritance
16848 @item ptype @var{typename}
16849 Print inheritance relationships as well as other information for type
16850 @var{typename}.
16851 @xref{Symbols, ,Examining the Symbol Table}.
16853 @item info vtbl @var{expression}.
16854 The @code{info vtbl} command can be used to display the virtual
16855 method tables of the object computed by @var{expression}.  This shows
16856 one entry per virtual table; there may be multiple virtual tables when
16857 multiple inheritance is in use.
16859 @cindex C@t{++} demangling
16860 @item demangle @var{name}
16861 Demangle @var{name}.
16862 @xref{Symbols}, for a more complete description of the @code{demangle} command.
16864 @cindex C@t{++} symbol display
16865 @item set print demangle
16866 @itemx show print demangle
16867 @itemx set print asm-demangle
16868 @itemx show print asm-demangle
16869 Control whether C@t{++} symbols display in their source form, both when
16870 displaying code as C@t{++} source and when displaying disassemblies.
16871 @xref{Print Settings, ,Print Settings}.
16873 @item set print object
16874 @itemx show print object
16875 Choose whether to print derived (actual) or declared types of objects.
16876 @xref{Print Settings, ,Print Settings}.
16878 @item set print vtbl
16879 @itemx show print vtbl
16880 Control the format for printing virtual function tables.
16881 @xref{Print Settings, ,Print Settings}.
16882 (The @code{vtbl} commands do not work on programs compiled with the HP
16883 ANSI C@t{++} compiler (@code{aCC}).)
16885 @kindex set overload-resolution
16886 @cindex overloaded functions, overload resolution
16887 @item set overload-resolution on
16888 Enable overload resolution for C@t{++} expression evaluation.  The default
16889 is on.  For overloaded functions, @value{GDBN} evaluates the arguments
16890 and searches for a function whose signature matches the argument types,
16891 using the standard C@t{++} conversion rules (see @ref{C Plus Plus
16892 Expressions, ,C@t{++} Expressions}, for details).
16893 If it cannot find a match, it emits a message.
16895 @item set overload-resolution off
16896 Disable overload resolution for C@t{++} expression evaluation.  For
16897 overloaded functions that are not class member functions, @value{GDBN}
16898 chooses the first function of the specified name that it finds in the
16899 symbol table, whether or not its arguments are of the correct type.  For
16900 overloaded functions that are class member functions, @value{GDBN}
16901 searches for a function whose signature @emph{exactly} matches the
16902 argument types.
16904 @kindex show overload-resolution
16905 @item show overload-resolution
16906 Show the current setting of overload resolution.
16908 @item @r{Overloaded symbol names}
16909 You can specify a particular definition of an overloaded symbol, using
16910 the same notation that is used to declare such symbols in C@t{++}: type
16911 @code{@var{symbol}(@var{types})} rather than just @var{symbol}.  You can
16912 also use the @value{GDBN} command-line word completion facilities to list the
16913 available choices, or to finish the type list for you.
16914 @xref{Completion,, Command Completion}, for details on how to do this.
16916 @item @r{Breakpoints in template functions}
16918 Similar to how overloaded symbols are handled, @value{GDBN} will ignore
16919 template parameter lists when it encounters a symbol which includes a
16920 C@t{++} template.  This permits setting breakpoints on families of template functions
16921 or functions whose parameters include template types.
16923 The @kbd{-qualified} flag may be used to override this behavior, causing
16924 @value{GDBN} to search for a specific function or type.
16926 The @value{GDBN} command-line word completion facility also understands
16927 template parameters and may be used to list available choices or finish
16928 template parameter lists for you. @xref{Completion,, Command Completion}, for
16929 details on how to do this.
16931 @item @r{Breakpoints in functions with ABI tags}
16933 The GNU C@t{++} compiler introduced the notion of ABI ``tags'', which
16934 correspond to changes in the ABI of a type, function, or variable that
16935 would not otherwise be reflected in a mangled name.  See
16936 @url{https://developers.redhat.com/blog/2015/02/05/gcc5-and-the-c11-abi/}
16937 for more detail.
16939 The ABI tags are visible in C@t{++} demangled names.  For example, a
16940 function that returns a std::string:
16942 @smallexample
16943 std::string function(int);
16944 @end smallexample
16946 @noindent
16947 when compiled for the C++11 ABI is marked with the @code{cxx11} ABI
16948 tag, and @value{GDBN} displays the symbol like this:
16950 @smallexample
16951 function[abi:cxx11](int)
16952 @end smallexample
16954 You can set a breakpoint on such functions simply as if they had no
16955 tag.  For example:
16957 @smallexample
16958 (gdb) b function(int)
16959 Breakpoint 2 at 0x40060d: file main.cc, line 10.
16960 (gdb) info breakpoints
16961 Num     Type           Disp Enb Address    What
16962 1       breakpoint     keep y   0x0040060d in function[abi:cxx11](int)
16963                                            at main.cc:10
16964 @end smallexample
16966 On the rare occasion you need to disambiguate between different ABI
16967 tags, you can do so by simply including the ABI tag in the function
16968 name, like:
16970 @smallexample
16971 (@value{GDBP}) b ambiguous[abi:other_tag](int)
16972 @end smallexample
16973 @end table
16975 @node Decimal Floating Point
16976 @subsubsection Decimal Floating Point format
16977 @cindex decimal floating point format
16979 @value{GDBN} can examine, set and perform computations with numbers in
16980 decimal floating point format, which in the C language correspond to the
16981 @code{_Decimal32}, @code{_Decimal64} and @code{_Decimal128} types as
16982 specified by the extension to support decimal floating-point arithmetic.
16984 There are two encodings in use, depending on the architecture: BID (Binary
16985 Integer Decimal) for x86 and x86-64, and DPD (Densely Packed Decimal) for
16986 PowerPC and S/390.  @value{GDBN} will use the appropriate encoding for the
16987 configured target.
16989 Because of a limitation in @file{libdecnumber}, the library used by @value{GDBN}
16990 to manipulate decimal floating point numbers, it is not possible to convert
16991 (using a cast, for example) integers wider than 32-bit to decimal float.
16993 In addition, in order to imitate @value{GDBN}'s behaviour with binary floating
16994 point computations, error checking in decimal float operations ignores
16995 underflow, overflow and divide by zero exceptions.
16997 In the PowerPC architecture, @value{GDBN} provides a set of pseudo-registers
16998 to inspect @code{_Decimal128} values stored in floating point registers.
16999 See @ref{PowerPC,,PowerPC} for more details.
17001 @node D
17002 @subsection D
17004 @cindex D
17005 @value{GDBN} can be used to debug programs written in D and compiled with
17006 GDC, LDC or DMD compilers. Currently @value{GDBN} supports only one D
17007 specific feature --- dynamic arrays.
17009 @node Go
17010 @subsection Go
17012 @cindex Go (programming language)
17013 @value{GDBN} can be used to debug programs written in Go and compiled with
17014 @file{gccgo} or @file{6g} compilers.
17016 Here is a summary of the Go-specific features and restrictions:
17018 @table @code
17019 @cindex current Go package
17020 @item The current Go package
17021 The name of the current package does not need to be specified when
17022 specifying global variables and functions.
17024 For example, given the program:
17026 @example
17027 package main
17028 var myglob = "Shall we?"
17029 func main () @{
17030   // ...
17032 @end example
17034 When stopped inside @code{main} either of these work:
17036 @example
17037 (gdb) p myglob
17038 (gdb) p main.myglob
17039 @end example
17041 @cindex builtin Go types
17042 @item Builtin Go types
17043 The @code{string} type is recognized by @value{GDBN} and is printed
17044 as a string.
17046 @cindex builtin Go functions
17047 @item Builtin Go functions
17048 The @value{GDBN} expression parser recognizes the @code{unsafe.Sizeof}
17049 function and handles it internally.
17051 @cindex restrictions on Go expressions
17052 @item Restrictions on Go expressions
17053 All Go operators are supported except @code{&^}.
17054 The Go @code{_} ``blank identifier'' is not supported.
17055 Automatic dereferencing of pointers is not supported.
17056 @end table
17058 @node Objective-C
17059 @subsection Objective-C
17061 @cindex Objective-C
17062 This section provides information about some commands and command
17063 options that are useful for debugging Objective-C code.  See also
17064 @ref{Symbols, info classes}, and @ref{Symbols, info selectors}, for a
17065 few more commands specific to Objective-C support.
17067 @menu
17068 * Method Names in Commands::
17069 * The Print Command with Objective-C::
17070 @end menu
17072 @node Method Names in Commands
17073 @subsubsection Method Names in Commands
17075 The following commands have been extended to accept Objective-C method
17076 names as line specifications:
17078 @kindex clear@r{, and Objective-C}
17079 @kindex break@r{, and Objective-C}
17080 @kindex info line@r{, and Objective-C}
17081 @kindex jump@r{, and Objective-C}
17082 @kindex list@r{, and Objective-C}
17083 @itemize
17084 @item @code{clear}
17085 @item @code{break}
17086 @item @code{info line}
17087 @item @code{jump}
17088 @item @code{list}
17089 @end itemize
17091 A fully qualified Objective-C method name is specified as
17093 @smallexample
17094 -[@var{Class} @var{methodName}]
17095 @end smallexample
17097 where the minus sign is used to indicate an instance method and a
17098 plus sign (not shown) is used to indicate a class method.  The class
17099 name @var{Class} and method name @var{methodName} are enclosed in
17100 brackets, similar to the way messages are specified in Objective-C
17101 source code.  For example, to set a breakpoint at the @code{create}
17102 instance method of class @code{Fruit} in the program currently being
17103 debugged, enter:
17105 @smallexample
17106 break -[Fruit create]
17107 @end smallexample
17109 To list ten program lines around the @code{initialize} class method,
17110 enter:
17112 @smallexample
17113 list +[NSText initialize]
17114 @end smallexample
17116 In the current version of @value{GDBN}, the plus or minus sign is
17117 required.  In future versions of @value{GDBN}, the plus or minus
17118 sign will be optional, but you can use it to narrow the search.  It
17119 is also possible to specify just a method name:
17121 @smallexample
17122 break create
17123 @end smallexample
17125 You must specify the complete method name, including any colons.  If
17126 your program's source files contain more than one @code{create} method,
17127 you'll be presented with a numbered list of classes that implement that
17128 method.  Indicate your choice by number, or type @samp{0} to exit if
17129 none apply.
17131 As another example, to clear a breakpoint established at the
17132 @code{makeKeyAndOrderFront:} method of the @code{NSWindow} class, enter:
17134 @smallexample
17135 clear -[NSWindow makeKeyAndOrderFront:]
17136 @end smallexample
17138 @node The Print Command with Objective-C
17139 @subsubsection The Print Command With Objective-C
17140 @cindex Objective-C, print objects
17141 @kindex print-object
17142 @kindex po @r{(@code{print-object})}
17144 The print command has also been extended to accept methods.  For example:
17146 @smallexample
17147 print -[@var{object} hash]
17148 @end smallexample
17150 @cindex print an Objective-C object description
17151 @cindex @code{_NSPrintForDebugger}, and printing Objective-C objects
17152 @noindent
17153 will tell @value{GDBN} to send the @code{hash} message to @var{object}
17154 and print the result.  Also, an additional command has been added,
17155 @code{print-object} or @code{po} for short, which is meant to print
17156 the description of an object.  However, this command may only work
17157 with certain Objective-C libraries that have a particular hook
17158 function, @code{_NSPrintForDebugger}, defined.
17160 @node OpenCL C
17161 @subsection OpenCL C
17163 @cindex OpenCL C
17164 This section provides information about @value{GDBN}s OpenCL C support.
17166 @menu
17167 * OpenCL C Datatypes::
17168 * OpenCL C Expressions::
17169 * OpenCL C Operators::
17170 @end menu
17172 @node OpenCL C Datatypes
17173 @subsubsection OpenCL C Datatypes
17175 @cindex OpenCL C Datatypes
17176 @value{GDBN} supports the builtin scalar and vector datatypes specified
17177 by OpenCL 1.1.  In addition the half- and double-precision floating point
17178 data types of the @code{cl_khr_fp16} and @code{cl_khr_fp64} OpenCL
17179 extensions are also known to @value{GDBN}.
17181 @node OpenCL C Expressions
17182 @subsubsection OpenCL C Expressions
17184 @cindex OpenCL C Expressions
17185 @value{GDBN} supports accesses to vector components including the access as
17186 lvalue where possible.  Since OpenCL C is based on C99 most C expressions
17187 supported by @value{GDBN} can be used as well.
17189 @node OpenCL C Operators
17190 @subsubsection OpenCL C Operators
17192 @cindex OpenCL C Operators
17193 @value{GDBN} supports the operators specified by OpenCL 1.1 for scalar and
17194 vector data types.
17196 @node Fortran
17197 @subsection Fortran
17198 @cindex Fortran-specific support in @value{GDBN}
17200 @value{GDBN} can be used to debug programs written in Fortran.  Note, that not
17201 all Fortran language features are available yet.
17203 @cindex trailing underscore, in Fortran symbols
17204 Some Fortran compilers (@sc{gnu} Fortran 77 and Fortran 95 compilers
17205 among them) append an underscore to the names of variables and
17206 functions.  When you debug programs compiled by those compilers, you
17207 will need to refer to variables and functions with a trailing
17208 underscore.
17210 @cindex Fortran Defaults
17211 Fortran symbols are usually case-insensitive, so @value{GDBN} by
17212 default uses case-insensitive matching for Fortran symbols.  You can
17213 change that with the @samp{set case-insensitive} command, see
17214 @ref{Symbols}, for the details.
17216 @menu
17217 * Fortran Types::               Fortran builtin types
17218 * Fortran Operators::           Fortran operators and expressions
17219 * Fortran Intrinsics::          Fortran intrinsic functions
17220 * Special Fortran Commands::    Special @value{GDBN} commands for Fortran
17221 @end menu
17223 @node Fortran Types
17224 @subsubsection Fortran Types
17226 @cindex Fortran Types
17228 In Fortran the primitive data-types have an associated @code{KIND} type
17229 parameter, written as @samp{@var{type}*@var{kindparam}},
17230 @samp{@var{type}*@var{kindparam}}, or in the @value{GDBN}-only dialect
17231 @samp{@var{type}_@var{kindparam}}.  A concrete example would be
17232 @samp{@code{Real*4}}, @samp{@code{Real(kind=4)}}, and @samp{@code{Real_4}}.
17233 The kind of a type can be retrieved by using the intrinsic function
17234 @code{KIND}, see @ref{Fortran Intrinsics}.
17236 Generally, the actual implementation of the @code{KIND} type parameter is
17237 compiler specific.  In @value{GDBN} the kind parameter is implemented in
17238 accordance with its use in the @sc{gnu} @command{gfortran} compiler.  Here, the
17239 kind parameter for a given @var{type} specifies its size in memory --- a
17240 Fortran @code{Integer*4} or @code{Integer(kind=4)} would be an integer type
17241 occupying 4 bytes of memory.  An exception to this rule is the @code{Complex}
17242 type for which the kind of the type does not specify its entire size, but
17243 the size of each of the two @code{Real}'s it is composed of.  A
17244 @code{Complex*4} would thus consist of two @code{Real*4}s and occupy 8 bytes
17245 of memory.
17247 For every type there is also a default kind associated with it, e.g.@
17248 @code{Integer} in @value{GDBN} will internally be an @code{Integer*4} (see the
17249 table below for default types).  The default types are the same as in @sc{gnu}
17250 compilers but note, that the @sc{gnu} default types can actually be changed by
17251 compiler flags such as @option{-fdefault-integer-8} and
17252 @option{-fdefault-real-8}.
17254 Not every kind parameter is valid for every type and in @value{GDBN} the
17255 following type kinds are available.
17257 @table @code
17258 @item Integer
17259 @code{Integer*1}, @code{Integer*2}, @code{Integer*4}, @code{Integer*8}, and
17260 @code{Integer} = @code{Integer*4}.
17262 @item Logical
17263 @code{Logical*1}, @code{Logical*2}, @code{Logical*4}, @code{Logical*8}, and
17264 @code{Logical} = @code{Logical*4}.
17266 @item Real
17267 @code{Real*4}, @code{Real*8}, @code{Real*16}, and @code{Real} = @code{Real*4}.
17269 @item Complex
17270 @code{Complex*4}, @code{Complex*8}, @code{Complex*16}, and @code{Complex} =
17271 @code{Complex*4}.
17273 @end table
17275 @node Fortran Operators
17276 @subsubsection Fortran Operators and Expressions
17278 @cindex Fortran operators and expressions
17280 Operators must be defined on values of specific types.  For instance,
17281 @code{+} is defined on numbers, but not on characters or other non-
17282 arithmetic types.  Operators are often defined on groups of types.
17284 @table @code
17285 @item **
17286 The exponentiation operator.  It raises the first operand to the power
17287 of the second one.
17289 @item :
17290 The range operator.  Normally used in the form of array(low:high) to
17291 represent a section of array.
17293 @item %
17294 The access component operator.  Normally used to access elements in derived
17295 types.  Also suitable for unions.  As unions aren't part of regular Fortran,
17296 this can only happen when accessing a register that uses a gdbarch-defined
17297 union type.
17298 @item ::
17299 The scope operator.  Normally used to access variables in modules or
17300 to set breakpoints on subroutines nested in modules or in other
17301 subroutines (internal subroutines).
17302 @end table
17304 @node Fortran Intrinsics
17305 @subsubsection Fortran Intrinsics
17307 @cindex Fortran Intrinsics
17309 Fortran provides a large set of intrinsic procedures.  @value{GDBN} implements
17310 an incomplete subset of those procedures and their overloads.  Some of these
17311 procedures take an optional @code{KIND} parameter, see @ref{Fortran Types}.
17313 @table @code
17314 @item ABS(@var{a})
17315 Computes the absolute value of its argument @var{a}.  Currently not supported
17316 for @code{Complex} arguments.
17318 @item ALLOCATE(@var{array})
17319 Returns whether @var{array} is allocated or not.
17321 @item ASSOCIATED(@var{pointer} [, @var{target}])
17322 Returns the association status of the pointer @var{pointer} or, if @var{target}
17323 is present, whether @var{pointer} is associated with the target @var{target}.
17325 @item CEILING(@var{a} [, @var{kind}])
17326 Computes the least integer greater than or equal to @var{a}.  The optional
17327 parameter @var{kind} specifies the kind of the return type
17328 @code{Integer(@var{kind})}.
17330 @item CMPLX(@var{x} [, @var{y} [, @var{kind}]])
17331 Returns a complex number where @var{x} is converted to the real component.  If
17332 @var{y} is present it is converted to the imaginary component.  If @var{y} is
17333 not present then the imaginary component is set to @code{0.0} except if @var{x}
17334 itself is of @code{Complex} type.  The optional parameter @var{kind} specifies
17335 the kind of the return type @code{Complex(@var{kind})}.
17337 @item FLOOR(@var{a} [, @var{kind}])
17338 Computes the greatest integer less than or equal to @var{a}.  The optional
17339 parameter @var{kind} specifies the kind of the return type
17340 @code{Integer(@var{kind})}.
17342 @item KIND(@var{a})
17343 Returns the kind value of the argument @var{a}, see @ref{Fortran Types}.
17345 @item LBOUND(@var{array} [, @var{dim} [, @var{kind}]])
17346 Returns the lower bounds of an @var{array}, or a single lower bound along the
17347 @var{dim} dimension if present.  The optional parameter @var{kind} specifies
17348 the kind of the return type @code{Integer(@var{kind})}.
17350 @item LOC(@var{x})
17351 Returns the address of @var{x} as an @code{Integer}.
17353 @item MOD(@var{a}, @var{p})
17354 Computes the remainder of the division of @var{a} by @var{p}.
17356 @item MODULO(@var{a}, @var{p})
17357 Computes the @var{a} modulo @var{p}.
17359 @item RANK(@var{a})
17360 Returns the rank of a scalar or array (scalars have rank @code{0}).
17362 @item SHAPE(@var{a})
17363 Returns the shape of a scalar or array (scalars have shape @samp{()}).
17365 @item SIZE(@var{array}[, @var{dim} [, @var{kind}]])
17366 Returns the extent of @var{array} along a specified dimension @var{dim}, or the
17367 total number of elements in @var{array} if @var{dim} is absent.  The optional
17368 parameter @var{kind} specifies the kind of the return type
17369 @code{Integer(@var{kind})}.
17371 @item UBOUND(@var{array} [, @var{dim} [, @var{kind}]])
17372 Returns the upper bounds of an @var{array}, or a single upper bound along the
17373 @var{dim} dimension if present.  The optional parameter @var{kind} specifies
17374 the kind of the return type @code{Integer(@var{kind})}.
17376 @end table
17378 @node Special Fortran Commands
17379 @subsubsection Special Fortran Commands
17381 @cindex Special Fortran commands
17383 @value{GDBN} has some commands to support Fortran-specific features,
17384 such as displaying common blocks.
17386 @table @code
17387 @cindex @code{COMMON} blocks, Fortran
17388 @kindex info common
17389 @item info common @r{[}@var{common-name}@r{]}
17390 This command prints the values contained in the Fortran @code{COMMON}
17391 block whose name is @var{common-name}.  With no argument, the names of
17392 all @code{COMMON} blocks visible at the current program location are
17393 printed.
17394 @cindex arrays slices (Fortran)
17395 @kindex set fortran repack-array-slices
17396 @kindex show fortran repack-array-slices
17397 @item set fortran repack-array-slices [on|off]
17398 @item show fortran repack-array-slices
17399 When taking a slice from an array, a Fortran compiler can choose to
17400 either produce an array descriptor that describes the slice in place,
17401 or it may repack the slice, copying the elements of the slice into a
17402 new region of memory.
17404 When this setting is on, then @value{GDBN} will also repack array
17405 slices in some situations.  When this setting is off, then
17406 @value{GDBN} will create array descriptors for slices that reference
17407 the original data in place.
17409 @value{GDBN} will never repack an array slice if the data for the
17410 slice is contiguous within the original array.
17412 @value{GDBN} will always repack string slices if the data for the
17413 slice is non-contiguous within the original string as @value{GDBN}
17414 does not support printing non-contiguous strings.
17416 The default for this setting is @code{off}.
17417 @end table
17419 @node Pascal
17420 @subsection Pascal
17422 @cindex Pascal support in @value{GDBN}, limitations
17423 Debugging Pascal programs which use sets, subranges, file variables, or
17424 nested functions does not currently work.  @value{GDBN} does not support
17425 entering expressions, printing values, or similar features using Pascal
17426 syntax.
17428 The Pascal-specific command @code{set print pascal_static-members}
17429 controls whether static members of Pascal objects are displayed.
17430 @xref{Print Settings, pascal_static-members}.
17432 @node Rust
17433 @subsection Rust
17435 @value{GDBN} supports the @url{https://www.rust-lang.org/, Rust
17436 Programming Language}.  Type- and value-printing, and expression
17437 parsing, are reasonably complete.  However, there are a few
17438 peculiarities and holes to be aware of.
17440 @itemize @bullet
17441 @item
17442 Linespecs (@pxref{Specify Location}) are never relative to the current
17443 crate.  Instead, they act as if there were a global namespace of
17444 crates, somewhat similar to the way @code{extern crate} behaves.
17446 That is, if @value{GDBN} is stopped at a breakpoint in a function in
17447 crate @samp{A}, module @samp{B}, then @code{break B::f} will attempt
17448 to set a breakpoint in a function named @samp{f} in a crate named
17449 @samp{B}.
17451 As a consequence of this approach, linespecs also cannot refer to
17452 items using @samp{self::} or @samp{super::}.
17454 @item
17455 Because @value{GDBN} implements Rust name-lookup semantics in
17456 expressions, it will sometimes prepend the current crate to a name.
17457 For example, if @value{GDBN} is stopped at a breakpoint in the crate
17458 @samp{K}, then @code{print ::x::y} will try to find the symbol
17459 @samp{K::x::y}.
17461 However, since it is useful to be able to refer to other crates when
17462 debugging, @value{GDBN} provides the @code{extern} extension to
17463 circumvent this.  To use the extension, just put @code{extern} before
17464 a path expression to refer to the otherwise unavailable ``global''
17465 scope.
17467 In the above example, if you wanted to refer to the symbol @samp{y} in
17468 the crate @samp{x}, you would use @code{print extern x::y}.
17470 @item
17471 The Rust expression evaluator does not support ``statement-like''
17472 expressions such as @code{if} or @code{match}, or lambda expressions.
17474 @item
17475 Tuple expressions are not implemented.
17477 @item
17478 The Rust expression evaluator does not currently implement the
17479 @code{Drop} trait.  Objects that may be created by the evaluator will
17480 never be destroyed.
17482 @item
17483 @value{GDBN} does not implement type inference for generics.  In order
17484 to call generic functions or otherwise refer to generic items, you
17485 will have to specify the type parameters manually.
17487 @item
17488 @value{GDBN} currently uses the C@t{++} demangler for Rust.  In most
17489 cases this does not cause any problems.  However, in an expression
17490 context, completing a generic function name will give syntactically
17491 invalid results.  This happens because Rust requires the @samp{::}
17492 operator between the function name and its generic arguments.  For
17493 example, @value{GDBN} might provide a completion like
17494 @code{crate::f<u32>}, where the parser would require
17495 @code{crate::f::<u32>}.
17497 @item
17498 As of this writing, the Rust compiler (version 1.8) has a few holes in
17499 the debugging information it generates.  These holes prevent certain
17500 features from being implemented by @value{GDBN}:
17501 @itemize @bullet
17503 @item
17504 Method calls cannot be made via traits.
17506 @item
17507 Operator overloading is not implemented.
17509 @item
17510 When debugging in a monomorphized function, you cannot use the generic
17511 type names.
17513 @item
17514 The type @code{Self} is not available.
17516 @item
17517 @code{use} statements are not available, so some names may not be
17518 available in the crate.
17519 @end itemize
17520 @end itemize
17522 @node Modula-2
17523 @subsection Modula-2
17525 @cindex Modula-2, @value{GDBN} support
17527 The extensions made to @value{GDBN} to support Modula-2 only support
17528 output from the @sc{gnu} Modula-2 compiler (which is currently being
17529 developed).  Other Modula-2 compilers are not currently supported, and
17530 attempting to debug executables produced by them is most likely
17531 to give an error as @value{GDBN} reads in the executable's symbol
17532 table.
17534 @cindex expressions in Modula-2
17535 @menu
17536 * M2 Operators::                Built-in operators
17537 * Built-In Func/Proc::          Built-in functions and procedures
17538 * M2 Constants::                Modula-2 constants
17539 * M2 Types::                    Modula-2 types
17540 * M2 Defaults::                 Default settings for Modula-2
17541 * Deviations::                  Deviations from standard Modula-2
17542 * M2 Checks::                   Modula-2 type and range checks
17543 * M2 Scope::                    The scope operators @code{::} and @code{.}
17544 * GDB/M2::                      @value{GDBN} and Modula-2
17545 @end menu
17547 @node M2 Operators
17548 @subsubsection Operators
17549 @cindex Modula-2 operators
17551 Operators must be defined on values of specific types.  For instance,
17552 @code{+} is defined on numbers, but not on structures.  Operators are
17553 often defined on groups of types.  For the purposes of Modula-2, the
17554 following definitions hold:
17556 @itemize @bullet
17558 @item
17559 @emph{Integral types} consist of @code{INTEGER}, @code{CARDINAL}, and
17560 their subranges.
17562 @item
17563 @emph{Character types} consist of @code{CHAR} and its subranges.
17565 @item
17566 @emph{Floating-point types} consist of @code{REAL}.
17568 @item
17569 @emph{Pointer types} consist of anything declared as @code{POINTER TO
17570 @var{type}}.
17572 @item
17573 @emph{Scalar types} consist of all of the above.
17575 @item
17576 @emph{Set types} consist of @code{SET} and @code{BITSET} types.
17578 @item
17579 @emph{Boolean types} consist of @code{BOOLEAN}.
17580 @end itemize
17582 @noindent
17583 The following operators are supported, and appear in order of
17584 increasing precedence:
17586 @table @code
17587 @item ,
17588 Function argument or array index separator.
17590 @item :=
17591 Assignment.  The value of @var{var} @code{:=} @var{value} is
17592 @var{value}.
17594 @item <@r{, }>
17595 Less than, greater than on integral, floating-point, or enumerated
17596 types.
17598 @item <=@r{, }>=
17599 Less than or equal to, greater than or equal to
17600 on integral, floating-point and enumerated types, or set inclusion on
17601 set types.  Same precedence as @code{<}.
17603 @item =@r{, }<>@r{, }#
17604 Equality and two ways of expressing inequality, valid on scalar types.
17605 Same precedence as @code{<}.  In @value{GDBN} scripts, only @code{<>} is
17606 available for inequality, since @code{#} conflicts with the script
17607 comment character.
17609 @item IN
17610 Set membership.  Defined on set types and the types of their members.
17611 Same precedence as @code{<}.
17613 @item OR
17614 Boolean disjunction.  Defined on boolean types.
17616 @item AND@r{, }&
17617 Boolean conjunction.  Defined on boolean types.
17619 @item @@
17620 The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
17622 @item +@r{, }-
17623 Addition and subtraction on integral and floating-point types, or union
17624 and difference on set types.
17626 @item *
17627 Multiplication on integral and floating-point types, or set intersection
17628 on set types.
17630 @item /
17631 Division on floating-point types, or symmetric set difference on set
17632 types.  Same precedence as @code{*}.
17634 @item DIV@r{, }MOD
17635 Integer division and remainder.  Defined on integral types.  Same
17636 precedence as @code{*}.
17638 @item -
17639 Negative.  Defined on @code{INTEGER} and @code{REAL} data.
17641 @item ^
17642 Pointer dereferencing.  Defined on pointer types.
17644 @item NOT
17645 Boolean negation.  Defined on boolean types.  Same precedence as
17646 @code{^}.
17648 @item .
17649 @code{RECORD} field selector.  Defined on @code{RECORD} data.  Same
17650 precedence as @code{^}.
17652 @item []
17653 Array indexing.  Defined on @code{ARRAY} data.  Same precedence as @code{^}.
17655 @item ()
17656 Procedure argument list.  Defined on @code{PROCEDURE} objects.  Same precedence
17657 as @code{^}.
17659 @item ::@r{, }.
17660 @value{GDBN} and Modula-2 scope operators.
17661 @end table
17663 @quotation
17664 @emph{Warning:} Set expressions and their operations are not yet supported, so @value{GDBN}
17665 treats the use of the operator @code{IN}, or the use of operators
17666 @code{+}, @code{-}, @code{*}, @code{/}, @code{=}, , @code{<>}, @code{#},
17667 @code{<=}, and @code{>=} on sets as an error.
17668 @end quotation
17671 @node Built-In Func/Proc
17672 @subsubsection Built-in Functions and Procedures
17673 @cindex Modula-2 built-ins
17675 Modula-2 also makes available several built-in procedures and functions.
17676 In describing these, the following metavariables are used:
17678 @table @var
17680 @item a
17681 represents an @code{ARRAY} variable.
17683 @item c
17684 represents a @code{CHAR} constant or variable.
17686 @item i
17687 represents a variable or constant of integral type.
17689 @item m
17690 represents an identifier that belongs to a set.  Generally used in the
17691 same function with the metavariable @var{s}.  The type of @var{s} should
17692 be @code{SET OF @var{mtype}} (where @var{mtype} is the type of @var{m}).
17694 @item n
17695 represents a variable or constant of integral or floating-point type.
17697 @item r
17698 represents a variable or constant of floating-point type.
17700 @item t
17701 represents a type.
17703 @item v
17704 represents a variable.
17706 @item x
17707 represents a variable or constant of one of many types.  See the
17708 explanation of the function for details.
17709 @end table
17711 All Modula-2 built-in procedures also return a result, described below.
17713 @table @code
17714 @item ABS(@var{n})
17715 Returns the absolute value of @var{n}.
17717 @item CAP(@var{c})
17718 If @var{c} is a lower case letter, it returns its upper case
17719 equivalent, otherwise it returns its argument.
17721 @item CHR(@var{i})
17722 Returns the character whose ordinal value is @var{i}.
17724 @item DEC(@var{v})
17725 Decrements the value in the variable @var{v} by one.  Returns the new value.
17727 @item DEC(@var{v},@var{i})
17728 Decrements the value in the variable @var{v} by @var{i}.  Returns the
17729 new value.
17731 @item EXCL(@var{m},@var{s})
17732 Removes the element @var{m} from the set @var{s}.  Returns the new
17733 set.
17735 @item FLOAT(@var{i})
17736 Returns the floating point equivalent of the integer @var{i}.
17738 @item HIGH(@var{a})
17739 Returns the index of the last member of @var{a}.
17741 @item INC(@var{v})
17742 Increments the value in the variable @var{v} by one.  Returns the new value.
17744 @item INC(@var{v},@var{i})
17745 Increments the value in the variable @var{v} by @var{i}.  Returns the
17746 new value.
17748 @item INCL(@var{m},@var{s})
17749 Adds the element @var{m} to the set @var{s} if it is not already
17750 there.  Returns the new set.
17752 @item MAX(@var{t})
17753 Returns the maximum value of the type @var{t}.
17755 @item MIN(@var{t})
17756 Returns the minimum value of the type @var{t}.
17758 @item ODD(@var{i})
17759 Returns boolean TRUE if @var{i} is an odd number.
17761 @item ORD(@var{x})
17762 Returns the ordinal value of its argument.  For example, the ordinal
17763 value of a character is its @sc{ascii} value (on machines supporting
17764 the @sc{ascii} character set).  The argument @var{x} must be of an
17765 ordered type, which include integral, character and enumerated types.
17767 @item SIZE(@var{x})
17768 Returns the size of its argument.  The argument @var{x} can be a
17769 variable or a type.
17771 @item TRUNC(@var{r})
17772 Returns the integral part of @var{r}.
17774 @item TSIZE(@var{x})
17775 Returns the size of its argument.  The argument @var{x} can be a
17776 variable or a type.
17778 @item VAL(@var{t},@var{i})
17779 Returns the member of the type @var{t} whose ordinal value is @var{i}.
17780 @end table
17782 @quotation
17783 @emph{Warning:}  Sets and their operations are not yet supported, so
17784 @value{GDBN} treats the use of procedures @code{INCL} and @code{EXCL} as
17785 an error.
17786 @end quotation
17788 @cindex Modula-2 constants
17789 @node M2 Constants
17790 @subsubsection Constants
17792 @value{GDBN} allows you to express the constants of Modula-2 in the following
17793 ways:
17795 @itemize @bullet
17797 @item
17798 Integer constants are simply a sequence of digits.  When used in an
17799 expression, a constant is interpreted to be type-compatible with the
17800 rest of the expression.  Hexadecimal integers are specified by a
17801 trailing @samp{H}, and octal integers by a trailing @samp{B}.
17803 @item
17804 Floating point constants appear as a sequence of digits, followed by a
17805 decimal point and another sequence of digits.  An optional exponent can
17806 then be specified, in the form @samp{E@r{[}+@r{|}-@r{]}@var{nnn}}, where
17807 @samp{@r{[}+@r{|}-@r{]}@var{nnn}} is the desired exponent.  All of the
17808 digits of the floating point constant must be valid decimal (base 10)
17809 digits.
17811 @item
17812 Character constants consist of a single character enclosed by a pair of
17813 like quotes, either single (@code{'}) or double (@code{"}).  They may
17814 also be expressed by their ordinal value (their @sc{ascii} value, usually)
17815 followed by a @samp{C}.
17817 @item
17818 String constants consist of a sequence of characters enclosed by a
17819 pair of like quotes, either single (@code{'}) or double (@code{"}).
17820 Escape sequences in the style of C are also allowed.  @xref{C
17821 Constants, ,C and C@t{++} Constants}, for a brief explanation of escape
17822 sequences.
17824 @item
17825 Enumerated constants consist of an enumerated identifier.
17827 @item
17828 Boolean constants consist of the identifiers @code{TRUE} and
17829 @code{FALSE}.
17831 @item
17832 Pointer constants consist of integral values only.
17834 @item
17835 Set constants are not yet supported.
17836 @end itemize
17838 @node M2 Types
17839 @subsubsection Modula-2 Types
17840 @cindex Modula-2 types
17842 Currently @value{GDBN} can print the following data types in Modula-2
17843 syntax: array types, record types, set types, pointer types, procedure
17844 types, enumerated types, subrange types and base types.  You can also
17845 print the contents of variables declared using these type.
17846 This section gives a number of simple source code examples together with
17847 sample @value{GDBN} sessions.
17849 The first example contains the following section of code:
17851 @smallexample
17853    s: SET OF CHAR ;
17854    r: [20..40] ;
17855 @end smallexample
17857 @noindent
17858 and you can request @value{GDBN} to interrogate the type and value of
17859 @code{r} and @code{s}.
17861 @smallexample
17862 (@value{GDBP}) print s
17863 @{'A'..'C', 'Z'@}
17864 (@value{GDBP}) ptype s
17865 SET OF CHAR
17866 (@value{GDBP}) print r
17868 (@value{GDBP}) ptype r
17869 [20..40]
17870 @end smallexample
17872 @noindent
17873 Likewise if your source code declares @code{s} as:
17875 @smallexample
17877    s: SET ['A'..'Z'] ;
17878 @end smallexample
17880 @noindent
17881 then you may query the type of @code{s} by:
17883 @smallexample
17884 (@value{GDBP}) ptype s
17885 type = SET ['A'..'Z']
17886 @end smallexample
17888 @noindent
17889 Note that at present you cannot interactively manipulate set
17890 expressions using the debugger.
17892 The following example shows how you might declare an array in Modula-2
17893 and how you can interact with @value{GDBN} to print its type and contents:
17895 @smallexample
17897    s: ARRAY [-10..10] OF CHAR ;
17898 @end smallexample
17900 @smallexample
17901 (@value{GDBP}) ptype s
17902 ARRAY [-10..10] OF CHAR
17903 @end smallexample
17905 Note that the array handling is not yet complete and although the type
17906 is printed correctly, expression handling still assumes that all
17907 arrays have a lower bound of zero and not @code{-10} as in the example
17908 above.
17910 Here are some more type related Modula-2 examples:
17912 @smallexample
17913 TYPE
17914    colour = (blue, red, yellow, green) ;
17915    t = [blue..yellow] ;
17917    s: t ;
17918 BEGIN
17919    s := blue ;
17920 @end smallexample
17922 @noindent
17923 The @value{GDBN} interaction shows how you can query the data type
17924 and value of a variable.
17926 @smallexample
17927 (@value{GDBP}) print s
17928 $1 = blue
17929 (@value{GDBP}) ptype t
17930 type = [blue..yellow]
17931 @end smallexample
17933 @noindent
17934 In this example a Modula-2 array is declared and its contents
17935 displayed.  Observe that the contents are written in the same way as
17936 their @code{C} counterparts.
17938 @smallexample
17940    s: ARRAY [1..5] OF CARDINAL ;
17941 BEGIN
17942    s[1] := 1 ;
17943 @end smallexample
17945 @smallexample
17946 (@value{GDBP}) print s
17947 $1 = @{1, 0, 0, 0, 0@}
17948 (@value{GDBP}) ptype s
17949 type = ARRAY [1..5] OF CARDINAL
17950 @end smallexample
17952 The Modula-2 language interface to @value{GDBN} also understands
17953 pointer types as shown in this example:
17955 @smallexample
17957    s: POINTER TO ARRAY [1..5] OF CARDINAL ;
17958 BEGIN
17959    NEW(s) ;
17960    s^[1] := 1 ;
17961 @end smallexample
17963 @noindent
17964 and you can request that @value{GDBN} describes the type of @code{s}.
17966 @smallexample
17967 (@value{GDBP}) ptype s
17968 type = POINTER TO ARRAY [1..5] OF CARDINAL
17969 @end smallexample
17971 @value{GDBN} handles compound types as we can see in this example.
17972 Here we combine array types, record types, pointer types and subrange
17973 types:
17975 @smallexample
17976 TYPE
17977    foo = RECORD
17978             f1: CARDINAL ;
17979             f2: CHAR ;
17980             f3: myarray ;
17981          END ;
17983    myarray = ARRAY myrange OF CARDINAL ;
17984    myrange = [-2..2] ;
17986    s: POINTER TO ARRAY myrange OF foo ;
17987 @end smallexample
17989 @noindent
17990 and you can ask @value{GDBN} to describe the type of @code{s} as shown
17991 below.
17993 @smallexample
17994 (@value{GDBP}) ptype s
17995 type = POINTER TO ARRAY [-2..2] OF foo = RECORD
17996     f1 : CARDINAL;
17997     f2 : CHAR;
17998     f3 : ARRAY [-2..2] OF CARDINAL;
17999 END 
18000 @end smallexample
18002 @node M2 Defaults
18003 @subsubsection Modula-2 Defaults
18004 @cindex Modula-2 defaults
18006 If type and range checking are set automatically by @value{GDBN}, they
18007 both default to @code{on} whenever the working language changes to
18008 Modula-2.  This happens regardless of whether you or @value{GDBN}
18009 selected the working language.
18011 If you allow @value{GDBN} to set the language automatically, then entering
18012 code compiled from a file whose name ends with @file{.mod} sets the
18013 working language to Modula-2.  @xref{Automatically, ,Having @value{GDBN}
18014 Infer the Source Language}, for further details.
18016 @node Deviations
18017 @subsubsection Deviations from Standard Modula-2
18018 @cindex Modula-2, deviations from
18020 A few changes have been made to make Modula-2 programs easier to debug.
18021 This is done primarily via loosening its type strictness:
18023 @itemize @bullet
18024 @item
18025 Unlike in standard Modula-2, pointer constants can be formed by
18026 integers.  This allows you to modify pointer variables during
18027 debugging.  (In standard Modula-2, the actual address contained in a
18028 pointer variable is hidden from you; it can only be modified
18029 through direct assignment to another pointer variable or expression that
18030 returned a pointer.)
18032 @item
18033 C escape sequences can be used in strings and characters to represent
18034 non-printable characters.  @value{GDBN} prints out strings with these
18035 escape sequences embedded.  Single non-printable characters are
18036 printed using the @samp{CHR(@var{nnn})} format.
18038 @item
18039 The assignment operator (@code{:=}) returns the value of its right-hand
18040 argument.
18042 @item
18043 All built-in procedures both modify @emph{and} return their argument.
18044 @end itemize
18046 @node M2 Checks
18047 @subsubsection Modula-2 Type and Range Checks
18048 @cindex Modula-2 checks
18050 @quotation
18051 @emph{Warning:} in this release, @value{GDBN} does not yet perform type or
18052 range checking.
18053 @end quotation
18054 @c FIXME remove warning when type/range checks added
18056 @value{GDBN} considers two Modula-2 variables type equivalent if:
18058 @itemize @bullet
18059 @item
18060 They are of types that have been declared equivalent via a @code{TYPE
18061 @var{t1} = @var{t2}} statement
18063 @item
18064 They have been declared on the same line.  (Note:  This is true of the
18065 @sc{gnu} Modula-2 compiler, but it may not be true of other compilers.)
18066 @end itemize
18068 As long as type checking is enabled, any attempt to combine variables
18069 whose types are not equivalent is an error.
18071 Range checking is done on all mathematical operations, assignment, array
18072 index bounds, and all built-in functions and procedures.
18074 @node M2 Scope
18075 @subsubsection The Scope Operators @code{::} and @code{.}
18076 @cindex scope
18077 @cindex @code{.}, Modula-2 scope operator
18078 @cindex colon, doubled as scope operator
18079 @ifinfo
18080 @vindex colon-colon@r{, in Modula-2}
18081 @c Info cannot handle :: but TeX can.
18082 @end ifinfo
18083 @ifnotinfo
18084 @vindex ::@r{, in Modula-2}
18085 @end ifnotinfo
18087 There are a few subtle differences between the Modula-2 scope operator
18088 (@code{.}) and the @value{GDBN} scope operator (@code{::}).  The two have
18089 similar syntax:
18091 @smallexample
18093 @var{module} . @var{id}
18094 @var{scope} :: @var{id}
18095 @end smallexample
18097 @noindent
18098 where @var{scope} is the name of a module or a procedure,
18099 @var{module} the name of a module, and @var{id} is any declared
18100 identifier within your program, except another module.
18102 Using the @code{::} operator makes @value{GDBN} search the scope
18103 specified by @var{scope} for the identifier @var{id}.  If it is not
18104 found in the specified scope, then @value{GDBN} searches all scopes
18105 enclosing the one specified by @var{scope}.
18107 Using the @code{.} operator makes @value{GDBN} search the current scope for
18108 the identifier specified by @var{id} that was imported from the
18109 definition module specified by @var{module}.  With this operator, it is
18110 an error if the identifier @var{id} was not imported from definition
18111 module @var{module}, or if @var{id} is not an identifier in
18112 @var{module}.
18114 @node GDB/M2
18115 @subsubsection @value{GDBN} and Modula-2
18117 Some @value{GDBN} commands have little use when debugging Modula-2 programs.
18118 Five subcommands of @code{set print} and @code{show print} apply
18119 specifically to C and C@t{++}: @samp{vtbl}, @samp{demangle},
18120 @samp{asm-demangle}, @samp{object}, and @samp{union}.  The first four
18121 apply to C@t{++}, and the last to the C @code{union} type, which has no direct
18122 analogue in Modula-2.
18124 The @code{@@} operator (@pxref{Expressions, ,Expressions}), while available
18125 with any language, is not useful with Modula-2.  Its
18126 intent is to aid the debugging of @dfn{dynamic arrays}, which cannot be
18127 created in Modula-2 as they can in C or C@t{++}.  However, because an
18128 address can be specified by an integral constant, the construct
18129 @samp{@{@var{type}@}@var{adrexp}} is still useful.
18131 @cindex @code{#} in Modula-2
18132 In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is
18133 interpreted as the beginning of a comment.  Use @code{<>} instead.
18135 @node Ada
18136 @subsection Ada
18137 @cindex Ada
18139 The extensions made to @value{GDBN} for Ada only support
18140 output from the @sc{gnu} Ada (GNAT) compiler.
18141 Other Ada compilers are not currently supported, and
18142 attempting to debug executables produced by them is most likely
18143 to be difficult.
18146 @cindex expressions in Ada
18147 @menu
18148 * Ada Mode Intro::              General remarks on the Ada syntax 
18149                                    and semantics supported by Ada mode 
18150                                    in @value{GDBN}.
18151 * Omissions from Ada::          Restrictions on the Ada expression syntax.
18152 * Additions to Ada::            Extensions of the Ada expression syntax.
18153 * Overloading support for Ada:: Support for expressions involving overloaded
18154                                    subprograms.
18155 * Stopping Before Main Program:: Debugging the program during elaboration.
18156 * Ada Exceptions::              Ada Exceptions
18157 * Ada Tasks::                   Listing and setting breakpoints in tasks.
18158 * Ada Tasks and Core Files::    Tasking Support when Debugging Core Files
18159 * Ravenscar Profile::           Tasking Support when using the Ravenscar
18160                                    Profile
18161 * Ada Source Character Set::    Character set of Ada source files.
18162 * Ada Glitches::                Known peculiarities of Ada mode.
18163 @end menu
18165 @node Ada Mode Intro
18166 @subsubsection Introduction
18167 @cindex Ada mode, general
18169 The Ada mode of @value{GDBN} supports a fairly large subset of Ada expression 
18170 syntax, with some extensions.
18171 The philosophy behind the design of this subset is 
18173 @itemize @bullet
18174 @item
18175 That @value{GDBN} should provide basic literals and access to operations for 
18176 arithmetic, dereferencing, field selection, indexing, and subprogram calls, 
18177 leaving more sophisticated computations to subprograms written into the
18178 program (which therefore may be called from @value{GDBN}).
18180 @item 
18181 That type safety and strict adherence to Ada language restrictions
18182 are not particularly important to the @value{GDBN} user.
18184 @item 
18185 That brevity is important to the @value{GDBN} user.
18186 @end itemize
18188 Thus, for brevity, the debugger acts as if all names declared in
18189 user-written packages are directly visible, even if they are not visible
18190 according to Ada rules, thus making it unnecessary to fully qualify most
18191 names with their packages, regardless of context.  Where this causes
18192 ambiguity, @value{GDBN} asks the user's intent.
18194 The debugger will start in Ada mode if it detects an Ada main program. 
18195 As for other languages, it will enter Ada mode when stopped in a program that
18196 was translated from an Ada source file.
18198 While in Ada mode, you may use `@t{--}' for comments.  This is useful 
18199 mostly for documenting command files.  The standard @value{GDBN} comment 
18200 (@samp{#}) still works at the beginning of a line in Ada mode, but not in the 
18201 middle (to allow based literals).
18203 @node Omissions from Ada
18204 @subsubsection Omissions from Ada
18205 @cindex Ada, omissions from
18207 Here are the notable omissions from the subset:
18209 @itemize @bullet
18210 @item
18211 Only a subset of the attributes are supported:
18213 @itemize @minus
18214 @item
18215 @t{'First}, @t{'Last}, and @t{'Length}
18216  on array objects (not on types and subtypes).
18218 @item
18219 @t{'Min} and @t{'Max}.  
18221 @item 
18222 @t{'Pos} and @t{'Val}. 
18224 @item
18225 @t{'Tag}.
18227 @item
18228 @t{'Range} on array objects (not subtypes), but only as the right
18229 operand of the membership (@code{in}) operator.
18231 @item 
18232 @t{'Access}, @t{'Unchecked_Access}, and 
18233 @t{'Unrestricted_Access} (a GNAT extension).
18235 @item
18236 @t{'Address}.
18237 @end itemize
18239 @item
18240 The names in @code{Characters.Latin_1} are not available.
18242 @item
18243 Equality tests (@samp{=} and @samp{/=}) on arrays test for bitwise
18244 equality of representations.  They will generally work correctly
18245 for strings and arrays whose elements have integer or enumeration types.
18246 They may not work correctly for arrays whose element
18247 types have user-defined equality, for arrays of real values 
18248 (in particular, IEEE-conformant floating point, because of negative
18249 zeroes and NaNs), and for arrays whose elements contain unused bits with
18250 indeterminate values.  
18252 @item
18253 The other component-by-component array operations (@code{and}, @code{or}, 
18254 @code{xor}, @code{not}, and relational tests other than equality)
18255 are not implemented. 
18257 @item 
18258 @cindex array aggregates (Ada)
18259 @cindex record aggregates (Ada)
18260 @cindex aggregates (Ada) 
18261 There is limited support for array and record aggregates.  They are
18262 permitted only on the right sides of assignments, as in these examples:
18264 @smallexample
18265 (@value{GDBP}) set An_Array := (1, 2, 3, 4, 5, 6)
18266 (@value{GDBP}) set An_Array := (1, others => 0)
18267 (@value{GDBP}) set An_Array := (0|4 => 1, 1..3 => 2, 5 => 6)
18268 (@value{GDBP}) set A_2D_Array := ((1, 2, 3), (4, 5, 6), (7, 8, 9))
18269 (@value{GDBP}) set A_Record := (1, "Peter", True);
18270 (@value{GDBP}) set A_Record := (Name => "Peter", Id => 1, Alive => True)
18271 @end smallexample
18273 Changing a
18274 discriminant's value by assigning an aggregate has an
18275 undefined effect if that discriminant is used within the record.
18276 However, you can first modify discriminants by directly assigning to
18277 them (which normally would not be allowed in Ada), and then performing an
18278 aggregate assignment.  For example, given a variable @code{A_Rec} 
18279 declared to have a type such as:
18281 @smallexample
18282 type Rec (Len : Small_Integer := 0) is record
18283     Id : Integer;
18284     Vals : IntArray (1 .. Len);
18285 end record;
18286 @end smallexample
18288 you can assign a value with a different size of @code{Vals} with two
18289 assignments:
18291 @smallexample
18292 (@value{GDBP}) set A_Rec.Len := 4
18293 (@value{GDBP}) set A_Rec := (Id => 42, Vals => (1, 2, 3, 4))
18294 @end smallexample
18296 As this example also illustrates, @value{GDBN} is very loose about the usual
18297 rules concerning aggregates.  You may leave out some of the
18298 components of an array or record aggregate (such as the @code{Len} 
18299 component in the assignment to @code{A_Rec} above); they will retain their
18300 original values upon assignment.  You may freely use dynamic values as
18301 indices in component associations.  You may even use overlapping or
18302 redundant component associations, although which component values are
18303 assigned in such cases is not defined.
18305 @item
18306 Calls to dispatching subprograms are not implemented.
18308 @item
18309 The overloading algorithm is much more limited (i.e., less selective)
18310 than that of real Ada.  It makes only limited use of the context in
18311 which a subexpression appears to resolve its meaning, and it is much
18312 looser in its rules for allowing type matches.  As a result, some
18313 function calls will be ambiguous, and the user will be asked to choose
18314 the proper resolution.
18316 @item
18317 The @code{new} operator is not implemented.
18319 @item
18320 Entry calls are not implemented.
18322 @item 
18323 Aside from printing, arithmetic operations on the native VAX floating-point 
18324 formats are not supported.
18326 @item
18327 It is not possible to slice a packed array.
18329 @item
18330 The names @code{True} and @code{False}, when not part of a qualified name, 
18331 are interpreted as if implicitly prefixed by @code{Standard}, regardless of 
18332 context.
18333 Should your program
18334 redefine these names in a package or procedure (at best a dubious practice),
18335 you will have to use fully qualified names to access their new definitions.
18337 @item
18338 Based real literals are not implemented.
18339 @end itemize
18341 @node Additions to Ada
18342 @subsubsection Additions to Ada
18343 @cindex Ada, deviations from 
18345 As it does for other languages, @value{GDBN} makes certain generic
18346 extensions to Ada (@pxref{Expressions}):
18348 @itemize @bullet
18349 @item
18350 If the expression @var{E} is a variable residing in memory (typically
18351 a local variable or array element) and @var{N} is a positive integer,
18352 then @code{@var{E}@@@var{N}} displays the values of @var{E} and the
18353 @var{N}-1 adjacent variables following it in memory as an array.  In
18354 Ada, this operator is generally not necessary, since its prime use is
18355 in displaying parts of an array, and slicing will usually do this in
18356 Ada.  However, there are occasional uses when debugging programs in
18357 which certain debugging information has been optimized away.
18359 @item
18360 @code{@var{B}::@var{var}} means ``the variable named @var{var} that
18361 appears in function or file @var{B}.''  When @var{B} is a file name,
18362 you must typically surround it in single quotes.
18364 @item 
18365 The expression @code{@{@var{type}@} @var{addr}} means ``the variable of type
18366 @var{type} that appears at address @var{addr}.''
18368 @item
18369 A name starting with @samp{$} is a convenience variable 
18370 (@pxref{Convenience Vars}) or a machine register (@pxref{Registers}).
18371 @end itemize
18373 In addition, @value{GDBN} provides a few other shortcuts and outright
18374 additions specific to Ada:
18376 @itemize @bullet
18377 @item 
18378 The assignment statement is allowed as an expression, returning
18379 its right-hand operand as its value.  Thus, you may enter
18381 @smallexample
18382 (@value{GDBP}) set x := y + 3
18383 (@value{GDBP}) print A(tmp := y + 1)
18384 @end smallexample
18386 @item 
18387 The semicolon is allowed as an ``operator,''  returning as its value 
18388 the value of its right-hand operand.
18389 This allows, for example,
18390 complex conditional breaks:
18392 @smallexample
18393 (@value{GDBP}) break f
18394 (@value{GDBP}) condition 1 (report(i); k += 1; A(k) > 100)
18395 @end smallexample
18397 @item
18398 An extension to based literals can be used to specify the exact byte
18399 contents of a floating-point literal.  After the base, you can use
18400 from zero to two @samp{l} characters, followed by an @samp{f}.  The
18401 number of @samp{l} characters controls the width of the resulting real
18402 constant: zero means @code{Float} is used, one means
18403 @code{Long_Float}, and two means @code{Long_Long_Float}.
18405 @smallexample
18406 (@value{GDBP}) print 16f#41b80000#
18407 $1 = 23.0
18408 @end smallexample
18410 @item 
18411 Rather than use catenation and symbolic character names to introduce special 
18412 characters into strings, one may instead use a special bracket notation, 
18413 which is also used to print strings.  A sequence of characters of the form 
18414 @samp{["@var{XX}"]} within a string or character literal denotes the 
18415 (single) character whose numeric encoding is @var{XX} in hexadecimal.  The
18416 sequence of characters @samp{["""]} also denotes a single quotation mark 
18417 in strings.   For example,
18418 @smallexample
18419    "One line.["0a"]Next line.["0a"]"
18420 @end smallexample
18421 @noindent
18422 contains an ASCII newline character (@code{Ada.Characters.Latin_1.LF})
18423 after each period.
18425 @item
18426 The subtype used as a prefix for the attributes @t{'Pos}, @t{'Min}, and
18427 @t{'Max} is optional (and is ignored in any case).  For example, it is valid
18428 to write
18430 @smallexample
18431 (@value{GDBP}) print 'max(x, y)
18432 @end smallexample
18434 @item
18435 When printing arrays, @value{GDBN} uses positional notation when the 
18436 array has a lower bound of 1, and uses a modified named notation otherwise.
18437 For example, a one-dimensional array of three integers with a lower bound
18438 of 3 might print as
18440 @smallexample
18441 (3 => 10, 17, 1)
18442 @end smallexample
18444 @noindent
18445 That is, in contrast to valid Ada, only the first component has a @code{=>} 
18446 clause.
18448 @item
18449 You may abbreviate attributes in expressions with any unique,
18450 multi-character subsequence of 
18451 their names (an exact match gets preference).
18452 For example, you may use @t{a'len}, @t{a'gth}, or @t{a'lh}
18453 in place of  @t{a'length}.
18455 @item
18456 @cindex quoting Ada internal identifiers
18457 Since Ada is case-insensitive, the debugger normally maps identifiers you type 
18458 to lower case.  The GNAT compiler uses upper-case characters for 
18459 some of its internal identifiers, which are normally of no interest to users.
18460 For the rare occasions when you actually have to look at them,
18461 enclose them in angle brackets to avoid the lower-case mapping. 
18462 For example,
18463 @smallexample
18464 (@value{GDBP}) print <JMPBUF_SAVE>[0]
18465 @end smallexample
18467 @item
18468 Printing an object of class-wide type or dereferencing an 
18469 access-to-class-wide value will display all the components of the object's
18470 specific type (as indicated by its run-time tag).  Likewise, component
18471 selection on such a value will operate on the specific type of the
18472 object.
18474 @end itemize
18476 @node Overloading support for Ada
18477 @subsubsection Overloading support for Ada
18478 @cindex overloading, Ada
18480 The debugger supports limited overloading.  Given a subprogram call in which
18481 the function symbol has multiple definitions, it will use the number of
18482 actual parameters and some information about their types to attempt to narrow
18483 the set of definitions.  It also makes very limited use of context, preferring
18484 procedures to functions in the context of the @code{call} command, and
18485 functions to procedures elsewhere.
18487 If, after narrowing, the set of matching definitions still contains more than
18488 one definition, @value{GDBN} will display a menu to query which one it should
18489 use, for instance:
18491 @smallexample
18492 (@value{GDBP}) print f(1)
18493 Multiple matches for f
18494 [0] cancel
18495 [1] foo.f (integer) return boolean at foo.adb:23
18496 [2] foo.f (foo.new_integer) return boolean at foo.adb:28
18498 @end smallexample
18500 In this case, just select one menu entry either to cancel expression evaluation
18501 (type @kbd{0} and press @key{RET}) or to continue evaluation with a specific
18502 instance (type the corresponding number and press @key{RET}).
18504 Here are a couple of commands to customize @value{GDBN}'s behavior in this
18505 case:
18507 @table @code
18509 @kindex set ada print-signatures
18510 @item set ada print-signatures
18511 Control whether parameter types and return types are displayed in overloads
18512 selection menus.  It is @code{on} by default.
18513 @xref{Overloading support for Ada}.
18515 @kindex show ada print-signatures
18516 @item show ada print-signatures
18517 Show the current setting for displaying parameter types and return types in
18518 overloads selection menu.
18519 @xref{Overloading support for Ada}.
18521 @end table
18523 @node Stopping Before Main Program
18524 @subsubsection Stopping at the Very Beginning
18526 @cindex breakpointing Ada elaboration code
18527 It is sometimes necessary to debug the program during elaboration, and
18528 before reaching the main procedure.
18529 As defined in the Ada Reference
18530 Manual, the elaboration code is invoked from a procedure called
18531 @code{adainit}.  To run your program up to the beginning of
18532 elaboration, simply use the following two commands:
18533 @code{tbreak adainit} and @code{run}.
18535 @node Ada Exceptions
18536 @subsubsection Ada Exceptions
18538 A command is provided to list all Ada exceptions:
18540 @table @code
18541 @kindex info exceptions
18542 @item info exceptions
18543 @itemx info exceptions @var{regexp}
18544 The @code{info exceptions} command allows you to list all Ada exceptions
18545 defined within the program being debugged, as well as their addresses.
18546 With a regular expression, @var{regexp}, as argument, only those exceptions
18547 whose names match @var{regexp} are listed.
18548 @end table
18550 Below is a small example, showing how the command can be used, first
18551 without argument, and next with a regular expression passed as an
18552 argument.
18554 @smallexample
18555 (@value{GDBP}) info exceptions
18556 All defined Ada exceptions:
18557 constraint_error: 0x613da0
18558 program_error: 0x613d20
18559 storage_error: 0x613ce0
18560 tasking_error: 0x613ca0
18561 const.aint_global_e: 0x613b00
18562 (@value{GDBP}) info exceptions const.aint
18563 All Ada exceptions matching regular expression "const.aint":
18564 constraint_error: 0x613da0
18565 const.aint_global_e: 0x613b00
18566 @end smallexample
18568 It is also possible to ask @value{GDBN} to stop your program's execution
18569 when an exception is raised.  For more details, see @ref{Set Catchpoints}.
18571 @node Ada Tasks
18572 @subsubsection Extensions for Ada Tasks
18573 @cindex Ada, tasking
18575 Support for Ada tasks is analogous to that for threads (@pxref{Threads}).
18576 @value{GDBN} provides the following task-related commands:
18578 @table @code
18579 @kindex info tasks
18580 @item info tasks
18581 This command shows a list of current Ada tasks, as in the following example:
18584 @smallexample
18585 @iftex
18586 @leftskip=0.5cm
18587 @end iftex
18588 (@value{GDBP}) info tasks
18589   ID       TID P-ID Pri State                 Name
18590    1   8088000   0   15 Child Activation Wait main_task
18591    2   80a4000   1   15 Accept Statement      b
18592    3   809a800   1   15 Child Activation Wait a
18593 *  4   80ae800   3   15 Runnable              c
18595 @end smallexample
18597 @noindent
18598 In this listing, the asterisk before the last task indicates it to be the
18599 task currently being inspected.
18601 @table @asis
18602 @item ID
18603 Represents @value{GDBN}'s internal task number.
18605 @item TID
18606 The Ada task ID.
18608 @item P-ID
18609 The parent's task ID (@value{GDBN}'s internal task number).
18611 @item Pri
18612 The base priority of the task.
18614 @item State
18615 Current state of the task.
18617 @table @code
18618 @item Unactivated
18619 The task has been created but has not been activated.  It cannot be
18620 executing.
18622 @item Runnable
18623 The task is not blocked for any reason known to Ada.  (It may be waiting
18624 for a mutex, though.) It is conceptually "executing" in normal mode.
18626 @item Terminated
18627 The task is terminated, in the sense of ARM 9.3 (5).  Any dependents
18628 that were waiting on terminate alternatives have been awakened and have
18629 terminated themselves.
18631 @item Child Activation Wait
18632 The task is waiting for created tasks to complete activation.
18634 @item Accept Statement
18635 The task is waiting on an accept or selective wait statement.
18637 @item Waiting on entry call
18638 The task is waiting on an entry call.
18640 @item Async Select Wait
18641 The task is waiting to start the abortable part of an asynchronous
18642 select statement.
18644 @item Delay Sleep
18645 The task is waiting on a select statement with only a delay
18646 alternative open.
18648 @item Child Termination Wait
18649 The task is sleeping having completed a master within itself, and is
18650 waiting for the tasks dependent on that master to become terminated or
18651 waiting on a terminate Phase.
18653 @item Wait Child in Term Alt
18654 The task is sleeping waiting for tasks on terminate alternatives to
18655 finish terminating.
18657 @item Accepting RV with @var{taskno}
18658 The task is accepting a rendez-vous with the task @var{taskno}.
18659 @end table
18661 @item Name
18662 Name of the task in the program.
18664 @end table
18666 @kindex info task @var{taskno}
18667 @item info task @var{taskno}
18668 This command shows detailed informations on the specified task, as in
18669 the following example:
18670 @smallexample
18671 @iftex
18672 @leftskip=0.5cm
18673 @end iftex
18674 (@value{GDBP}) info tasks
18675   ID       TID P-ID Pri State                  Name
18676    1   8077880    0  15 Child Activation Wait  main_task
18677 *  2   807c468    1  15 Runnable               task_1
18678 (@value{GDBP}) info task 2
18679 Ada Task: 0x807c468
18680 Name: "task_1"
18681 Thread: 0
18682 LWP: 0x1fac
18683 Parent: 1 ("main_task")
18684 Base Priority: 15
18685 State: Runnable
18686 @end smallexample
18688 @item task
18689 @kindex task@r{ (Ada)}
18690 @cindex current Ada task ID
18691 This command prints the ID and name of the current task.
18693 @smallexample
18694 @iftex
18695 @leftskip=0.5cm
18696 @end iftex
18697 (@value{GDBP}) info tasks
18698   ID       TID P-ID Pri State                  Name
18699    1   8077870    0  15 Child Activation Wait  main_task
18700 *  2   807c458    1  15 Runnable               some_task
18701 (@value{GDBP}) task
18702 [Current task is 2 "some_task"]
18703 @end smallexample
18705 @item task @var{taskno}
18706 @cindex Ada task switching
18707 This command is like the @code{thread @var{thread-id}}
18708 command (@pxref{Threads}).  It switches the context of debugging
18709 from the current task to the given task.
18711 @smallexample
18712 @iftex
18713 @leftskip=0.5cm
18714 @end iftex
18715 (@value{GDBP}) info tasks
18716   ID       TID P-ID Pri State                  Name
18717    1   8077870    0  15 Child Activation Wait  main_task
18718 *  2   807c458    1  15 Runnable               some_task
18719 (@value{GDBP}) task 1
18720 [Switching to task 1 "main_task"]
18721 #0  0x8067726 in pthread_cond_wait ()
18722 (@value{GDBP}) bt
18723 #0  0x8067726 in pthread_cond_wait ()
18724 #1  0x8056714 in system.os_interface.pthread_cond_wait ()
18725 #2  0x805cb63 in system.task_primitives.operations.sleep ()
18726 #3  0x806153e in system.tasking.stages.activate_tasks ()
18727 #4  0x804aacc in un () at un.adb:5
18728 @end smallexample
18730 @item task apply [@var{task-id-list} | all] [@var{flag}]@dots{} @var{command}
18731 The @code{task apply} command is the Ada tasking analogue of
18732 @code{thread apply} (@pxref{Threads}).  It allows you to apply the
18733 named @var{command} to one or more tasks.  Specify the tasks that you
18734 want affected using a list of task IDs, or specify @code{all} to apply
18735 to all tasks.
18737 The @var{flag} arguments control what output to produce and how to
18738 handle errors raised when applying @var{command} to a task.
18739 @var{flag} must start with a @code{-} directly followed by one letter
18740 in @code{qcs}.  If several flags are provided, they must be given
18741 individually, such as @code{-c -q}.
18743 By default, @value{GDBN} displays some task information before the
18744 output produced by @var{command}, and an error raised during the
18745 execution of a @var{command} will abort @code{task apply}.  The
18746 following flags can be used to fine-tune this behavior:
18748 @table @code
18749 @item -c
18750 The flag @code{-c}, which stands for @samp{continue}, causes any
18751 errors in @var{command} to be displayed, and the execution of
18752 @code{task apply} then continues.
18753 @item -s
18754 The flag @code{-s}, which stands for @samp{silent}, causes any errors
18755 or empty output produced by a @var{command} to be silently ignored.
18756 That is, the execution continues, but the task information and errors
18757 are not printed.
18758 @item -q
18759 The flag @code{-q} (@samp{quiet}) disables printing the task
18760 information.
18761 @end table
18763 Flags @code{-c} and @code{-s} cannot be used together.
18765 @item break @var{location} task @var{taskno}
18766 @itemx break @var{location} task @var{taskno} if @dots{}
18767 @cindex breakpoints and tasks, in Ada
18768 @cindex task breakpoints, in Ada
18769 @kindex break @dots{} task @var{taskno}@r{ (Ada)}
18770 These commands are like the @code{break @dots{} thread @dots{}}
18771 command (@pxref{Thread Stops}).  The
18772 @var{location} argument specifies source lines, as described
18773 in @ref{Specify Location}.
18775 Use the qualifier @samp{task @var{taskno}} with a breakpoint command
18776 to specify that you only want @value{GDBN} to stop the program when a
18777 particular Ada task reaches this breakpoint.  The @var{taskno} is one of the
18778 numeric task identifiers assigned by @value{GDBN}, shown in the first
18779 column of the @samp{info tasks} display.
18781 If you do not specify @samp{task @var{taskno}} when you set a
18782 breakpoint, the breakpoint applies to @emph{all} tasks of your
18783 program.
18785 You can use the @code{task} qualifier on conditional breakpoints as
18786 well; in this case, place @samp{task @var{taskno}} before the
18787 breakpoint condition (before the @code{if}).
18789 For example,
18791 @smallexample
18792 @iftex
18793 @leftskip=0.5cm
18794 @end iftex
18795 (@value{GDBP}) info tasks
18796   ID       TID P-ID Pri State                 Name
18797    1 140022020   0   15 Child Activation Wait main_task
18798    2 140045060   1   15 Accept/Select Wait    t2
18799    3 140044840   1   15 Runnable              t1
18800 *  4 140056040   1   15 Runnable              t3
18801 (@value{GDBP}) b 15 task 2
18802 Breakpoint 5 at 0x120044cb0: file test_task_debug.adb, line 15.
18803 (@value{GDBP}) cont
18804 Continuing.
18805 task # 1 running
18806 task # 2 running
18808 Breakpoint 5, test_task_debug () at test_task_debug.adb:15
18809 15               flush;
18810 (@value{GDBP}) info tasks
18811   ID       TID P-ID Pri State                 Name
18812    1 140022020   0   15 Child Activation Wait main_task
18813 *  2 140045060   1   15 Runnable              t2
18814    3 140044840   1   15 Runnable              t1
18815    4 140056040   1   15 Delay Sleep           t3
18816 @end smallexample
18817 @end table
18819 @node Ada Tasks and Core Files
18820 @subsubsection Tasking Support when Debugging Core Files
18821 @cindex Ada tasking and core file debugging
18823 When inspecting a core file, as opposed to debugging a live program,
18824 tasking support may be limited or even unavailable, depending on
18825 the platform being used.
18826 For instance, on x86-linux, the list of tasks is available, but task
18827 switching is not supported.
18829 On certain platforms, the debugger needs to perform some
18830 memory writes in order to provide Ada tasking support.  When inspecting
18831 a core file, this means that the core file must be opened with read-write
18832 privileges, using the command @samp{"set write on"} (@pxref{Patching}).
18833 Under these circumstances, you should make a backup copy of the core
18834 file before inspecting it with @value{GDBN}.
18836 @node Ravenscar Profile
18837 @subsubsection Tasking Support when using the Ravenscar Profile
18838 @cindex Ravenscar Profile
18840 The @dfn{Ravenscar Profile} is a subset of the Ada tasking features,
18841 specifically designed for systems with safety-critical real-time
18842 requirements.
18844 @table @code
18845 @kindex set ravenscar task-switching on
18846 @cindex task switching with program using Ravenscar Profile
18847 @item set ravenscar task-switching on
18848 Allows task switching when debugging a program that uses the Ravenscar
18849 Profile.  This is the default.
18851 @kindex set ravenscar task-switching off
18852 @item set ravenscar task-switching off
18853 Turn off task switching when debugging a program that uses the Ravenscar
18854 Profile.  This is mostly intended to disable the code that adds support
18855 for the Ravenscar Profile, in case a bug in either @value{GDBN} or in
18856 the Ravenscar runtime is preventing @value{GDBN} from working properly.
18857 To be effective, this command should be run before the program is started.
18859 @kindex show ravenscar task-switching
18860 @item show ravenscar task-switching
18861 Show whether it is possible to switch from task to task in a program
18862 using the Ravenscar Profile.
18864 @end table
18866 @cindex Ravenscar thread
18867 When Ravenscar task-switching is enabled, Ravenscar tasks are
18868 announced by @value{GDBN} as if they were threads:
18870 @smallexample
18871 (gdb) continue
18872 [New Ravenscar Thread 0x2b8f0]
18873 @end smallexample
18875 Both Ravenscar tasks and the underlying CPU threads will show up in
18876 the output of @code{info threads}:
18878 @smallexample
18879 (gdb) info threads
18880   Id   Target Id                  Frame
18881   1    Thread 1 (CPU#0 [running]) simple () at simple.adb:10
18882   2    Thread 2 (CPU#1 [running]) 0x0000000000003d34 in __gnat_initialize_cpu_devices ()
18883   3    Thread 3 (CPU#2 [running]) 0x0000000000003d28 in __gnat_initialize_cpu_devices ()
18884   4    Thread 4 (CPU#3 [halted ]) 0x000000000000c6ec in system.task_primitives.operations.idle ()
18885 * 5    Ravenscar Thread 0x2b8f0   simple () at simple.adb:10
18886   6    Ravenscar Thread 0x2f150   0x000000000000c6ec in system.task_primitives.operations.idle ()
18887 @end smallexample
18889 One known limitation of the Ravenscar support in @value{GDBN} is that
18890 it isn't currently possible to single-step through the runtime
18891 initialization sequence.  If you need to debug this code, you should
18892 use @code{set ravenscar task-switching off}.
18894 @node Ada Source Character Set
18895 @subsubsection Ada Source Character Set
18896 @cindex Ada, source character set
18898 The GNAT compiler supports a number of character sets for source
18899 files.  @xref{Character Set Control, , Character Set Control,
18900 gnat_ugn}.  @value{GDBN} includes support for this as well.
18902 @table @code
18903 @item set ada source-charset @var{charset}
18904 @kindex set ada source-charset
18905 Set the source character set for Ada.  The character set must be
18906 supported by GNAT.  Because this setting affects the decoding of
18907 symbols coming from the debug information in your program, the setting
18908 should be set as early as possible.  The default is @code{ISO-8859-1},
18909 because that is also GNAT's default.
18911 @item show ada source-charset
18912 @kindex show ada source-charset
18913 Show the current source character set for Ada.
18914 @end table
18916 @node Ada Glitches
18917 @subsubsection Known Peculiarities of Ada Mode
18918 @cindex Ada, problems
18920 Besides the omissions listed previously (@pxref{Omissions from Ada}),
18921 we know of several problems with and limitations of Ada mode in
18922 @value{GDBN},
18923 some of which will be fixed with planned future releases of the debugger 
18924 and the GNU Ada compiler.
18926 @itemize @bullet
18927 @item 
18928 Static constants that the compiler chooses not to materialize as objects in 
18929 storage are invisible to the debugger.
18931 @item
18932 Named parameter associations in function argument lists are ignored (the
18933 argument lists are treated as positional).
18935 @item
18936 Many useful library packages are currently invisible to the debugger.
18938 @item
18939 Fixed-point arithmetic, conversions, input, and output is carried out using 
18940 floating-point arithmetic, and may give results that only approximate those on 
18941 the host machine.
18943 @item
18944 The GNAT compiler never generates the prefix @code{Standard} for any of 
18945 the standard symbols defined by the Ada language.  @value{GDBN} knows about 
18946 this: it will strip the prefix from names when you use it, and will never
18947 look for a name you have so qualified among local symbols, nor match against
18948 symbols in other packages or subprograms.  If you have 
18949 defined entities anywhere in your program other than parameters and 
18950 local variables whose simple names match names in @code{Standard}, 
18951 GNAT's lack of qualification here can cause confusion.  When this happens,
18952 you can usually resolve the confusion 
18953 by qualifying the problematic names with package
18954 @code{Standard} explicitly.  
18955 @end itemize
18957 Older versions of the compiler sometimes generate erroneous debugging
18958 information, resulting in the debugger incorrectly printing the value
18959 of affected entities.  In some cases, the debugger is able to work
18960 around an issue automatically. In other cases, the debugger is able
18961 to work around the issue, but the work-around has to be specifically
18962 enabled.
18964 @kindex set ada trust-PAD-over-XVS
18965 @kindex show ada trust-PAD-over-XVS
18966 @table @code
18968 @item set ada trust-PAD-over-XVS on
18969 Configure GDB to strictly follow the GNAT encoding when computing the
18970 value of Ada entities, particularly when @code{PAD} and @code{PAD___XVS}
18971 types are involved (see @code{ada/exp_dbug.ads} in the GCC sources for
18972 a complete description of the encoding used by the GNAT compiler).
18973 This is the default.
18975 @item set ada trust-PAD-over-XVS off
18976 This is related to the encoding using by the GNAT compiler.  If @value{GDBN}
18977 sometimes prints the wrong value for certain entities, changing @code{ada
18978 trust-PAD-over-XVS} to @code{off} activates a work-around which may fix
18979 the issue.  It is always safe to set @code{ada trust-PAD-over-XVS} to
18980 @code{off}, but this incurs a slight performance penalty, so it is
18981 recommended to leave this setting to @code{on} unless necessary.
18983 @end table
18985 @cindex GNAT descriptive types
18986 @cindex GNAT encoding
18987 Internally, the debugger also relies on the compiler following a number
18988 of conventions known as the @samp{GNAT Encoding}, all documented in
18989 @file{gcc/ada/exp_dbug.ads} in the GCC sources. This encoding describes
18990 how the debugging information should be generated for certain types.
18991 In particular, this convention makes use of @dfn{descriptive types},
18992 which are artificial types generated purely to help the debugger.
18994 These encodings were defined at a time when the debugging information
18995 format used was not powerful enough to describe some of the more complex
18996 types available in Ada.  Since DWARF allows us to express nearly all
18997 Ada features, the long-term goal is to slowly replace these descriptive
18998 types by their pure DWARF equivalent.  To facilitate that transition,
18999 a new maintenance option is available to force the debugger to ignore
19000 those descriptive types.  It allows the user to quickly evaluate how
19001 well @value{GDBN} works without them.
19003 @table @code
19005 @kindex maint ada set ignore-descriptive-types
19006 @item maintenance ada set ignore-descriptive-types [on|off]
19007 Control whether the debugger should ignore descriptive types.
19008 The default is not to ignore descriptives types (@code{off}).
19010 @kindex maint ada show ignore-descriptive-types
19011 @item maintenance ada show ignore-descriptive-types
19012 Show if descriptive types are ignored by @value{GDBN}.
19014 @end table
19016 @node Unsupported Languages
19017 @section Unsupported Languages
19019 @cindex unsupported languages
19020 @cindex minimal language
19021 In addition to the other fully-supported programming languages,
19022 @value{GDBN} also provides a pseudo-language, called @code{minimal}.
19023 It does not represent a real programming language, but provides a set
19024 of capabilities close to what the C or assembly languages provide.
19025 This should allow most simple operations to be performed while debugging
19026 an application that uses a language currently not supported by @value{GDBN}.
19028 If the language is set to @code{auto}, @value{GDBN} will automatically
19029 select this language if the current frame corresponds to an unsupported
19030 language.
19032 @node Symbols
19033 @chapter Examining the Symbol Table
19035 The commands described in this chapter allow you to inquire about the
19036 symbols (names of variables, functions and types) defined in your
19037 program.  This information is inherent in the text of your program and
19038 does not change as your program executes.  @value{GDBN} finds it in your
19039 program's symbol table, in the file indicated when you started @value{GDBN}
19040 (@pxref{File Options, ,Choosing Files}), or by one of the
19041 file-management commands (@pxref{Files, ,Commands to Specify Files}).
19043 @cindex symbol names
19044 @cindex names of symbols
19045 @cindex quoting names
19046 @anchor{quoting names}
19047 Occasionally, you may need to refer to symbols that contain unusual
19048 characters, which @value{GDBN} ordinarily treats as word delimiters.  The
19049 most frequent case is in referring to static variables in other
19050 source files (@pxref{Variables,,Program Variables}).  File names
19051 are recorded in object files as debugging symbols, but @value{GDBN} would
19052 ordinarily parse a typical file name, like @file{foo.c}, as the three words
19053 @samp{foo} @samp{.} @samp{c}.  To allow @value{GDBN} to recognize
19054 @samp{foo.c} as a single symbol, enclose it in single quotes; for example,
19056 @smallexample
19057 p 'foo.c'::x
19058 @end smallexample
19060 @noindent
19061 looks up the value of @code{x} in the scope of the file @file{foo.c}.
19063 @table @code
19064 @cindex case-insensitive symbol names
19065 @cindex case sensitivity in symbol names
19066 @kindex set case-sensitive
19067 @item set case-sensitive on
19068 @itemx set case-sensitive off
19069 @itemx set case-sensitive auto
19070 Normally, when @value{GDBN} looks up symbols, it matches their names
19071 with case sensitivity determined by the current source language.
19072 Occasionally, you may wish to control that.  The command @code{set
19073 case-sensitive} lets you do that by specifying @code{on} for
19074 case-sensitive matches or @code{off} for case-insensitive ones.  If
19075 you specify @code{auto}, case sensitivity is reset to the default
19076 suitable for the source language.  The default is case-sensitive
19077 matches for all languages except for Fortran, for which the default is
19078 case-insensitive matches.
19080 @kindex show case-sensitive
19081 @item show case-sensitive
19082 This command shows the current setting of case sensitivity for symbols
19083 lookups.
19085 @kindex set print type methods
19086 @item set print type methods
19087 @itemx set print type methods on
19088 @itemx set print type methods off
19089 Normally, when @value{GDBN} prints a class, it displays any methods
19090 declared in that class.  You can control this behavior either by
19091 passing the appropriate flag to @code{ptype}, or using @command{set
19092 print type methods}.  Specifying @code{on} will cause @value{GDBN} to
19093 display the methods; this is the default.  Specifying @code{off} will
19094 cause @value{GDBN} to omit the methods.
19096 @kindex show print type methods
19097 @item show print type methods
19098 This command shows the current setting of method display when printing
19099 classes.
19101 @kindex set print type nested-type-limit
19102 @item set print type nested-type-limit @var{limit}
19103 @itemx set print type nested-type-limit unlimited
19104 Set the limit of displayed nested types that the type printer will
19105 show.  A @var{limit} of @code{unlimited} or @code{-1} will show all
19106 nested definitions.  By default, the type printer will not show any nested
19107 types defined in classes.
19109 @kindex show print type nested-type-limit
19110 @item show print type nested-type-limit
19111 This command shows the current display limit of nested types when
19112 printing classes.
19114 @kindex set print type typedefs
19115 @item set print type typedefs
19116 @itemx set print type typedefs on
19117 @itemx set print type typedefs off
19119 Normally, when @value{GDBN} prints a class, it displays any typedefs
19120 defined in that class.  You can control this behavior either by
19121 passing the appropriate flag to @code{ptype}, or using @command{set
19122 print type typedefs}.  Specifying @code{on} will cause @value{GDBN} to
19123 display the typedef definitions; this is the default.  Specifying
19124 @code{off} will cause @value{GDBN} to omit the typedef definitions.
19125 Note that this controls whether the typedef definition itself is
19126 printed, not whether typedef names are substituted when printing other
19127 types.
19129 @kindex show print type typedefs
19130 @item show print type typedefs
19131 This command shows the current setting of typedef display when
19132 printing classes.
19134 @kindex set print type hex
19135 @item set print type hex
19136 @itemx set print type hex on
19137 @itemx set print type hex off
19139 When @value{GDBN} prints sizes and offsets of struct members, it can use
19140 either the decimal or hexadecimal notation.  You can select one or the
19141 other either by passing the appropriate flag to @code{ptype}, or by using
19142 the @command{set print type hex} command.
19144 @kindex show print type hex
19145 @item show print type hex
19146 This command shows whether the sizes and offsets of struct members are
19147 printed in decimal or hexadecimal notation.
19149 @kindex info address
19150 @cindex address of a symbol
19151 @item info address @var{symbol}
19152 Describe where the data for @var{symbol} is stored.  For a register
19153 variable, this says which register it is kept in.  For a non-register
19154 local variable, this prints the stack-frame offset at which the variable
19155 is always stored.
19157 Note the contrast with @samp{print &@var{symbol}}, which does not work
19158 at all for a register variable, and for a stack local variable prints
19159 the exact address of the current instantiation of the variable.
19161 @kindex info symbol
19162 @cindex symbol from address
19163 @cindex closest symbol and offset for an address
19164 @item info symbol @var{addr}
19165 Print the name of a symbol which is stored at the address @var{addr}.
19166 If no symbol is stored exactly at @var{addr}, @value{GDBN} prints the
19167 nearest symbol and an offset from it:
19169 @smallexample
19170 (@value{GDBP}) info symbol 0x54320
19171 _initialize_vx + 396 in section .text
19172 @end smallexample
19174 @noindent
19175 This is the opposite of the @code{info address} command.  You can use
19176 it to find out the name of a variable or a function given its address.
19178 For dynamically linked executables, the name of executable or shared
19179 library containing the symbol is also printed:
19181 @smallexample
19182 (@value{GDBP}) info symbol 0x400225
19183 _start + 5 in section .text of /tmp/a.out
19184 (@value{GDBP}) info symbol 0x2aaaac2811cf
19185 __read_nocancel + 6 in section .text of /usr/lib64/libc.so.6
19186 @end smallexample
19188 @kindex demangle
19189 @cindex demangle
19190 @item demangle @r{[}-l @var{language}@r{]} @r{[}@var{--}@r{]} @var{name}
19191 Demangle @var{name}.
19192 If @var{language} is provided it is the name of the language to demangle
19193 @var{name} in.  Otherwise @var{name} is demangled in the current language.
19195 The @samp{--} option specifies the end of options,
19196 and is useful when @var{name} begins with a dash.
19198 The parameter @code{demangle-style} specifies how to interpret the kind
19199 of mangling used. @xref{Print Settings}.
19201 @kindex whatis
19202 @item whatis[/@var{flags}] [@var{arg}]
19203 Print the data type of @var{arg}, which can be either an expression
19204 or a name of a data type.  With no argument, print the data type of
19205 @code{$}, the last value in the value history.
19207 If @var{arg} is an expression (@pxref{Expressions, ,Expressions}), it
19208 is not actually evaluated, and any side-effecting operations (such as
19209 assignments or function calls) inside it do not take place.
19211 If @var{arg} is a variable or an expression, @code{whatis} prints its
19212 literal type as it is used in the source code.  If the type was
19213 defined using a @code{typedef}, @code{whatis} will @emph{not} print
19214 the data type underlying the @code{typedef}.  If the type of the
19215 variable or the expression is a compound data type, such as
19216 @code{struct} or  @code{class}, @code{whatis} never prints their
19217 fields or methods.  It just prints the @code{struct}/@code{class}
19218 name (a.k.a.@: its @dfn{tag}).  If you want to see the members of
19219 such a compound data type, use @code{ptype}.
19221 If @var{arg} is a type name that was defined using @code{typedef},
19222 @code{whatis} @dfn{unrolls} only one level of that @code{typedef}.
19223 Unrolling means that @code{whatis} will show the underlying type used
19224 in the @code{typedef} declaration of @var{arg}.  However, if that
19225 underlying type is also a @code{typedef}, @code{whatis} will not
19226 unroll it.
19228 For C code, the type names may also have the form @samp{class
19229 @var{class-name}}, @samp{struct @var{struct-tag}}, @samp{union
19230 @var{union-tag}} or @samp{enum @var{enum-tag}}.
19232 @var{flags} can be used to modify how the type is displayed.
19233 Available flags are:
19235 @table @code
19236 @item r
19237 Display in ``raw'' form.  Normally, @value{GDBN} substitutes template
19238 parameters and typedefs defined in a class when printing the class'
19239 members.  The @code{/r} flag disables this.
19241 @item m
19242 Do not print methods defined in the class.
19244 @item M
19245 Print methods defined in the class.  This is the default, but the flag
19246 exists in case you change the default with @command{set print type methods}.
19248 @item t
19249 Do not print typedefs defined in the class.  Note that this controls
19250 whether the typedef definition itself is printed, not whether typedef
19251 names are substituted when printing other types.
19253 @item T
19254 Print typedefs defined in the class.  This is the default, but the flag
19255 exists in case you change the default with @command{set print type typedefs}.
19257 @item o
19258 Print the offsets and sizes of fields in a struct, similar to what the
19259 @command{pahole} tool does.  This option implies the @code{/tm} flags.
19261 @item x
19262 Use hexadecimal notation when printing offsets and sizes of fields in a
19263 struct.
19265 @item d
19266 Use decimal notation when printing offsets and sizes of fields in a
19267 struct.
19269 For example, given the following declarations:
19271 @smallexample
19272 struct tuv
19274   int a1;
19275   char *a2;
19276   int a3;
19279 struct xyz
19281   int f1;
19282   char f2;
19283   void *f3;
19284   struct tuv f4;
19287 union qwe
19289   struct tuv fff1;
19290   struct xyz fff2;
19293 struct tyu
19295   int a1 : 1;
19296   int a2 : 3;
19297   int a3 : 23;
19298   char a4 : 2;
19299   int64_t a5;
19300   int a6 : 5;
19301   int64_t a7 : 3;
19303 @end smallexample
19305 Issuing a @kbd{ptype /o struct tuv} command would print:
19307 @smallexample
19308 (@value{GDBP}) ptype /o struct tuv
19309 /* offset      |    size */  type = struct tuv @{
19310 /*      0      |       4 */    int a1;
19311 /* XXX  4-byte hole      */
19312 /*      8      |       8 */    char *a2;
19313 /*     16      |       4 */    int a3;
19315                                /* total size (bytes):   24 */
19316                              @}
19317 @end smallexample
19319 Notice the format of the first column of comments.  There, you can
19320 find two parts separated by the @samp{|} character: the @emph{offset},
19321 which indicates where the field is located inside the struct, in
19322 bytes, and the @emph{size} of the field.  Another interesting line is
19323 the marker of a @emph{hole} in the struct, indicating that it may be
19324 possible to pack the struct and make it use less space by reorganizing
19325 its fields.
19327 It is also possible to print offsets inside an union:
19329 @smallexample
19330 (@value{GDBP}) ptype /o union qwe
19331 /* offset      |    size */  type = union qwe @{
19332 /*                    24 */    struct tuv @{
19333 /*      0      |       4 */        int a1;
19334 /* XXX  4-byte hole      */
19335 /*      8      |       8 */        char *a2;
19336 /*     16      |       4 */        int a3;
19338                                    /* total size (bytes):   24 */
19339                                @} fff1;
19340 /*                    40 */    struct xyz @{
19341 /*      0      |       4 */        int f1;
19342 /*      4      |       1 */        char f2;
19343 /* XXX  3-byte hole      */
19344 /*      8      |       8 */        void *f3;
19345 /*     16      |      24 */        struct tuv @{
19346 /*     16      |       4 */            int a1;
19347 /* XXX  4-byte hole      */
19348 /*     24      |       8 */            char *a2;
19349 /*     32      |       4 */            int a3;
19351                                        /* total size (bytes):   24 */
19352                                    @} f4;
19354                                    /* total size (bytes):   40 */
19355                                @} fff2;
19357                                /* total size (bytes):   40 */
19358                              @}
19359 @end smallexample
19361 In this case, since @code{struct tuv} and @code{struct xyz} occupy the
19362 same space (because we are dealing with an union), the offset is not
19363 printed for them.  However, you can still examine the offset of each
19364 of these structures' fields.
19366 Another useful scenario is printing the offsets of a struct containing
19367 bitfields:
19369 @smallexample
19370 (@value{GDBP}) ptype /o struct tyu
19371 /* offset      |    size */  type = struct tyu @{
19372 /*      0:31   |       4 */    int a1 : 1;
19373 /*      0:28   |       4 */    int a2 : 3;
19374 /*      0: 5   |       4 */    int a3 : 23;
19375 /*      3: 3   |       1 */    signed char a4 : 2;
19376 /* XXX  3-bit hole       */
19377 /* XXX  4-byte hole      */
19378 /*      8      |       8 */    int64_t a5;
19379 /*     16: 0   |       4 */    int a6 : 5;
19380 /*     16: 5   |       8 */    int64_t a7 : 3;
19381 /* XXX  7-byte padding   */
19383                                /* total size (bytes):   24 */
19384                              @}
19385 @end smallexample
19387 Note how the offset information is now extended to also include the
19388 first bit of the bitfield.
19389 @end table
19391 @kindex ptype
19392 @item ptype[/@var{flags}] [@var{arg}]
19393 @code{ptype} accepts the same arguments as @code{whatis}, but prints a
19394 detailed description of the type, instead of just the name of the type.
19395 @xref{Expressions, ,Expressions}.
19397 Contrary to @code{whatis}, @code{ptype} always unrolls any
19398 @code{typedef}s in its argument declaration, whether the argument is
19399 a variable, expression, or a data type.  This means that @code{ptype}
19400 of a variable or an expression will not print literally its type as
19401 present in the source code---use @code{whatis} for that.  @code{typedef}s at
19402 the pointer or reference targets are also unrolled.  Only @code{typedef}s of
19403 fields, methods and inner @code{class typedef}s of @code{struct}s,
19404 @code{class}es and @code{union}s are not unrolled even with @code{ptype}.
19406 For example, for this variable declaration:
19408 @smallexample
19409 typedef double real_t;
19410 struct complex @{ real_t real; double imag; @};
19411 typedef struct complex complex_t;
19412 complex_t var;
19413 real_t *real_pointer_var;
19414 @end smallexample
19416 @noindent
19417 the two commands give this output:
19419 @smallexample
19420 @group
19421 (@value{GDBP}) whatis var
19422 type = complex_t
19423 (@value{GDBP}) ptype var
19424 type = struct complex @{
19425     real_t real;
19426     double imag;
19428 (@value{GDBP}) whatis complex_t
19429 type = struct complex
19430 (@value{GDBP}) whatis struct complex
19431 type = struct complex
19432 (@value{GDBP}) ptype struct complex
19433 type = struct complex @{
19434     real_t real;
19435     double imag;
19437 (@value{GDBP}) whatis real_pointer_var
19438 type = real_t *
19439 (@value{GDBP}) ptype real_pointer_var
19440 type = double *
19441 @end group
19442 @end smallexample
19444 @noindent
19445 As with @code{whatis}, using @code{ptype} without an argument refers to
19446 the type of @code{$}, the last value in the value history.
19448 @cindex incomplete type
19449 Sometimes, programs use opaque data types or incomplete specifications
19450 of complex data structure.  If the debug information included in the
19451 program does not allow @value{GDBN} to display a full declaration of
19452 the data type, it will say @samp{<incomplete type>}.  For example,
19453 given these declarations:
19455 @smallexample
19456     struct foo;
19457     struct foo *fooptr;
19458 @end smallexample
19460 @noindent
19461 but no definition for @code{struct foo} itself, @value{GDBN} will say:
19463 @smallexample
19464   (@value{GDBP}) ptype foo
19465   $1 = <incomplete type>
19466 @end smallexample
19468 @noindent
19469 ``Incomplete type'' is C terminology for data types that are not
19470 completely specified.
19472 @cindex unknown type
19473 Othertimes, information about a variable's type is completely absent
19474 from the debug information included in the program.  This most often
19475 happens when the program or library where the variable is defined
19476 includes no debug information at all.  @value{GDBN} knows the variable
19477 exists from inspecting the linker/loader symbol table (e.g., the ELF
19478 dynamic symbol table), but such symbols do not contain type
19479 information.  Inspecting the type of a (global) variable for which
19480 @value{GDBN} has no type information shows:
19482 @smallexample
19483   (@value{GDBP}) ptype var
19484   type = <data variable, no debug info>
19485 @end smallexample
19487 @xref{Variables, no debug info variables}, for how to print the values
19488 of such variables.
19490 @kindex info types
19491 @item info types [-q] [@var{regexp}]
19492 Print a brief description of all types whose names match the regular
19493 expression @var{regexp} (or all types in your program, if you supply
19494 no argument).  Each complete typename is matched as though it were a
19495 complete line; thus, @samp{i type value} gives information on all
19496 types in your program whose names include the string @code{value}, but
19497 @samp{i type ^value$} gives information only on types whose complete
19498 name is @code{value}.
19500 In programs using different languages, @value{GDBN} chooses the syntax
19501 to print the type description according to the
19502 @samp{set language} value: using @samp{set language auto}
19503 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19504 language of the type, other values mean to use
19505 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19507 This command differs from @code{ptype} in two ways: first, like
19508 @code{whatis}, it does not print a detailed description; second, it
19509 lists all source files and line numbers where a type is defined.
19511 The output from @samp{into types} is proceeded with a header line
19512 describing what types are being listed.  The optional flag @samp{-q},
19513 which stands for @samp{quiet}, disables printing this header
19514 information.
19516 @kindex info type-printers
19517 @item info type-printers
19518 Versions of @value{GDBN} that ship with Python scripting enabled may
19519 have ``type printers'' available.  When using @command{ptype} or
19520 @command{whatis}, these printers are consulted when the name of a type
19521 is needed.  @xref{Type Printing API}, for more information on writing
19522 type printers.
19524 @code{info type-printers} displays all the available type printers.
19526 @kindex enable type-printer
19527 @kindex disable type-printer
19528 @item enable type-printer @var{name}@dots{}
19529 @item disable type-printer @var{name}@dots{}
19530 These commands can be used to enable or disable type printers.
19532 @kindex info scope
19533 @cindex local variables
19534 @item info scope @var{location}
19535 List all the variables local to a particular scope.  This command
19536 accepts a @var{location} argument---a function name, a source line, or
19537 an address preceded by a @samp{*}, and prints all the variables local
19538 to the scope defined by that location.  (@xref{Specify Location}, for
19539 details about supported forms of @var{location}.)  For example:
19541 @smallexample
19542 (@value{GDBP}) @b{info scope command_line_handler}
19543 Scope for command_line_handler:
19544 Symbol rl is an argument at stack/frame offset 8, length 4.
19545 Symbol linebuffer is in static storage at address 0x150a18, length 4.
19546 Symbol linelength is in static storage at address 0x150a1c, length 4.
19547 Symbol p is a local variable in register $esi, length 4.
19548 Symbol p1 is a local variable in register $ebx, length 4.
19549 Symbol nline is a local variable in register $edx, length 4.
19550 Symbol repeat is a local variable at frame offset -8, length 4.
19551 @end smallexample
19553 @noindent
19554 This command is especially useful for determining what data to collect
19555 during a @dfn{trace experiment}, see @ref{Tracepoint Actions,
19556 collect}.
19558 @kindex info source
19559 @item info source
19560 Show information about the current source file---that is, the source file for
19561 the function containing the current point of execution:
19562 @itemize @bullet
19563 @item
19564 the name of the source file, and the directory containing it,
19565 @item
19566 the directory it was compiled in,
19567 @item
19568 its length, in lines,
19569 @item
19570 which programming language it is written in,
19571 @item
19572 if the debug information provides it, the program that compiled the file
19573 (which may include, e.g., the compiler version and command line arguments),
19574 @item
19575 whether the executable includes debugging information for that file, and
19576 if so, what format the information is in (e.g., STABS, Dwarf 2, etc.), and
19577 @item
19578 whether the debugging information includes information about
19579 preprocessor macros.
19580 @end itemize
19583 @kindex info sources
19584 @item info sources @r{[}-dirname | -basename@r{]} @r{[}--@r{]} @r{[}@var{regexp}@r{]}
19587 With no options @samp{info sources} prints the names of all source
19588 files in your program for which there is debugging information.  The
19589 source files are presented based on a list of object files
19590 (executables and libraries) currently loaded into @value{GDBN}.  For
19591 each object file all of the associated source files are listed.
19593 Each source file will only be printed once for each object file, but a
19594 single source file can be repeated in the output if it is part of
19595 multiple object files.
19597 If the optional @var{regexp} is provided, then only source files that
19598 match the regular expression will be printed.  The matching is
19599 case-sensitive, except on operating systems that have case-insensitive
19600 filesystem (e.g., MS-Windows). @samp{--} can be used before
19601 @var{regexp} to prevent @value{GDBN} interpreting @var{regexp} as a
19602 command option (e.g. if @var{regexp} starts with @samp{-}).
19604 By default, the @var{regexp} is used to match anywhere in the
19605 filename.  If @code{-dirname}, only files having a dirname matching
19606 @var{regexp} are shown.  If @code{-basename}, only files having a
19607 basename matching @var{regexp} are shown.
19609 It is possible that an object file may be printed in the list with no
19610 associated source files.  This can happen when either no source files
19611 match @var{regexp}, or, the object file was compiled without debug
19612 information and so @value{GDBN} is unable to find any source file
19613 names.
19615 @kindex info functions
19616 @item info functions [-q] [-n]
19617 Print the names and data types of all defined functions.
19618 Similarly to @samp{info types}, this command groups its output by source
19619 files and annotates each function definition with its source line
19620 number.
19622 In programs using different languages, @value{GDBN} chooses the syntax
19623 to print the function name and type according to the
19624 @samp{set language} value: using @samp{set language auto}
19625 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19626 language of the function, other values mean to use
19627 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19629 The @samp{-n} flag excludes @dfn{non-debugging symbols} from the
19630 results.  A non-debugging symbol is a symbol that comes from the
19631 executable's symbol table, not from the debug information (for
19632 example, DWARF) associated with the executable.
19634 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19635 printing header information and messages explaining why no functions
19636 have been printed.
19638 @item info functions [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
19639 Like @samp{info functions}, but only print the names and data types
19640 of the functions selected with the provided regexp(s).
19642 If @var{regexp} is provided, print only the functions whose names
19643 match the regular expression @var{regexp}.
19644 Thus, @samp{info fun step} finds all functions whose
19645 names include @code{step}; @samp{info fun ^step} finds those whose names
19646 start with @code{step}.  If a function name contains characters that
19647 conflict with the regular expression language (e.g.@:
19648 @samp{operator*()}), they may be quoted with a backslash.
19650 If @var{type_regexp} is provided, print only the functions whose
19651 types, as printed by the @code{whatis} command, match
19652 the regular expression @var{type_regexp}.
19653 If @var{type_regexp} contains space(s), it should be enclosed in
19654 quote characters.  If needed, use backslash to escape the meaning
19655 of special characters or quotes.
19656 Thus, @samp{info fun -t '^int ('} finds the functions that return
19657 an integer; @samp{info fun -t '(.*int.*'} finds the functions that
19658 have an argument type containing int; @samp{info fun -t '^int (' ^step}
19659 finds the functions whose names start with @code{step} and that return
19660 int.
19662 If both @var{regexp} and @var{type_regexp} are provided, a function
19663 is printed only if its name matches @var{regexp} and its type matches
19664 @var{type_regexp}.
19667 @kindex info variables
19668 @item info variables [-q] [-n]
19669 Print the names and data types of all variables that are defined
19670 outside of functions (i.e.@: excluding local variables).
19671 The printed variables are grouped by source files and annotated with
19672 their respective source line numbers.
19674 In programs using different languages, @value{GDBN} chooses the syntax
19675 to print the variable name and type according to the
19676 @samp{set language} value: using @samp{set language auto}
19677 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19678 language of the variable, other values mean to use
19679 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19681 The @samp{-n} flag excludes non-debugging symbols from the results.
19683 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19684 printing header information and messages explaining why no variables
19685 have been printed.
19687 @item info variables [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
19688 Like @kbd{info variables}, but only print the variables selected
19689 with the provided regexp(s).
19691 If @var{regexp} is provided, print only the variables whose names
19692 match the regular expression @var{regexp}.
19694 If @var{type_regexp} is provided, print only the variables whose
19695 types, as printed by the @code{whatis} command, match
19696 the regular expression @var{type_regexp}.
19697 If @var{type_regexp} contains space(s), it should be enclosed in
19698 quote characters.  If needed, use backslash to escape the meaning
19699 of special characters or quotes.
19701 If both @var{regexp} and @var{type_regexp} are provided, an argument
19702 is printed only if its name matches @var{regexp} and its type matches
19703 @var{type_regexp}.
19705 @kindex info modules
19706 @cindex modules
19707 @item info modules @r{[}-q@r{]} @r{[}@var{regexp}@r{]}
19708 List all Fortran modules in the program, or all modules matching the
19709 optional regular expression @var{regexp}.
19711 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19712 printing header information and messages explaining why no modules
19713 have been printed.
19715 @kindex info module
19716 @cindex Fortran modules, information about
19717 @cindex functions and variables by Fortran module
19718 @cindex module functions and variables
19719 @item info module functions @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19720 @itemx info module variables @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19721 List all functions or variables within all Fortran modules.  The set
19722 of functions or variables listed can be limited by providing some or
19723 all of the optional regular expressions.  If @var{module-regexp} is
19724 provided, then only Fortran modules matching @var{module-regexp} will
19725 be searched.  Only functions or variables whose type matches the
19726 optional regular expression @var{type-regexp} will be listed.  And
19727 only functions or variables whose name matches the optional regular
19728 expression @var{regexp} will be listed.
19730 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19731 printing header information and messages explaining why no functions
19732 or variables have been printed.
19734 @kindex info classes
19735 @cindex Objective-C, classes and selectors
19736 @item info classes
19737 @itemx info classes @var{regexp}
19738 Display all Objective-C classes in your program, or
19739 (with the @var{regexp} argument) all those matching a particular regular
19740 expression.
19742 @kindex info selectors
19743 @item info selectors
19744 @itemx info selectors @var{regexp}
19745 Display all Objective-C selectors in your program, or
19746 (with the @var{regexp} argument) all those matching a particular regular
19747 expression.
19749 @ignore
19750 This was never implemented.
19751 @kindex info methods
19752 @item info methods
19753 @itemx info methods @var{regexp}
19754 The @code{info methods} command permits the user to examine all defined
19755 methods within C@t{++} program, or (with the @var{regexp} argument) a
19756 specific set of methods found in the various C@t{++} classes.  Many
19757 C@t{++} classes provide a large number of methods.  Thus, the output
19758 from the @code{ptype} command can be overwhelming and hard to use.  The
19759 @code{info-methods} command filters the methods, printing only those
19760 which match the regular-expression @var{regexp}.
19761 @end ignore
19763 @cindex opaque data types
19764 @kindex set opaque-type-resolution
19765 @item set opaque-type-resolution on
19766 Tell @value{GDBN} to resolve opaque types.  An opaque type is a type
19767 declared as a pointer to a @code{struct}, @code{class}, or
19768 @code{union}---for example, @code{struct MyType *}---that is used in one
19769 source file although the full declaration of @code{struct MyType} is in
19770 another source file.  The default is on.
19772 A change in the setting of this subcommand will not take effect until
19773 the next time symbols for a file are loaded.
19775 @item set opaque-type-resolution off
19776 Tell @value{GDBN} not to resolve opaque types.  In this case, the type
19777 is printed as follows:
19778 @smallexample
19779 @{<no data fields>@}
19780 @end smallexample
19782 @kindex show opaque-type-resolution
19783 @item show opaque-type-resolution
19784 Show whether opaque types are resolved or not.
19786 @kindex set print symbol-loading
19787 @cindex print messages when symbols are loaded
19788 @item set print symbol-loading
19789 @itemx set print symbol-loading full
19790 @itemx set print symbol-loading brief
19791 @itemx set print symbol-loading off
19792 The @code{set print symbol-loading} command allows you to control the
19793 printing of messages when @value{GDBN} loads symbol information.
19794 By default a message is printed for the executable and one for each
19795 shared library, and normally this is what you want.  However, when
19796 debugging apps with large numbers of shared libraries these messages
19797 can be annoying.
19798 When set to @code{brief} a message is printed for each executable,
19799 and when @value{GDBN} loads a collection of shared libraries at once
19800 it will only print one message regardless of the number of shared
19801 libraries.  When set to @code{off} no messages are printed.
19803 @kindex show print symbol-loading
19804 @item show print symbol-loading
19805 Show whether messages will be printed when a @value{GDBN} command
19806 entered from the keyboard causes symbol information to be loaded.
19808 @kindex maint print symbols
19809 @cindex symbol dump
19810 @kindex maint print psymbols
19811 @cindex partial symbol dump
19812 @kindex maint print msymbols
19813 @cindex minimal symbol dump
19814 @item maint print symbols @r{[}-pc @var{address}@r{]} @r{[}@var{filename}@r{]}
19815 @itemx maint print symbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19816 @itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-pc @var{address}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19817 @itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19818 @itemx maint print msymbols @r{[}-objfile @var{objfile}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19819 Write a dump of debugging symbol data into the file @var{filename} or
19820 the terminal if @var{filename} is unspecified.
19821 If @code{-objfile @var{objfile}} is specified, only dump symbols for
19822 that objfile.
19823 If @code{-pc @var{address}} is specified, only dump symbols for the file
19824 with code at that address.  Note that @var{address} may be a symbol like
19825 @code{main}.
19826 If @code{-source @var{source}} is specified, only dump symbols for that
19827 source file.
19829 These commands are used to debug the @value{GDBN} symbol-reading code.
19830 These commands do not modify internal @value{GDBN} state, therefore
19831 @samp{maint print symbols} will only print symbols for already expanded symbol
19832 tables.
19833 You can use the command @code{info sources} to find out which files these are.
19834 If you use @samp{maint print psymbols} instead, the dump shows information
19835 about symbols that @value{GDBN} only knows partially---that is, symbols
19836 defined in files that @value{GDBN} has skimmed, but not yet read completely.
19837 Finally, @samp{maint print msymbols} just dumps ``minimal symbols'', e.g.,
19838 ``ELF symbols''.
19840 @xref{Files, ,Commands to Specify Files}, for a discussion of how
19841 @value{GDBN} reads symbols (in the description of @code{symbol-file}).
19843 @kindex maint info symtabs
19844 @kindex maint info psymtabs
19845 @cindex listing @value{GDBN}'s internal symbol tables
19846 @cindex symbol tables, listing @value{GDBN}'s internal
19847 @cindex full symbol tables, listing @value{GDBN}'s internal
19848 @cindex partial symbol tables, listing @value{GDBN}'s internal
19849 @item maint info symtabs @r{[} @var{regexp} @r{]}
19850 @itemx maint info psymtabs @r{[} @var{regexp} @r{]}
19852 List the @code{struct symtab} or @code{struct partial_symtab}
19853 structures whose names match @var{regexp}.  If @var{regexp} is not
19854 given, list them all.  The output includes expressions which you can
19855 copy into a @value{GDBN} debugging this one to examine a particular
19856 structure in more detail.  For example:
19858 @smallexample
19859 (@value{GDBP}) maint info psymtabs dwarf2read
19860 @{ objfile /home/gnu/build/gdb/gdb
19861   ((struct objfile *) 0x82e69d0)
19862   @{ psymtab /home/gnu/src/gdb/dwarf2read.c
19863     ((struct partial_symtab *) 0x8474b10)
19864     readin no
19865     fullname (null)
19866     text addresses 0x814d3c8 -- 0x8158074
19867     globals (* (struct partial_symbol **) 0x8507a08 @@ 9)
19868     statics (* (struct partial_symbol **) 0x40e95b78 @@ 2882)
19869     dependencies (none)
19870   @}
19872 (@value{GDBP}) maint info symtabs
19873 (@value{GDBP})
19874 @end smallexample
19875 @noindent
19876 We see that there is one partial symbol table whose filename contains
19877 the string @samp{dwarf2read}, belonging to the @samp{gdb} executable;
19878 and we see that @value{GDBN} has not read in any symtabs yet at all.
19879 If we set a breakpoint on a function, that will cause @value{GDBN} to
19880 read the symtab for the compilation unit containing that function:
19882 @smallexample
19883 (@value{GDBP}) break dwarf2_psymtab_to_symtab
19884 Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c,
19885 line 1574.
19886 (@value{GDBP}) maint info symtabs
19887 @{ objfile /home/gnu/build/gdb/gdb
19888   ((struct objfile *) 0x82e69d0)
19889   @{ symtab /home/gnu/src/gdb/dwarf2read.c
19890     ((struct symtab *) 0x86c1f38)
19891     dirname (null)
19892     fullname (null)
19893     blockvector ((struct blockvector *) 0x86c1bd0) (primary)
19894     linetable ((struct linetable *) 0x8370fa0)
19895     debugformat DWARF 2
19896   @}
19898 (@value{GDBP})
19899 @end smallexample
19901 @kindex maint info line-table
19902 @cindex listing @value{GDBN}'s internal line tables
19903 @cindex line tables, listing @value{GDBN}'s internal
19904 @item maint info line-table @r{[} @var{regexp} @r{]}
19906 List the @code{struct linetable} from all @code{struct symtab}
19907 instances whose name matches @var{regexp}.  If @var{regexp} is not
19908 given, list the @code{struct linetable} from all @code{struct symtab}.
19909 For example:
19911 @smallexample
19912 (@value{GDBP}) maint info line-table
19913 objfile: /home/gnu/build/a.out ((struct objfile *) 0x6120000e0d40)
19914 compunit_symtab: simple.cpp ((struct compunit_symtab *) 0x6210000ff450)
19915 symtab: /home/gnu/src/simple.cpp ((struct symtab *) 0x6210000ff4d0)
19916 linetable: ((struct linetable *) 0x62100012b760):
19917 INDEX  LINE   ADDRESS            IS-STMT PROLOGUE-END
19918 0      3      0x0000000000401110 Y
19919 1      4      0x0000000000401114 Y       Y
19920 2      9      0x0000000000401120 Y
19921 3      10     0x0000000000401124 Y       Y
19922 4      10     0x0000000000401129
19923 5      15     0x0000000000401130 Y
19924 6      16     0x0000000000401134 Y       Y
19925 7      16     0x0000000000401139
19926 8      21     0x0000000000401140 Y
19927 9      22     0x000000000040114f Y       Y
19928 10     22     0x0000000000401154
19929 11     END    0x000000000040115a Y
19930 @end smallexample
19931 @noindent
19932 The @samp{IS-STMT} column indicates if the address is a recommended breakpoint
19933 location to represent a line or a statement.  The @samp{PROLOGUE-END} column
19934 indicates that a given address is an adequate place to set a breakpoint at the
19935 first instruction following a function prologue.
19937 @kindex maint set symbol-cache-size
19938 @cindex symbol cache size
19939 @item maint set symbol-cache-size @var{size}
19940 Set the size of the symbol cache to @var{size}.
19941 The default size is intended to be good enough for debugging
19942 most applications.  This option exists to allow for experimenting
19943 with different sizes.
19945 @kindex maint show symbol-cache-size
19946 @item maint show symbol-cache-size
19947 Show the size of the symbol cache.
19949 @kindex maint print symbol-cache
19950 @cindex symbol cache, printing its contents
19951 @item maint print symbol-cache
19952 Print the contents of the symbol cache.
19953 This is useful when debugging symbol cache issues.
19955 @kindex maint print symbol-cache-statistics
19956 @cindex symbol cache, printing usage statistics
19957 @item maint print symbol-cache-statistics
19958 Print symbol cache usage statistics.
19959 This helps determine how well the cache is being utilized.
19961 @kindex maint flush symbol-cache
19962 @kindex maint flush-symbol-cache
19963 @cindex symbol cache, flushing
19964 @item maint flush symbol-cache
19965 @itemx maint flush-symbol-cache
19966 Flush the contents of the symbol cache, all entries are removed.  This
19967 command is useful when debugging the symbol cache.  It is also useful
19968 when collecting performance data.  The command @code{maint
19969 flush-symbol-cache} is deprecated in favor of @code{maint flush
19970 symbol-cache}..
19972 @kindex maint set ignore-prologue-end-flag
19973 @cindex prologue-end
19974 @item maint set ignore-prologue-end-flag [on|off]
19975 Enable or disable the use of the @samp{PROLOGUE-END} flag from the line-table.
19976 When @samp{off} (the default), @value{GDBN} uses the @samp{PROLOGUE-END} flag
19977 to place breakpoints past the end of a function prologue.  When @samp{on},
19978 @value{GDBN} ignores the flag and relies on prologue analyzers to skip function
19979 prologues.
19981 @kindex maint show ignore-prologue-end-flag
19982 @item maint show ignore-prologue-end-flag
19983 Show whether @value{GDBN} will ignore the @samp{PROLOGUE-END} flag.
19985 @end table
19987 @node Altering
19988 @chapter Altering Execution
19990 Once you think you have found an error in your program, you might want to
19991 find out for certain whether correcting the apparent error would lead to
19992 correct results in the rest of the run.  You can find the answer by
19993 experiment, using the @value{GDBN} features for altering execution of the
19994 program.
19996 For example, you can store new values into variables or memory
19997 locations, give your program a signal, restart it at a different
19998 address, or even return prematurely from a function.
20000 @menu
20001 * Assignment::                  Assignment to variables
20002 * Jumping::                     Continuing at a different address
20003 * Signaling::                   Giving your program a signal
20004 * Returning::                   Returning from a function
20005 * Calling::                     Calling your program's functions
20006 * Patching::                    Patching your program
20007 * Compiling and Injecting Code:: Compiling and injecting code in @value{GDBN}
20008 @end menu
20010 @node Assignment
20011 @section Assignment to Variables
20013 @cindex assignment
20014 @cindex setting variables
20015 To alter the value of a variable, evaluate an assignment expression.
20016 @xref{Expressions, ,Expressions}.  For example,
20018 @smallexample
20019 print x=4
20020 @end smallexample
20022 @noindent
20023 stores the value 4 into the variable @code{x}, and then prints the
20024 value of the assignment expression (which is 4).
20025 @xref{Languages, ,Using @value{GDBN} with Different Languages}, for more
20026 information on operators in supported languages.
20028 @kindex set variable
20029 @cindex variables, setting
20030 If you are not interested in seeing the value of the assignment, use the
20031 @code{set} command instead of the @code{print} command.  @code{set} is
20032 really the same as @code{print} except that the expression's value is
20033 not printed and is not put in the value history (@pxref{Value History,
20034 ,Value History}).  The expression is evaluated only for its effects.
20036 If the beginning of the argument string of the @code{set} command
20037 appears identical to a @code{set} subcommand, use the @code{set
20038 variable} command instead of just @code{set}.  This command is identical
20039 to @code{set} except for its lack of subcommands.  For example, if your
20040 program has a variable @code{width}, you get an error if you try to set
20041 a new value with just @samp{set width=13}, because @value{GDBN} has the
20042 command @code{set width}:
20044 @smallexample
20045 (@value{GDBP}) whatis width
20046 type = double
20047 (@value{GDBP}) p width
20048 $4 = 13
20049 (@value{GDBP}) set width=47
20050 Invalid syntax in expression.
20051 @end smallexample
20053 @noindent
20054 The invalid expression, of course, is @samp{=47}.  In
20055 order to actually set the program's variable @code{width}, use
20057 @smallexample
20058 (@value{GDBP}) set var width=47
20059 @end smallexample
20061 Because the @code{set} command has many subcommands that can conflict
20062 with the names of program variables, it is a good idea to use the
20063 @code{set variable} command instead of just @code{set}.  For example, if
20064 your program has a variable @code{g}, you run into problems if you try
20065 to set a new value with just @samp{set g=4}, because @value{GDBN} has
20066 the command @code{set gnutarget}, abbreviated @code{set g}:
20068 @smallexample
20069 @group
20070 (@value{GDBP}) whatis g
20071 type = double
20072 (@value{GDBP}) p g
20073 $1 = 1
20074 (@value{GDBP}) set g=4
20075 (@value{GDBP}) p g
20076 $2 = 1
20077 (@value{GDBP}) r
20078 The program being debugged has been started already.
20079 Start it from the beginning? (y or n) y
20080 Starting program: /home/smith/cc_progs/a.out
20081 "/home/smith/cc_progs/a.out": can't open to read symbols:
20082                                  Invalid bfd target.
20083 (@value{GDBP}) show g
20084 The current BFD target is "=4".
20085 @end group
20086 @end smallexample
20088 @noindent
20089 The program variable @code{g} did not change, and you silently set the
20090 @code{gnutarget} to an invalid value.  In order to set the variable
20091 @code{g}, use
20093 @smallexample
20094 (@value{GDBP}) set var g=4
20095 @end smallexample
20097 @value{GDBN} allows more implicit conversions in assignments than C; you can
20098 freely store an integer value into a pointer variable or vice versa,
20099 and you can convert any structure to any other structure that is the
20100 same length or shorter.
20101 @comment FIXME: how do structs align/pad in these conversions?
20102 @comment        /doc@cygnus.com 18dec1990
20104 To store values into arbitrary places in memory, use the @samp{@{@dots{}@}}
20105 construct to generate a value of specified type at a specified address
20106 (@pxref{Expressions, ,Expressions}).  For example, @code{@{int@}0x83040} refers
20107 to memory location @code{0x83040} as an integer (which implies a certain size
20108 and representation in memory), and
20110 @smallexample
20111 set @{int@}0x83040 = 4
20112 @end smallexample
20114 @noindent
20115 stores the value 4 into that memory location.
20117 @node Jumping
20118 @section Continuing at a Different Address
20120 Ordinarily, when you continue your program, you do so at the place where
20121 it stopped, with the @code{continue} command.  You can instead continue at
20122 an address of your own choosing, with the following commands:
20124 @table @code
20125 @kindex jump
20126 @kindex j @r{(@code{jump})}
20127 @item jump @var{location}
20128 @itemx j @var{location}
20129 Resume execution at @var{location}.  Execution stops again immediately
20130 if there is a breakpoint there.  @xref{Specify Location}, for a description
20131 of the different forms of @var{location}.  It is common
20132 practice to use the @code{tbreak} command in conjunction with
20133 @code{jump}.  @xref{Set Breaks, ,Setting Breakpoints}.
20135 The @code{jump} command does not change the current stack frame, or
20136 the stack pointer, or the contents of any memory location or any
20137 register other than the program counter.  If @var{location} is in
20138 a different function from the one currently executing, the results may
20139 be bizarre if the two functions expect different patterns of arguments or
20140 of local variables.  For this reason, the @code{jump} command requests
20141 confirmation if the specified line is not in the function currently
20142 executing.  However, even bizarre results are predictable if you are
20143 well acquainted with the machine-language code of your program.
20144 @end table
20146 On many systems, you can get much the same effect as the @code{jump}
20147 command by storing a new value into the register @code{$pc}.  The
20148 difference is that this does not start your program running; it only
20149 changes the address of where it @emph{will} run when you continue.  For
20150 example,
20152 @smallexample
20153 set $pc = 0x485
20154 @end smallexample
20156 @noindent
20157 makes the next @code{continue} command or stepping command execute at
20158 address @code{0x485}, rather than at the address where your program stopped.
20159 @xref{Continuing and Stepping, ,Continuing and Stepping}.
20161 The most common occasion to use the @code{jump} command is to back
20162 up---perhaps with more breakpoints set---over a portion of a program
20163 that has already executed, in order to examine its execution in more
20164 detail.
20166 @c @group
20167 @node Signaling
20168 @section Giving your Program a Signal
20169 @cindex deliver a signal to a program
20171 @table @code
20172 @kindex signal
20173 @item signal @var{signal}
20174 Resume execution where your program is stopped, but immediately give it the
20175 signal @var{signal}.  The @var{signal} can be the name or the number of a
20176 signal.  For example, on many systems @code{signal 2} and @code{signal
20177 SIGINT} are both ways of sending an interrupt signal.
20179 Alternatively, if @var{signal} is zero, continue execution without
20180 giving a signal.  This is useful when your program stopped on account of
20181 a signal and would ordinarily see the signal when resumed with the
20182 @code{continue} command; @samp{signal 0} causes it to resume without a
20183 signal.
20185 @emph{Note:} When resuming a multi-threaded program, @var{signal} is
20186 delivered to the currently selected thread, not the thread that last
20187 reported a stop.  This includes the situation where a thread was
20188 stopped due to a signal.  So if you want to continue execution
20189 suppressing the signal that stopped a thread, you should select that
20190 same thread before issuing the @samp{signal 0} command.  If you issue
20191 the @samp{signal 0} command with another thread as the selected one,
20192 @value{GDBN} detects that and asks for confirmation.
20194 Invoking the @code{signal} command is not the same as invoking the
20195 @code{kill} utility from the shell.  Sending a signal with @code{kill}
20196 causes @value{GDBN} to decide what to do with the signal depending on
20197 the signal handling tables (@pxref{Signals}).  The @code{signal} command
20198 passes the signal directly to your program.
20200 @code{signal} does not repeat when you press @key{RET} a second time
20201 after executing the command.
20203 @kindex queue-signal
20204 @item queue-signal @var{signal}
20205 Queue @var{signal} to be delivered immediately to the current thread
20206 when execution of the thread resumes.  The @var{signal} can be the name or
20207 the number of a signal.  For example, on many systems @code{signal 2} and
20208 @code{signal SIGINT} are both ways of sending an interrupt signal.
20209 The handling of the signal must be set to pass the signal to the program,
20210 otherwise @value{GDBN} will report an error.
20211 You can control the handling of signals from @value{GDBN} with the
20212 @code{handle} command (@pxref{Signals}).
20214 Alternatively, if @var{signal} is zero, any currently queued signal
20215 for the current thread is discarded and when execution resumes no signal
20216 will be delivered.  This is useful when your program stopped on account
20217 of a signal and would ordinarily see the signal when resumed with the
20218 @code{continue} command.
20220 This command differs from the @code{signal} command in that the signal
20221 is just queued, execution is not resumed.  And @code{queue-signal} cannot
20222 be used to pass a signal whose handling state has been set to @code{nopass}
20223 (@pxref{Signals}).
20224 @end table
20225 @c @end group
20227 @xref{stepping into signal handlers}, for information on how stepping
20228 commands behave when the thread has a signal queued.
20230 @node Returning
20231 @section Returning from a Function
20233 @table @code
20234 @cindex returning from a function
20235 @kindex return
20236 @item return
20237 @itemx return @var{expression}
20238 You can cancel execution of a function call with the @code{return}
20239 command.  If you give an
20240 @var{expression} argument, its value is used as the function's return
20241 value.
20242 @end table
20244 When you use @code{return}, @value{GDBN} discards the selected stack frame
20245 (and all frames within it).  You can think of this as making the
20246 discarded frame return prematurely.  If you wish to specify a value to
20247 be returned, give that value as the argument to @code{return}.
20249 This pops the selected stack frame (@pxref{Selection, ,Selecting a
20250 Frame}), and any other frames inside of it, leaving its caller as the
20251 innermost remaining frame.  That frame becomes selected.  The
20252 specified value is stored in the registers used for returning values
20253 of functions.
20255 The @code{return} command does not resume execution; it leaves the
20256 program stopped in the state that would exist if the function had just
20257 returned.  In contrast, the @code{finish} command (@pxref{Continuing
20258 and Stepping, ,Continuing and Stepping}) resumes execution until the
20259 selected stack frame returns naturally.
20261 @value{GDBN} needs to know how the @var{expression} argument should be set for
20262 the inferior.  The concrete registers assignment depends on the OS ABI and the
20263 type being returned by the selected stack frame.  For example it is common for
20264 OS ABI to return floating point values in FPU registers while integer values in
20265 CPU registers.  Still some ABIs return even floating point values in CPU
20266 registers.  Larger integer widths (such as @code{long long int}) also have
20267 specific placement rules.  @value{GDBN} already knows the OS ABI from its
20268 current target so it needs to find out also the type being returned to make the
20269 assignment into the right register(s).
20271 Normally, the selected stack frame has debug info.  @value{GDBN} will always
20272 use the debug info instead of the implicit type of @var{expression} when the
20273 debug info is available.  For example, if you type @kbd{return -1}, and the
20274 function in the current stack frame is declared to return a @code{long long
20275 int}, @value{GDBN} transparently converts the implicit @code{int} value of -1
20276 into a @code{long long int}:
20278 @smallexample
20279 Breakpoint 1, func () at gdb.base/return-nodebug.c:29
20280 29        return 31;
20281 (@value{GDBP}) return -1
20282 Make func return now? (y or n) y
20283 #0  0x004004f6 in main () at gdb.base/return-nodebug.c:43
20284 43        printf ("result=%lld\n", func ());
20285 (@value{GDBP})
20286 @end smallexample
20288 However, if the selected stack frame does not have a debug info, e.g., if the
20289 function was compiled without debug info, @value{GDBN} has to find out the type
20290 to return from user.  Specifying a different type by mistake may set the value
20291 in different inferior registers than the caller code expects.  For example,
20292 typing @kbd{return -1} with its implicit type @code{int} would set only a part
20293 of a @code{long long int} result for a debug info less function (on 32-bit
20294 architectures).  Therefore the user is required to specify the return type by
20295 an appropriate cast explicitly:
20297 @smallexample
20298 Breakpoint 2, 0x0040050b in func ()
20299 (@value{GDBP}) return -1
20300 Return value type not available for selected stack frame.
20301 Please use an explicit cast of the value to return.
20302 (@value{GDBP}) return (long long int) -1
20303 Make selected stack frame return now? (y or n) y
20304 #0  0x00400526 in main ()
20305 (@value{GDBP})
20306 @end smallexample
20308 @node Calling
20309 @section Calling Program Functions
20311 @table @code
20312 @cindex calling functions
20313 @cindex inferior functions, calling
20314 @item print @var{expr}
20315 Evaluate the expression @var{expr} and display the resulting value.
20316 The expression may include calls to functions in the program being
20317 debugged.
20319 @kindex call
20320 @item call @var{expr}
20321 Evaluate the expression @var{expr} without displaying @code{void}
20322 returned values.
20324 You can use this variant of the @code{print} command if you want to
20325 execute a function from your program that does not return anything
20326 (a.k.a.@: @dfn{a void function}), but without cluttering the output
20327 with @code{void} returned values that @value{GDBN} will otherwise
20328 print.  If the result is not void, it is printed and saved in the
20329 value history.
20330 @end table
20332 It is possible for the function you call via the @code{print} or
20333 @code{call} command to generate a signal (e.g., if there's a bug in
20334 the function, or if you passed it incorrect arguments).  What happens
20335 in that case is controlled by the @code{set unwindonsignal} command.
20337 Similarly, with a C@t{++} program it is possible for the function you
20338 call via the @code{print} or @code{call} command to generate an
20339 exception that is not handled due to the constraints of the dummy
20340 frame.  In this case, any exception that is raised in the frame, but has
20341 an out-of-frame exception handler will not be found.  GDB builds a
20342 dummy-frame for the inferior function call, and the unwinder cannot
20343 seek for exception handlers outside of this dummy-frame.  What happens
20344 in that case is controlled by the
20345 @code{set unwind-on-terminating-exception} command.
20347 @table @code
20348 @item set unwindonsignal
20349 @kindex set unwindonsignal
20350 @cindex unwind stack in called functions
20351 @cindex call dummy stack unwinding
20352 Set unwinding of the stack if a signal is received while in a function
20353 that @value{GDBN} called in the program being debugged.  If set to on,
20354 @value{GDBN} unwinds the stack it created for the call and restores
20355 the context to what it was before the call.  If set to off (the
20356 default), @value{GDBN} stops in the frame where the signal was
20357 received.
20359 @item show unwindonsignal
20360 @kindex show unwindonsignal
20361 Show the current setting of stack unwinding in the functions called by
20362 @value{GDBN}.
20364 @item set unwind-on-terminating-exception
20365 @kindex set unwind-on-terminating-exception
20366 @cindex unwind stack in called functions with unhandled exceptions
20367 @cindex call dummy stack unwinding on unhandled exception.
20368 Set unwinding of the stack if a C@t{++} exception is raised, but left
20369 unhandled while in a function that @value{GDBN} called in the program being
20370 debugged.  If set to on (the default), @value{GDBN} unwinds the stack
20371 it created for the call and restores the context to what it was before
20372 the call.  If set to off, @value{GDBN} the exception is delivered to
20373 the default C@t{++} exception handler and the inferior terminated.
20375 @item show unwind-on-terminating-exception
20376 @kindex show unwind-on-terminating-exception
20377 Show the current setting of stack unwinding in the functions called by
20378 @value{GDBN}.
20380 @item set may-call-functions
20381 @kindex set may-call-functions
20382 @cindex disabling calling functions in the program
20383 @cindex calling functions in the program, disabling
20384 Set permission to call functions in the program.
20385 This controls whether @value{GDBN} will attempt to call functions in
20386 the program, such as with expressions in the @code{print} command.  It
20387 defaults to @code{on}.
20389 To call a function in the program, @value{GDBN} has to temporarily
20390 modify the state of the inferior.  This has potentially undesired side
20391 effects.  Also, having @value{GDBN} call nested functions is likely to
20392 be erroneous and may even crash the program being debugged.  You can
20393 avoid such hazards by forbidding @value{GDBN} from calling functions
20394 in the program being debugged.  If calling functions in the program
20395 is forbidden, GDB will throw an error when a command (such as printing
20396 an expression) starts a function call in the program.
20398 @item show may-call-functions
20399 @kindex show may-call-functions
20400 Show permission to call functions in the program.
20402 @end table
20404 @subsection Calling functions with no debug info
20406 @cindex no debug info functions
20407 Sometimes, a function you wish to call is missing debug information.
20408 In such case, @value{GDBN} does not know the type of the function,
20409 including the types of the function's parameters.  To avoid calling
20410 the inferior function incorrectly, which could result in the called
20411 function functioning erroneously and even crash, @value{GDBN} refuses
20412 to call the function unless you tell it the type of the function.
20414 For prototyped (i.e.@: ANSI/ISO style) functions, there are two ways
20415 to do that.  The simplest is to cast the call to the function's
20416 declared return type.  For example:
20418 @smallexample
20419 (@value{GDBP}) p getenv ("PATH")
20420 'getenv' has unknown return type; cast the call to its declared return type
20421 (@value{GDBP}) p (char *) getenv ("PATH")
20422 $1 = 0x7fffffffe7ba "/usr/local/bin:/"...
20423 @end smallexample
20425 Casting the return type of a no-debug function is equivalent to
20426 casting the function to a pointer to a prototyped function that has a
20427 prototype that matches the types of the passed-in arguments, and
20428 calling that.  I.e., the call above is equivalent to:
20430 @smallexample
20431 (@value{GDBP}) p ((char * (*) (const char *)) getenv) ("PATH")
20432 @end smallexample
20434 @noindent
20435 and given this prototyped C or C++ function with float parameters:
20437 @smallexample
20438 float multiply (float v1, float v2) @{ return v1 * v2; @}
20439 @end smallexample
20441 @noindent
20442 these calls are equivalent:
20444 @smallexample
20445 (@value{GDBP}) p (float) multiply (2.0f, 3.0f)
20446 (@value{GDBP}) p ((float (*) (float, float)) multiply) (2.0f, 3.0f)
20447 @end smallexample
20449 If the function you wish to call is declared as unprototyped (i.e.@:
20450 old K&R style), you must use the cast-to-function-pointer syntax, so
20451 that @value{GDBN} knows that it needs to apply default argument
20452 promotions (promote float arguments to double).  @xref{ABI, float
20453 promotion}.  For example, given this unprototyped C function with
20454 float parameters, and no debug info:
20456 @smallexample
20457 float
20458 multiply_noproto (v1, v2)
20459   float v1, v2;
20461   return v1 * v2;
20463 @end smallexample
20465 @noindent
20466 you call it like this:
20468 @smallexample
20469   (@value{GDBP}) p ((float (*) ()) multiply_noproto) (2.0f, 3.0f)
20470 @end smallexample
20472 @node Patching
20473 @section Patching Programs
20475 @cindex patching binaries
20476 @cindex writing into executables
20477 @cindex writing into corefiles
20479 By default, @value{GDBN} opens the file containing your program's
20480 executable code (or the corefile) read-only.  This prevents accidental
20481 alterations to machine code; but it also prevents you from intentionally
20482 patching your program's binary.
20484 If you'd like to be able to patch the binary, you can specify that
20485 explicitly with the @code{set write} command.  For example, you might
20486 want to turn on internal debugging flags, or even to make emergency
20487 repairs.
20489 @table @code
20490 @kindex set write
20491 @item set write on
20492 @itemx set write off
20493 If you specify @samp{set write on}, @value{GDBN} opens executable and
20494 core files for both reading and writing; if you specify @kbd{set write
20495 off} (the default), @value{GDBN} opens them read-only.
20497 If you have already loaded a file, you must load it again (using the
20498 @code{exec-file} or @code{core-file} command) after changing @code{set
20499 write}, for your new setting to take effect.
20501 @item show write
20502 @kindex show write
20503 Display whether executable files and core files are opened for writing
20504 as well as reading.
20505 @end table
20507 @node Compiling and Injecting Code
20508 @section Compiling and injecting code in @value{GDBN}
20509 @cindex injecting code
20510 @cindex writing into executables
20511 @cindex compiling code
20513 @value{GDBN} supports on-demand compilation and code injection into
20514 programs running under @value{GDBN}.  GCC 5.0 or higher built with
20515 @file{libcc1.so} must be installed for this functionality to be enabled.
20516 This functionality is implemented with the following commands.
20518 @table @code
20519 @kindex compile code
20520 @item compile code @var{source-code}
20521 @itemx compile code -raw @var{--} @var{source-code}
20522 Compile @var{source-code} with the compiler language found as the current
20523 language in @value{GDBN} (@pxref{Languages}).  If compilation and
20524 injection is not supported with the current language specified in
20525 @value{GDBN}, or the compiler does not support this feature, an error
20526 message will be printed.  If @var{source-code} compiles and links
20527 successfully, @value{GDBN} will load the object-code emitted,
20528 and execute it within the context of the currently selected inferior.
20529 It is important to note that the compiled code is executed immediately.
20530 After execution, the compiled code is removed from @value{GDBN} and any
20531 new types or variables you have defined will be deleted.
20533 The command allows you to specify @var{source-code} in two ways.
20534 The simplest method is to provide a single line of code to the command.
20535 E.g.:
20537 @smallexample
20538 compile code printf ("hello world\n");
20539 @end smallexample
20541 If you specify options on the command line as well as source code, they
20542 may conflict.  The @samp{--} delimiter can be used to separate options
20543 from actual source code.  E.g.:
20545 @smallexample
20546 compile code -r -- printf ("hello world\n");
20547 @end smallexample
20549 Alternatively you can enter source code as multiple lines of text.  To
20550 enter this mode, invoke the @samp{compile code} command without any text
20551 following the command.  This will start the multiple-line editor and
20552 allow you to type as many lines of source code as required.  When you
20553 have completed typing, enter @samp{end} on its own line to exit the
20554 editor.
20556 @smallexample
20557 compile code
20558 >printf ("hello\n");
20559 >printf ("world\n");
20560 >end
20561 @end smallexample
20563 Specifying @samp{-raw}, prohibits @value{GDBN} from wrapping the
20564 provided @var{source-code} in a callable scope.  In this case, you must
20565 specify the entry point of the code by defining a function named
20566 @code{_gdb_expr_}.  The @samp{-raw} code cannot access variables of the
20567 inferior.  Using @samp{-raw} option may be needed for example when
20568 @var{source-code} requires @samp{#include} lines which may conflict with
20569 inferior symbols otherwise.
20571 @kindex compile file
20572 @item compile file @var{filename}
20573 @itemx compile file -raw @var{filename}
20574 Like @code{compile code}, but take the source code from @var{filename}.
20576 @smallexample
20577 compile file /home/user/example.c
20578 @end smallexample
20579 @end table
20581 @table @code
20582 @item compile print [[@var{options}] --] @var{expr}
20583 @itemx compile print [[@var{options}] --] /@var{f} @var{expr}
20584 Compile and execute @var{expr} with the compiler language found as the
20585 current language in @value{GDBN} (@pxref{Languages}).  By default the
20586 value of @var{expr} is printed in a format appropriate to its data type;
20587 you can choose a different format by specifying @samp{/@var{f}}, where
20588 @var{f} is a letter specifying the format; see @ref{Output Formats,,Output
20589 Formats}.  The @code{compile print} command accepts the same options
20590 as the @code{print} command; see @ref{print options}.
20592 @item compile print [[@var{options}] --]
20593 @itemx compile print [[@var{options}] --] /@var{f}
20594 @cindex reprint the last value
20595 Alternatively you can enter the expression (source code producing it) as
20596 multiple lines of text.  To enter this mode, invoke the @samp{compile print}
20597 command without any text following the command.  This will start the
20598 multiple-line editor.
20599 @end table
20601 @noindent
20602 The process of compiling and injecting the code can be inspected using:
20604 @table @code
20605 @anchor{set debug compile}
20606 @item set debug compile
20607 @cindex compile command debugging info
20608 Turns on or off display of @value{GDBN} process of compiling and
20609 injecting the code.  The default is off.
20611 @item show debug compile
20612 Displays the current state of displaying @value{GDBN} process of
20613 compiling and injecting the code.
20615 @anchor{set debug compile-cplus-types}
20616 @item set debug compile-cplus-types
20617 @cindex compile C@t{++} type conversion
20618 Turns on or off the display of C@t{++} type conversion debugging information.
20619 The default is off.
20621 @item show debug compile-cplus-types
20622 Displays the current state of displaying debugging information for
20623 C@t{++} type conversion.
20624 @end table
20626 @subsection Compilation options for the @code{compile} command
20628 @value{GDBN} needs to specify the right compilation options for the code
20629 to be injected, in part to make its ABI compatible with the inferior
20630 and in part to make the injected code compatible with @value{GDBN}'s
20631 injecting process.
20633 @noindent
20634 The options used, in increasing precedence:
20636 @table @asis
20637 @item target architecture and OS options (@code{gdbarch})
20638 These options depend on target processor type and target operating
20639 system, usually they specify at least 32-bit (@code{-m32}) or 64-bit
20640 (@code{-m64}) compilation option.
20642 @item compilation options recorded in the target
20643 @value{NGCC} (since version 4.7) stores the options used for compilation
20644 into @code{DW_AT_producer} part of DWARF debugging information according
20645 to the @value{NGCC} option @code{-grecord-gcc-switches}.  One has to
20646 explicitly specify @code{-g} during inferior compilation otherwise
20647 @value{NGCC} produces no DWARF.  This feature is only relevant for
20648 platforms where @code{-g} produces DWARF by default, otherwise one may
20649 try to enforce DWARF by using @code{-gdwarf-4}.
20651 @item compilation options set by @code{set compile-args}
20652 @end table
20654 @noindent
20655 You can override compilation options using the following command:
20657 @table @code
20658 @item set compile-args
20659 @cindex compile command options override
20660 Set compilation options used for compiling and injecting code with the
20661 @code{compile} commands.  These options override any conflicting ones
20662 from the target architecture and/or options stored during inferior
20663 compilation.
20665 @item show compile-args
20666 Displays the current state of compilation options override.
20667 This does not show all the options actually used during compilation,
20668 use @ref{set debug compile} for that.
20669 @end table
20671 @subsection Caveats when using the @code{compile} command
20673 There are a few caveats to keep in mind when using the @code{compile}
20674 command.  As the caveats are different per language, the table below
20675 highlights specific issues on a per language basis.
20677 @table @asis
20678 @item C code examples and caveats
20679 When the language in @value{GDBN} is set to @samp{C}, the compiler will
20680 attempt to compile the source code with a @samp{C} compiler.  The source
20681 code provided to the @code{compile} command will have much the same
20682 access to variables and types as it normally would if it were part of
20683 the program currently being debugged in @value{GDBN}.
20685 Below is a sample program that forms the basis of the examples that
20686 follow.  This program has been compiled and loaded into @value{GDBN},
20687 much like any other normal debugging session.
20689 @smallexample
20690 void function1 (void)
20692    int i = 42;
20693    printf ("function 1\n");
20696 void function2 (void)
20698    int j = 12;
20699    function1 ();
20702 int main(void)
20704    int k = 6;
20705    int *p;
20706    function2 ();
20707    return 0;
20709 @end smallexample
20711 For the purposes of the examples in this section, the program above has
20712 been compiled, loaded into @value{GDBN}, stopped at the function
20713 @code{main}, and @value{GDBN} is awaiting input from the user.
20715 To access variables and types for any program in @value{GDBN}, the
20716 program must be compiled and packaged with debug information.  The
20717 @code{compile} command is not an exception to this rule.  Without debug
20718 information, you can still use the @code{compile} command, but you will
20719 be very limited in what variables and types you can access.
20721 So with that in mind, the example above has been compiled with debug
20722 information enabled.  The @code{compile} command will have access to
20723 all variables and types (except those that may have been optimized
20724 out).  Currently, as @value{GDBN} has stopped the program in the
20725 @code{main} function, the @code{compile} command would have access to
20726 the variable @code{k}.  You could invoke the @code{compile} command
20727 and type some source code to set the value of @code{k}.  You can also
20728 read it, or do anything with that variable you would normally do in
20729 @code{C}.  Be aware that changes to inferior variables in the
20730 @code{compile} command are persistent.  In the following example:
20732 @smallexample
20733 compile code k = 3;
20734 @end smallexample
20736 @noindent
20737 the variable @code{k} is now 3.  It will retain that value until
20738 something else in the example program changes it, or another
20739 @code{compile} command changes it.
20741 Normal scope and access rules apply to source code compiled and
20742 injected by the @code{compile} command.  In the example, the variables
20743 @code{j} and @code{k} are not accessible yet, because the program is
20744 currently stopped in the @code{main} function, where these variables
20745 are not in scope.  Therefore, the following command
20747 @smallexample
20748 compile code j = 3;
20749 @end smallexample
20751 @noindent
20752 will result in a compilation error message.
20754 Once the program is continued, execution will bring these variables in
20755 scope, and they will become accessible; then the code you specify via
20756 the @code{compile} command will be able to access them.
20758 You can create variables and types with the @code{compile} command as
20759 part of your source code.  Variables and types that are created as part
20760 of the @code{compile} command are not visible to the rest of the program for
20761 the duration of its run.  This example is valid:
20763 @smallexample
20764 compile code int ff = 5; printf ("ff is %d\n", ff);
20765 @end smallexample
20767 However, if you were to type the following into @value{GDBN} after that
20768 command has completed:
20770 @smallexample
20771 compile code printf ("ff is %d\n'', ff);
20772 @end smallexample
20774 @noindent
20775 a compiler error would be raised as the variable @code{ff} no longer
20776 exists.  Object code generated and injected by the @code{compile}
20777 command is removed when its execution ends.  Caution is advised
20778 when assigning to program variables values of variables created by the
20779 code submitted to the @code{compile} command.  This example is valid:
20781 @smallexample
20782 compile code int ff = 5; k = ff;
20783 @end smallexample
20785 The value of the variable @code{ff} is assigned to @code{k}.  The variable
20786 @code{k} does not require the existence of @code{ff} to maintain the value
20787 it has been assigned.  However, pointers require particular care in
20788 assignment.  If the source code compiled with the @code{compile} command
20789 changed the address of a pointer in the example program, perhaps to a
20790 variable created in the @code{compile} command, that pointer would point
20791 to an invalid location when the command exits.  The following example
20792 would likely cause issues with your debugged program:
20794 @smallexample
20795 compile code int ff = 5; p = &ff;
20796 @end smallexample
20798 In this example, @code{p} would point to @code{ff} when the
20799 @code{compile} command is executing the source code provided to it.
20800 However, as variables in the (example) program persist with their
20801 assigned values, the variable @code{p} would point to an invalid
20802 location when the command exists.  A general rule should be followed
20803 in that you should either assign @code{NULL} to any assigned pointers,
20804 or restore a valid location to the pointer before the command exits.
20806 Similar caution must be exercised with any structs, unions, and typedefs
20807 defined in @code{compile} command.  Types defined in the @code{compile}
20808 command will no longer be available in the next @code{compile} command.
20809 Therefore, if you cast a variable to a type defined in the
20810 @code{compile} command, care must be taken to ensure that any future
20811 need to resolve the type can be achieved.
20813 @smallexample
20814 (gdb) compile code static struct a @{ int a; @} v = @{ 42 @}; argv = &v;
20815 (gdb) compile code printf ("%d\n", ((struct a *) argv)->a);
20816 gdb command line:1:36: error: dereferencing pointer to incomplete type â€˜struct a’
20817 Compilation failed.
20818 (gdb) compile code struct a @{ int a; @}; printf ("%d\n", ((struct a *) argv)->a);
20820 @end smallexample
20822 Variables that have been optimized away by the compiler are not
20823 accessible to the code submitted to the @code{compile} command.
20824 Access to those variables will generate a compiler error which @value{GDBN}
20825 will print to the console.
20826 @end table
20828 @subsection Compiler search for the @code{compile} command
20830 @value{GDBN} needs to find @value{NGCC} for the inferior being debugged
20831 which may not be obvious for remote targets of different architecture
20832 than where @value{GDBN} is running.  Environment variable @env{PATH} on
20833 @value{GDBN} host is searched for @value{NGCC} binary matching the
20834 target architecture and operating system.  This search can be overriden
20835 by @code{set compile-gcc} @value{GDBN} command below.  @env{PATH} is
20836 taken from shell that executed @value{GDBN}, it is not the value set by
20837 @value{GDBN} command @code{set environment}).  @xref{Environment}.
20840 Specifically @env{PATH} is searched for binaries matching regular expression
20841 @code{@var{arch}(-[^-]*)?-@var{os}-gcc} according to the inferior target being
20842 debugged.  @var{arch} is processor name --- multiarch is supported, so for
20843 example both @code{i386} and @code{x86_64} targets look for pattern
20844 @code{(x86_64|i.86)} and both @code{s390} and @code{s390x} targets look
20845 for pattern @code{s390x?}.  @var{os} is currently supported only for
20846 pattern @code{linux(-gnu)?}.
20848 On Posix hosts the compiler driver @value{GDBN} needs to find also
20849 shared library @file{libcc1.so} from the compiler.  It is searched in
20850 default shared library search path (overridable with usual environment
20851 variable @env{LD_LIBRARY_PATH}), unrelated to @env{PATH} or @code{set
20852 compile-gcc} settings.  Contrary to it @file{libcc1plugin.so} is found
20853 according to the installation of the found compiler --- as possibly
20854 specified by the @code{set compile-gcc} command.
20856 @table @code
20857 @item set compile-gcc
20858 @cindex compile command driver filename override
20859 Set compilation command used for compiling and injecting code with the
20860 @code{compile} commands.  If this option is not set (it is set to
20861 an empty string), the search described above will occur --- that is the
20862 default.
20864 @item show compile-gcc
20865 Displays the current compile command @value{NGCC} driver filename.
20866 If set, it is the main command @command{gcc}, found usually for example
20867 under name @file{x86_64-linux-gnu-gcc}.
20868 @end table
20870 @node GDB Files
20871 @chapter @value{GDBN} Files
20873 @value{GDBN} needs to know the file name of the program to be debugged,
20874 both in order to read its symbol table and in order to start your
20875 program.  To debug a core dump of a previous run, you must also tell
20876 @value{GDBN} the name of the core dump file.
20878 @menu
20879 * Files::                       Commands to specify files
20880 * File Caching::                Information about @value{GDBN}'s file caching
20881 * Separate Debug Files::        Debugging information in separate files
20882 * MiniDebugInfo::               Debugging information in a special section
20883 * Index Files::                 Index files speed up GDB
20884 * Symbol Errors::               Errors reading symbol files
20885 * Data Files::                  GDB data files
20886 @end menu
20888 @node Files
20889 @section Commands to Specify Files
20891 @cindex symbol table
20892 @cindex core dump file
20894 You may want to specify executable and core dump file names.  The usual
20895 way to do this is at start-up time, using the arguments to
20896 @value{GDBN}'s start-up commands (@pxref{Invocation, , Getting In and
20897 Out of @value{GDBN}}).
20899 Occasionally it is necessary to change to a different file during a
20900 @value{GDBN} session.  Or you may run @value{GDBN} and forget to
20901 specify a file you want to use.  Or you are debugging a remote target
20902 via @code{gdbserver} (@pxref{Server, file, Using the @code{gdbserver}
20903 Program}).  In these situations the @value{GDBN} commands to specify
20904 new files are useful.
20906 @table @code
20907 @cindex executable file
20908 @kindex file
20909 @item file @var{filename}
20910 Use @var{filename} as the program to be debugged.  It is read for its
20911 symbols and for the contents of pure memory.  It is also the program
20912 executed when you use the @code{run} command.  If you do not specify a
20913 directory and the file is not found in the @value{GDBN} working directory,
20914 @value{GDBN} uses the environment variable @env{PATH} as a list of
20915 directories to search, just as the shell does when looking for a program
20916 to run.  You can change the value of this variable, for both @value{GDBN}
20917 and your program, using the @code{path} command.
20919 @cindex unlinked object files
20920 @cindex patching object files
20921 You can load unlinked object @file{.o} files into @value{GDBN} using
20922 the @code{file} command.  You will not be able to ``run'' an object
20923 file, but you can disassemble functions and inspect variables.  Also,
20924 if the underlying BFD functionality supports it, you could use
20925 @kbd{gdb -write} to patch object files using this technique.  Note
20926 that @value{GDBN} can neither interpret nor modify relocations in this
20927 case, so branches and some initialized variables will appear to go to
20928 the wrong place.  But this feature is still handy from time to time.
20930 @item file
20931 @code{file} with no argument makes @value{GDBN} discard any information it
20932 has on both executable file and the symbol table.
20934 @kindex exec-file
20935 @item exec-file @r{[} @var{filename} @r{]}
20936 Specify that the program to be run (but not the symbol table) is found
20937 in @var{filename}.  @value{GDBN} searches the environment variable @env{PATH}
20938 if necessary to locate your program.  Omitting @var{filename} means to
20939 discard information on the executable file.
20941 @kindex symbol-file
20942 @item symbol-file @r{[} @var{filename} @r{[} -o @var{offset} @r{]]}
20943 Read symbol table information from file @var{filename}.  @env{PATH} is
20944 searched when necessary.  Use the @code{file} command to get both symbol
20945 table and program to run from the same file.
20947 If an optional @var{offset} is specified, it is added to the start
20948 address of each section in the symbol file.  This is useful if the
20949 program is relocated at runtime, such as the Linux kernel with kASLR
20950 enabled.
20952 @code{symbol-file} with no argument clears out @value{GDBN} information on your
20953 program's symbol table.
20955 The @code{symbol-file} command causes @value{GDBN} to forget the contents of
20956 some breakpoints and auto-display expressions.  This is because they may
20957 contain pointers to the internal data recording symbols and data types,
20958 which are part of the old symbol table data being discarded inside
20959 @value{GDBN}.
20961 @code{symbol-file} does not repeat if you press @key{RET} again after
20962 executing it once.
20964 When @value{GDBN} is configured for a particular environment, it
20965 understands debugging information in whatever format is the standard
20966 generated for that environment; you may use either a @sc{gnu} compiler, or
20967 other compilers that adhere to the local conventions.
20968 Best results are usually obtained from @sc{gnu} compilers; for example,
20969 using @code{@value{NGCC}} you can generate debugging information for
20970 optimized code.
20972 For most kinds of object files, with the exception of old SVR3 systems
20973 using COFF, the @code{symbol-file} command does not normally read the
20974 symbol table in full right away.  Instead, it scans the symbol table
20975 quickly to find which source files and which symbols are present.  The
20976 details are read later, one source file at a time, as they are needed.
20978 The purpose of this two-stage reading strategy is to make @value{GDBN}
20979 start up faster.  For the most part, it is invisible except for
20980 occasional pauses while the symbol table details for a particular source
20981 file are being read.  (The @code{set verbose} command can turn these
20982 pauses into messages if desired.  @xref{Messages/Warnings, ,Optional
20983 Warnings and Messages}.)
20985 We have not implemented the two-stage strategy for COFF yet.  When the
20986 symbol table is stored in COFF format, @code{symbol-file} reads the
20987 symbol table data in full right away.  Note that ``stabs-in-COFF''
20988 still does the two-stage strategy, since the debug info is actually
20989 in stabs format.
20991 @kindex readnow
20992 @cindex reading symbols immediately
20993 @cindex symbols, reading immediately
20994 @item symbol-file @r{[} -readnow @r{]} @var{filename}
20995 @itemx file @r{[} -readnow @r{]} @var{filename}
20996 You can override the @value{GDBN} two-stage strategy for reading symbol
20997 tables by using the @samp{-readnow} option with any of the commands that
20998 load symbol table information, if you want to be sure @value{GDBN} has the
20999 entire symbol table available.
21001 @cindex @code{-readnever}, option for symbol-file command
21002 @cindex never read symbols
21003 @cindex symbols, never read
21004 @item symbol-file @r{[} -readnever @r{]} @var{filename}
21005 @itemx file @r{[} -readnever @r{]} @var{filename}
21006 You can instruct @value{GDBN} to never read the symbolic information
21007 contained in @var{filename} by using the @samp{-readnever} option.
21008 @xref{--readnever}.
21010 @c FIXME: for now no mention of directories, since this seems to be in
21011 @c flux.  13mar1992 status is that in theory GDB would look either in
21012 @c current dir or in same dir as myprog; but issues like competing
21013 @c GDB's, or clutter in system dirs, mean that in practice right now
21014 @c only current dir is used.  FFish says maybe a special GDB hierarchy
21015 @c (eg rooted in val of env var GDBSYMS) could exist for mappable symbol
21016 @c files.
21018 @kindex core-file
21019 @item core-file @r{[}@var{filename}@r{]}
21020 @itemx core
21021 Specify the whereabouts of a core dump file to be used as the ``contents
21022 of memory''.  Traditionally, core files contain only some parts of the
21023 address space of the process that generated them; @value{GDBN} can access the
21024 executable file itself for other parts.
21026 @code{core-file} with no argument specifies that no core file is
21027 to be used.
21029 Note that the core file is ignored when your program is actually running
21030 under @value{GDBN}.  So, if you have been running your program and you
21031 wish to debug a core file instead, you must kill the subprocess in which
21032 the program is running.  To do this, use the @code{kill} command
21033 (@pxref{Kill Process, ,Killing the Child Process}).
21035 @kindex add-symbol-file
21036 @cindex dynamic linking
21037 @item add-symbol-file @var{filename} @r{[} -readnow @r{|} -readnever @r{]} @r{[} -o @var{offset} @r{]} @r{[} @var{textaddress} @r{]} @r{[} -s @var{section} @var{address} @dots{} @r{]}
21038 The @code{add-symbol-file} command reads additional symbol table
21039 information from the file @var{filename}.  You would use this command
21040 when @var{filename} has been dynamically loaded (by some other means)
21041 into the program that is running.  The @var{textaddress} parameter gives
21042 the memory address at which the file's text section has been loaded.
21043 You can additionally specify the base address of other sections using
21044 an arbitrary number of @samp{-s @var{section} @var{address}} pairs.
21045 If a section is omitted, @value{GDBN} will use its default addresses
21046 as found in @var{filename}.  Any @var{address} or @var{textaddress}
21047 can be given as an expression.
21049 If an optional @var{offset} is specified, it is added to the start
21050 address of each section, except those for which the address was
21051 specified explicitly.
21053 The symbol table of the file @var{filename} is added to the symbol table
21054 originally read with the @code{symbol-file} command.  You can use the
21055 @code{add-symbol-file} command any number of times; the new symbol data
21056 thus read is kept in addition to the old.
21058 Changes can be reverted using the command @code{remove-symbol-file}.
21060 @cindex relocatable object files, reading symbols from
21061 @cindex object files, relocatable, reading symbols from
21062 @cindex reading symbols from relocatable object files
21063 @cindex symbols, reading from relocatable object files
21064 @cindex @file{.o} files, reading symbols from
21065 Although @var{filename} is typically a shared library file, an
21066 executable file, or some other object file which has been fully
21067 relocated for loading into a process, you can also load symbolic
21068 information from relocatable @file{.o} files, as long as:
21070 @itemize @bullet
21071 @item
21072 the file's symbolic information refers only to linker symbols defined in
21073 that file, not to symbols defined by other object files,
21074 @item
21075 every section the file's symbolic information refers to has actually
21076 been loaded into the inferior, as it appears in the file, and
21077 @item
21078 you can determine the address at which every section was loaded, and
21079 provide these to the @code{add-symbol-file} command.
21080 @end itemize
21082 @noindent
21083 Some embedded operating systems, like Sun Chorus and VxWorks, can load
21084 relocatable files into an already running program; such systems
21085 typically make the requirements above easy to meet.  However, it's
21086 important to recognize that many native systems use complex link
21087 procedures (@code{.linkonce} section factoring and C@t{++} constructor table
21088 assembly, for example) that make the requirements difficult to meet.  In
21089 general, one cannot assume that using @code{add-symbol-file} to read a
21090 relocatable object file's symbolic information will have the same effect
21091 as linking the relocatable object file into the program in the normal
21092 way.
21094 @code{add-symbol-file} does not repeat if you press @key{RET} after using it.
21096 @kindex remove-symbol-file
21097 @item remove-symbol-file @var{filename}
21098 @item remove-symbol-file -a @var{address}
21099 Remove a symbol file added via the @code{add-symbol-file} command.  The
21100 file to remove can be identified by its @var{filename} or by an @var{address}
21101 that lies within the boundaries of this symbol file in memory.  Example:
21103 @smallexample
21104 (gdb) add-symbol-file /home/user/gdb/mylib.so 0x7ffff7ff9480
21105 add symbol table from file "/home/user/gdb/mylib.so" at
21106     .text_addr = 0x7ffff7ff9480
21107 (y or n) y
21108 Reading symbols from /home/user/gdb/mylib.so...
21109 (gdb) remove-symbol-file -a 0x7ffff7ff9480
21110 Remove symbol table from file "/home/user/gdb/mylib.so"? (y or n) y
21111 (gdb)
21112 @end smallexample
21115 @code{remove-symbol-file} does not repeat if you press @key{RET} after using it.
21117 @kindex add-symbol-file-from-memory
21118 @cindex @code{syscall DSO}
21119 @cindex load symbols from memory
21120 @item add-symbol-file-from-memory @var{address}
21121 Load symbols from the given @var{address} in a dynamically loaded
21122 object file whose image is mapped directly into the inferior's memory.
21123 For example, the Linux kernel maps a @code{syscall DSO} into each
21124 process's address space; this DSO provides kernel-specific code for
21125 some system calls.  The argument can be any expression whose
21126 evaluation yields the address of the file's shared object file header.
21127 For this command to work, you must have used @code{symbol-file} or
21128 @code{exec-file} commands in advance.
21130 @kindex section
21131 @item section @var{section} @var{addr}
21132 The @code{section} command changes the base address of the named
21133 @var{section} of the exec file to @var{addr}.  This can be used if the
21134 exec file does not contain section addresses, (such as in the
21135 @code{a.out} format), or when the addresses specified in the file
21136 itself are wrong.  Each section must be changed separately.  The
21137 @code{info files} command, described below, lists all the sections and
21138 their addresses.
21140 @kindex info files
21141 @kindex info target
21142 @item info files
21143 @itemx info target
21144 @code{info files} and @code{info target} are synonymous; both print the
21145 current target (@pxref{Targets, ,Specifying a Debugging Target}),
21146 including the names of the executable and core dump files currently in
21147 use by @value{GDBN}, and the files from which symbols were loaded.  The
21148 command @code{help target} lists all possible targets rather than
21149 current ones.
21151 @kindex maint info sections
21152 @item maint info sections @r{[}-all-objects@r{]} @r{[}@var{filter-list}@r{]}
21153 Another command that can give you extra information about program sections
21154 is @code{maint info sections}.  In addition to the section information
21155 displayed by @code{info files}, this command displays the flags and file
21156 offset of each section in the executable and core dump files.
21158 When @samp{-all-objects} is passed then sections from all loaded object
21159 files, including shared libraries, are printed.
21161 The optional @var{filter-list} is a space separated list of filter
21162 keywords.  Sections that match any one of the filter criteria will be
21163 printed.  There are two types of filter:
21165 @table @code
21166 @item @var{section-name}
21167 Display information about any section named @var{section-name}.
21168 @item @var{section-flag}
21169 Display information for any section with @var{section-flag}.  The
21170 section flags that @value{GDBN} currently knows about are:
21171 @table @code
21172 @item ALLOC
21173 Section will have space allocated in the process when loaded.
21174 Set for all sections except those containing debug information.
21175 @item LOAD
21176 Section will be loaded from the file into the child process memory.
21177 Set for pre-initialized code and data, clear for @code{.bss} sections.
21178 @item RELOC
21179 Section needs to be relocated before loading.
21180 @item READONLY
21181 Section cannot be modified by the child process.
21182 @item CODE
21183 Section contains executable code only.
21184 @item DATA
21185 Section contains data only (no executable code).
21186 @item ROM
21187 Section will reside in ROM.
21188 @item CONSTRUCTOR
21189 Section contains data for constructor/destructor lists.
21190 @item HAS_CONTENTS
21191 Section is not empty.
21192 @item NEVER_LOAD
21193 An instruction to the linker to not output the section.
21194 @item COFF_SHARED_LIBRARY
21195 A notification to the linker that the section contains
21196 COFF shared library information.
21197 @item IS_COMMON
21198 Section contains common symbols.
21199 @end table
21200 @end table
21202 @kindex maint info target-sections
21203 @item maint info target-sections
21204 This command prints @value{GDBN}'s internal section table.  For each
21205 target @value{GDBN} maintains a table containing the allocatable
21206 sections from all currently mapped objects, along with information
21207 about where the section is mapped.
21209 @kindex set trust-readonly-sections
21210 @cindex read-only sections
21211 @item set trust-readonly-sections on
21212 Tell @value{GDBN} that readonly sections in your object file
21213 really are read-only (i.e.@: that their contents will not change).
21214 In that case, @value{GDBN} can fetch values from these sections
21215 out of the object file, rather than from the target program.
21216 For some targets (notably embedded ones), this can be a significant
21217 enhancement to debugging performance.
21219 The default is off.
21221 @item set trust-readonly-sections off
21222 Tell @value{GDBN} not to trust readonly sections.  This means that
21223 the contents of the section might change while the program is running,
21224 and must therefore be fetched from the target when needed.
21226 @item show trust-readonly-sections
21227 Show the current setting of trusting readonly sections.
21228 @end table
21230 All file-specifying commands allow both absolute and relative file names
21231 as arguments.  @value{GDBN} always converts the file name to an absolute file
21232 name and remembers it that way.
21234 @cindex shared libraries
21235 @anchor{Shared Libraries}
21236 @value{GDBN} supports @sc{gnu}/Linux, MS-Windows, SunOS,
21237 Darwin/Mach-O, SVr4, IBM RS/6000 AIX, QNX Neutrino, FDPIC (FR-V), and
21238 DSBT (TIC6X) shared libraries.
21240 On MS-Windows @value{GDBN} must be linked with the Expat library to support
21241 shared libraries.  @xref{Expat}.
21243 @value{GDBN} automatically loads symbol definitions from shared libraries
21244 when you use the @code{run} command, or when you examine a core file.
21245 (Before you issue the @code{run} command, @value{GDBN} does not understand
21246 references to a function in a shared library, however---unless you are
21247 debugging a core file).
21249 @c FIXME: some @value{GDBN} release may permit some refs to undef
21250 @c FIXME...symbols---eg in a break cmd---assuming they are from a shared
21251 @c FIXME...lib; check this from time to time when updating manual
21253 There are times, however, when you may wish to not automatically load
21254 symbol definitions from shared libraries, such as when they are
21255 particularly large or there are many of them.
21257 To control the automatic loading of shared library symbols, use the
21258 commands:
21260 @table @code
21261 @kindex set auto-solib-add
21262 @item set auto-solib-add @var{mode}
21263 If @var{mode} is @code{on}, symbols from all shared object libraries
21264 will be loaded automatically when the inferior begins execution, you
21265 attach to an independently started inferior, or when the dynamic linker
21266 informs @value{GDBN} that a new library has been loaded.  If @var{mode}
21267 is @code{off}, symbols must be loaded manually, using the
21268 @code{sharedlibrary} command.  The default value is @code{on}.
21270 @cindex memory used for symbol tables
21271 If your program uses lots of shared libraries with debug info that
21272 takes large amounts of memory, you can decrease the @value{GDBN}
21273 memory footprint by preventing it from automatically loading the
21274 symbols from shared libraries.  To that end, type @kbd{set
21275 auto-solib-add off} before running the inferior, then load each
21276 library whose debug symbols you do need with @kbd{sharedlibrary
21277 @var{regexp}}, where @var{regexp} is a regular expression that matches
21278 the libraries whose symbols you want to be loaded.
21280 @kindex show auto-solib-add
21281 @item show auto-solib-add
21282 Display the current autoloading mode.
21283 @end table
21285 @cindex load shared library
21286 To explicitly load shared library symbols, use the @code{sharedlibrary}
21287 command:
21289 @table @code
21290 @kindex info sharedlibrary
21291 @kindex info share
21292 @item info share @var{regex}
21293 @itemx info sharedlibrary @var{regex}
21294 Print the names of the shared libraries which are currently loaded
21295 that match @var{regex}.  If @var{regex} is omitted then print
21296 all shared libraries that are loaded.
21298 @kindex info dll
21299 @item info dll @var{regex}
21300 This is an alias of @code{info sharedlibrary}.
21302 @kindex sharedlibrary
21303 @kindex share
21304 @item sharedlibrary @var{regex}
21305 @itemx share @var{regex}
21306 Load shared object library symbols for files matching a
21307 Unix regular expression.
21308 As with files loaded automatically, it only loads shared libraries
21309 required by your program for a core file or after typing @code{run}.  If
21310 @var{regex} is omitted all shared libraries required by your program are
21311 loaded.
21313 @item nosharedlibrary
21314 @kindex nosharedlibrary
21315 @cindex unload symbols from shared libraries
21316 Unload all shared object library symbols.  This discards all symbols
21317 that have been loaded from all shared libraries.  Symbols from shared
21318 libraries that were loaded by explicit user requests are not
21319 discarded.
21320 @end table
21322 Sometimes you may wish that @value{GDBN} stops and gives you control
21323 when any of shared library events happen.  The best way to do this is
21324 to use @code{catch load} and @code{catch unload} (@pxref{Set
21325 Catchpoints}).
21327 @value{GDBN} also supports the @code{set stop-on-solib-events}
21328 command for this.  This command exists for historical reasons.  It is
21329 less useful than setting a catchpoint, because it does not allow for
21330 conditions or commands as a catchpoint does.
21332 @table @code
21333 @item set stop-on-solib-events
21334 @kindex set stop-on-solib-events
21335 This command controls whether @value{GDBN} should give you control
21336 when the dynamic linker notifies it about some shared library event.
21337 The most common event of interest is loading or unloading of a new
21338 shared library.
21340 @item show stop-on-solib-events
21341 @kindex show stop-on-solib-events
21342 Show whether @value{GDBN} stops and gives you control when shared
21343 library events happen.
21344 @end table
21346 Shared libraries are also supported in many cross or remote debugging
21347 configurations.  @value{GDBN} needs to have access to the target's libraries;
21348 this can be accomplished either by providing copies of the libraries
21349 on the host system, or by asking @value{GDBN} to automatically retrieve the
21350 libraries from the target.  If copies of the target libraries are
21351 provided, they need to be the same as the target libraries, although the
21352 copies on the target can be stripped as long as the copies on the host are
21353 not.
21355 @cindex where to look for shared libraries
21356 For remote debugging, you need to tell @value{GDBN} where the target
21357 libraries are, so that it can load the correct copies---otherwise, it
21358 may try to load the host's libraries.  @value{GDBN} has two variables
21359 to specify the search directories for target libraries.
21361 @table @code
21362 @cindex prefix for executable and shared library file names
21363 @cindex system root, alternate
21364 @kindex set solib-absolute-prefix
21365 @kindex set sysroot
21366 @item set sysroot @var{path}
21367 Use @var{path} as the system root for the program being debugged.  Any
21368 absolute shared library paths will be prefixed with @var{path}; many
21369 runtime loaders store the absolute paths to the shared library in the
21370 target program's memory.  When starting processes remotely, and when
21371 attaching to already-running processes (local or remote), their
21372 executable filenames will be prefixed with @var{path} if reported to
21373 @value{GDBN} as absolute by the operating system.  If you use
21374 @code{set sysroot} to find executables and shared libraries, they need
21375 to be laid out in the same way that they are on the target, with
21376 e.g.@: a @file{/bin}, @file{/lib} and @file{/usr/lib} hierarchy under
21377 @var{path}.
21379 If @var{path} starts with the sequence @file{target:} and the target
21380 system is remote then @value{GDBN} will retrieve the target binaries
21381 from the remote system.  This is only supported when using a remote
21382 target that supports the @code{remote get} command (@pxref{File
21383 Transfer,,Sending files to a remote system}).  The part of @var{path}
21384 following the initial @file{target:} (if present) is used as system
21385 root prefix on the remote file system.  If @var{path} starts with the
21386 sequence @file{remote:} this is converted to the sequence
21387 @file{target:} by @code{set sysroot}@footnote{Historically the
21388 functionality to retrieve binaries from the remote system was
21389 provided by prefixing @var{path} with @file{remote:}}.  If you want
21390 to specify a local system root using a directory that happens to be
21391 named @file{target:} or @file{remote:}, you need to use some
21392 equivalent variant of the name like @file{./target:}.
21394 For targets with an MS-DOS based filesystem, such as MS-Windows,
21395 @value{GDBN} tries prefixing a few variants of the target
21396 absolute file name with @var{path}.  But first, on Unix hosts,
21397 @value{GDBN} converts all backslash directory separators into forward
21398 slashes, because the backslash is not a directory separator on Unix:
21400 @smallexample
21401   c:\foo\bar.dll @result{} c:/foo/bar.dll
21402 @end smallexample
21404 Then, @value{GDBN} attempts prefixing the target file name with
21405 @var{path}, and looks for the resulting file name in the host file
21406 system:
21408 @smallexample
21409   c:/foo/bar.dll @result{} /path/to/sysroot/c:/foo/bar.dll
21410 @end smallexample
21412 If that does not find the binary, @value{GDBN} tries removing
21413 the @samp{:} character from the drive spec, both for convenience, and,
21414 for the case of the host file system not supporting file names with
21415 colons:
21417 @smallexample
21418   c:/foo/bar.dll @result{} /path/to/sysroot/c/foo/bar.dll
21419 @end smallexample
21421 This makes it possible to have a system root that mirrors a target
21422 with more than one drive.  E.g., you may want to setup your local
21423 copies of the target system shared libraries like so (note @samp{c} vs
21424 @samp{z}):
21426 @smallexample
21427  @file{/path/to/sysroot/c/sys/bin/foo.dll}
21428  @file{/path/to/sysroot/c/sys/bin/bar.dll}
21429  @file{/path/to/sysroot/z/sys/bin/bar.dll}
21430 @end smallexample
21432 @noindent
21433 and point the system root at @file{/path/to/sysroot}, so that
21434 @value{GDBN} can find the correct copies of both
21435 @file{c:\sys\bin\foo.dll}, and @file{z:\sys\bin\bar.dll}.
21437 If that still does not find the binary, @value{GDBN} tries
21438 removing the whole drive spec from the target file name:
21440 @smallexample
21441   c:/foo/bar.dll @result{} /path/to/sysroot/foo/bar.dll
21442 @end smallexample
21444 This last lookup makes it possible to not care about the drive name,
21445 if you don't want or need to.
21447 The @code{set solib-absolute-prefix} command is an alias for @code{set
21448 sysroot}.
21450 @cindex default system root
21451 @cindex @samp{--with-sysroot}
21452 You can set the default system root by using the configure-time
21453 @samp{--with-sysroot} option.  If the system root is inside
21454 @value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
21455 @samp{--exec-prefix}), then the default system root will be updated
21456 automatically if the installed @value{GDBN} is moved to a new
21457 location.
21459 @kindex show sysroot
21460 @item show sysroot
21461 Display the current executable and shared library prefix.
21463 @kindex set solib-search-path
21464 @item set solib-search-path @var{path}
21465 If this variable is set, @var{path} is a colon-separated list of
21466 directories to search for shared libraries.  @samp{solib-search-path}
21467 is used after @samp{sysroot} fails to locate the library, or if the
21468 path to the library is relative instead of absolute.  If you want to
21469 use @samp{solib-search-path} instead of @samp{sysroot}, be sure to set
21470 @samp{sysroot} to a nonexistent directory to prevent @value{GDBN} from
21471 finding your host's libraries.  @samp{sysroot} is preferred; setting
21472 it to a nonexistent directory may interfere with automatic loading
21473 of shared library symbols.
21475 @kindex show solib-search-path
21476 @item show solib-search-path
21477 Display the current shared library search path.
21479 @cindex DOS file-name semantics of file names.
21480 @kindex set target-file-system-kind (unix|dos-based|auto)
21481 @kindex show target-file-system-kind
21482 @item set target-file-system-kind @var{kind}
21483 Set assumed file system kind for target reported file names.
21485 Shared library file names as reported by the target system may not
21486 make sense as is on the system @value{GDBN} is running on.  For
21487 example, when remote debugging a target that has MS-DOS based file
21488 system semantics, from a Unix host, the target may be reporting to
21489 @value{GDBN} a list of loaded shared libraries with file names such as
21490 @file{c:\Windows\kernel32.dll}.  On Unix hosts, there's no concept of
21491 drive letters, so the @samp{c:\} prefix is not normally understood as
21492 indicating an absolute file name, and neither is the backslash
21493 normally considered a directory separator character.  In that case,
21494 the native file system would interpret this whole absolute file name
21495 as a relative file name with no directory components.  This would make
21496 it impossible to point @value{GDBN} at a copy of the remote target's
21497 shared libraries on the host using @code{set sysroot}, and impractical
21498 with @code{set solib-search-path}.  Setting
21499 @code{target-file-system-kind} to @code{dos-based} tells @value{GDBN}
21500 to interpret such file names similarly to how the target would, and to
21501 map them to file names valid on @value{GDBN}'s native file system
21502 semantics.  The value of @var{kind} can be @code{"auto"}, in addition
21503 to one of the supported file system kinds.  In that case, @value{GDBN}
21504 tries to determine the appropriate file system variant based on the
21505 current target's operating system (@pxref{ABI, ,Configuring the
21506 Current ABI}).  The supported file system settings are:
21508 @table @code
21509 @item unix
21510 Instruct @value{GDBN} to assume the target file system is of Unix
21511 kind.  Only file names starting the forward slash (@samp{/}) character
21512 are considered absolute, and the directory separator character is also
21513 the forward slash.
21515 @item dos-based
21516 Instruct @value{GDBN} to assume the target file system is DOS based.
21517 File names starting with either a forward slash, or a drive letter
21518 followed by a colon (e.g., @samp{c:}), are considered absolute, and
21519 both the slash (@samp{/}) and the backslash (@samp{\\}) characters are
21520 considered directory separators.
21522 @item auto
21523 Instruct @value{GDBN} to use the file system kind associated with the
21524 target operating system (@pxref{ABI, ,Configuring the Current ABI}).
21525 This is the default.
21526 @end table
21527 @end table
21529 @cindex file name canonicalization
21530 @cindex base name differences
21531 When processing file names provided by the user, @value{GDBN}
21532 frequently needs to compare them to the file names recorded in the
21533 program's debug info.  Normally, @value{GDBN} compares just the
21534 @dfn{base names} of the files as strings, which is reasonably fast
21535 even for very large programs.  (The base name of a file is the last
21536 portion of its name, after stripping all the leading directories.)
21537 This shortcut in comparison is based upon the assumption that files
21538 cannot have more than one base name.  This is usually true, but
21539 references to files that use symlinks or similar filesystem
21540 facilities violate that assumption.  If your program records files
21541 using such facilities, or if you provide file names to @value{GDBN}
21542 using symlinks etc., you can set @code{basenames-may-differ} to
21543 @code{true} to instruct @value{GDBN} to completely canonicalize each
21544 pair of file names it needs to compare.  This will make file-name
21545 comparisons accurate, but at a price of a significant slowdown.
21547 @table @code
21548 @item set basenames-may-differ
21549 @kindex set basenames-may-differ
21550 Set whether a source file may have multiple base names.
21552 @item show basenames-may-differ
21553 @kindex show basenames-may-differ
21554 Show whether a source file may have multiple base names.
21555 @end table
21557 @node File Caching
21558 @section File Caching
21559 @cindex caching of opened files
21560 @cindex caching of bfd objects
21562 To speed up file loading, and reduce memory usage, @value{GDBN} will
21563 reuse the @code{bfd} objects used to track open files.  @xref{Top, ,
21564 BFD, bfd, The Binary File Descriptor Library}.  The following commands
21565 allow visibility and control of the caching behavior.
21567 @table @code
21568 @kindex maint info bfds
21569 @item maint info bfds
21570 This prints information about each @code{bfd} object that is known to
21571 @value{GDBN}.
21573 @kindex maint set bfd-sharing
21574 @kindex maint show bfd-sharing
21575 @kindex bfd caching
21576 @item maint set bfd-sharing
21577 @item maint show bfd-sharing
21578 Control whether @code{bfd} objects can be shared.  When sharing is
21579 enabled @value{GDBN} reuses already open @code{bfd} objects rather
21580 than reopening the same file.  Turning sharing off does not cause
21581 already shared @code{bfd} objects to be unshared, but all future files
21582 that are opened will create a new @code{bfd} object.  Similarly,
21583 re-enabling sharing does not cause multiple existing @code{bfd}
21584 objects to be collapsed into a single shared @code{bfd} object.
21586 @kindex set debug bfd-cache @var{level}
21587 @kindex bfd caching
21588 @item set debug bfd-cache @var{level}
21589 Turns on debugging of the bfd cache, setting the level to @var{level}.
21591 @kindex show debug bfd-cache
21592 @kindex bfd caching
21593 @item show debug bfd-cache
21594 Show the current debugging level of the bfd cache.
21595 @end table
21597 @node Separate Debug Files
21598 @section Debugging Information in Separate Files
21599 @cindex separate debugging information files
21600 @cindex debugging information in separate files
21601 @cindex @file{.debug} subdirectories
21602 @cindex debugging information directory, global
21603 @cindex global debugging information directories
21604 @cindex build ID, and separate debugging files
21605 @cindex @file{.build-id} directory
21607 @value{GDBN} allows you to put a program's debugging information in a
21608 file separate from the executable itself, in a way that allows
21609 @value{GDBN} to find and load the debugging information automatically.
21610 Since debugging information can be very large---sometimes larger
21611 than the executable code itself---some systems distribute debugging
21612 information for their executables in separate files, which users can
21613 install only when they need to debug a problem.
21615 @value{GDBN} supports two ways of specifying the separate debug info
21616 file:
21618 @itemize @bullet
21619 @item
21620 The executable contains a @dfn{debug link} that specifies the name of
21621 the separate debug info file.  The separate debug file's name is
21622 usually @file{@var{executable}.debug}, where @var{executable} is the
21623 name of the corresponding executable file without leading directories
21624 (e.g., @file{ls.debug} for @file{/usr/bin/ls}).  In addition, the
21625 debug link specifies a 32-bit @dfn{Cyclic Redundancy Check} (CRC)
21626 checksum for the debug file, which @value{GDBN} uses to validate that
21627 the executable and the debug file came from the same build.
21629 @item
21630 @anchor{build ID}
21631 The executable contains a @dfn{build ID}, a unique bit string that is
21632 also present in the corresponding debug info file.  (This is supported
21633 only on some operating systems, when using the ELF or PE file formats
21634 for binary files and the @sc{gnu} Binutils.)  For more details about
21635 this feature, see the description of the @option{--build-id}
21636 command-line option in @ref{Options, , Command Line Options, ld,
21637 The GNU Linker}.  The debug info file's name is not specified
21638 explicitly by the build ID, but can be computed from the build ID, see
21639 below.
21640 @end itemize
21642 Depending on the way the debug info file is specified, @value{GDBN}
21643 uses two different methods of looking for the debug file:
21645 @itemize @bullet
21646 @item
21647 For the ``debug link'' method, @value{GDBN} looks up the named file in
21648 the directory of the executable file, then in a subdirectory of that
21649 directory named @file{.debug}, and finally under each one of the
21650 global debug directories, in a subdirectory whose name is identical to
21651 the leading directories of the executable's absolute file name.  (On
21652 MS-Windows/MS-DOS, the drive letter of the executable's leading
21653 directories is converted to a one-letter subdirectory, i.e.@:
21654 @file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
21655 filesystems disallow colons in file names.)
21657 @item
21658 For the ``build ID'' method, @value{GDBN} looks in the
21659 @file{.build-id} subdirectory of each one of the global debug directories for
21660 a file named @file{@var{nn}/@var{nnnnnnnn}.debug}, where @var{nn} are the
21661 first 2 hex characters of the build ID bit string, and @var{nnnnnnnn}
21662 are the rest of the bit string.  (Real build ID strings are 32 or more
21663 hex characters, not 10.)  @value{GDBN} can automatically query
21664 @code{debuginfod} servers using build IDs in order to download separate debug
21665 files that cannot be found locally.  For more information see @ref{Debuginfod}.
21666 @end itemize
21668 So, for example, suppose you ask @value{GDBN} to debug
21669 @file{/usr/bin/ls}, which has a debug link that specifies the
21670 file @file{ls.debug}, and a build ID whose value in hex is
21671 @code{abcdef1234}.  If the list of the global debug directories includes
21672 @file{/usr/lib/debug}, then @value{GDBN} will look for the following
21673 debug information files, in the indicated order:
21675 @itemize @minus
21676 @item
21677 @file{/usr/lib/debug/.build-id/ab/cdef1234.debug}
21678 @item
21679 @file{/usr/bin/ls.debug}
21680 @item
21681 @file{/usr/bin/.debug/ls.debug}
21682 @item
21683 @file{/usr/lib/debug/usr/bin/ls.debug}.
21684 @end itemize
21686 If the debug file still has not been found and @code{debuginfod}
21687 (@pxref{Debuginfod}) is enabled, @value{GDBN} will attempt to download the
21688 file from @code{debuginfod} servers.
21690 @anchor{debug-file-directory}
21691 Global debugging info directories default to what is set by @value{GDBN}
21692 configure option @option{--with-separate-debug-dir}.  During @value{GDBN} run
21693 you can also set the global debugging info directories, and view the list
21694 @value{GDBN} is currently using.
21696 @table @code
21698 @kindex set debug-file-directory
21699 @item set debug-file-directory @var{directories}
21700 Set the directories which @value{GDBN} searches for separate debugging
21701 information files to @var{directory}.  Multiple path components can be set
21702 concatenating them by a path separator.
21704 @kindex show debug-file-directory
21705 @item show debug-file-directory
21706 Show the directories @value{GDBN} searches for separate debugging
21707 information files.
21709 @end table
21711 @cindex @code{.gnu_debuglink} sections
21712 @cindex debug link sections
21713 A debug link is a special section of the executable file named
21714 @code{.gnu_debuglink}.  The section must contain:
21716 @itemize
21717 @item
21718 A filename, with any leading directory components removed, followed by
21719 a zero byte,
21720 @item
21721 zero to three bytes of padding, as needed to reach the next four-byte
21722 boundary within the section, and
21723 @item
21724 a four-byte CRC checksum, stored in the same endianness used for the
21725 executable file itself.  The checksum is computed on the debugging
21726 information file's full contents by the function given below, passing
21727 zero as the @var{crc} argument.
21728 @end itemize
21730 Any executable file format can carry a debug link, as long as it can
21731 contain a section named @code{.gnu_debuglink} with the contents
21732 described above.
21734 @cindex @code{.note.gnu.build-id} sections
21735 @cindex build ID sections
21736 The build ID is a special section in the executable file (and in other
21737 ELF binary files that @value{GDBN} may consider).  This section is
21738 often named @code{.note.gnu.build-id}, but that name is not mandatory.
21739 It contains unique identification for the built files---the ID remains
21740 the same across multiple builds of the same build tree.  The default
21741 algorithm SHA1 produces 160 bits (40 hexadecimal characters) of the
21742 content for the build ID string.  The same section with an identical
21743 value is present in the original built binary with symbols, in its
21744 stripped variant, and in the separate debugging information file.
21746 The debugging information file itself should be an ordinary
21747 executable, containing a full set of linker symbols, sections, and
21748 debugging information.  The sections of the debugging information file
21749 should have the same names, addresses, and sizes as the original file,
21750 but they need not contain any data---much like a @code{.bss} section
21751 in an ordinary executable.
21753 The @sc{gnu} binary utilities (Binutils) package includes the
21754 @samp{objcopy} utility that can produce
21755 the separated executable / debugging information file pairs using the
21756 following commands:
21758 @smallexample
21759 @kbd{objcopy --only-keep-debug foo foo.debug}
21760 @kbd{strip -g foo}
21761 @end smallexample
21763 @noindent
21764 These commands remove the debugging
21765 information from the executable file @file{foo} and place it in the file
21766 @file{foo.debug}.  You can use the first, second or both methods to link the
21767 two files:
21769 @itemize @bullet
21770 @item
21771 The debug link method needs the following additional command to also leave
21772 behind a debug link in @file{foo}:
21774 @smallexample
21775 @kbd{objcopy --add-gnu-debuglink=foo.debug foo}
21776 @end smallexample
21778 Ulrich Drepper's @file{elfutils} package, starting with version 0.53, contains
21779 a version of the @code{strip} command such that the command @kbd{strip foo -f
21780 foo.debug} has the same functionality as the two @code{objcopy} commands and
21781 the @code{ln -s} command above, together.
21783 @item
21784 Build ID gets embedded into the main executable using @code{ld --build-id} or
21785 the @value{NGCC} counterpart @code{gcc -Wl,--build-id}.  Build ID support plus
21786 compatibility fixes for debug files separation are present in @sc{gnu} binary
21787 utilities (Binutils) package since version 2.18.
21788 @end itemize
21790 @noindent
21792 @cindex CRC algorithm definition
21793 The CRC used in @code{.gnu_debuglink} is the CRC-32 defined in
21794 IEEE 802.3 using the polynomial:
21796 @c TexInfo requires naked braces for multi-digit exponents for Tex
21797 @c output, but this causes HTML output to barf. HTML has to be set using
21798 @c raw commands. So we end up having to specify this equation in 2
21799 @c different ways!
21800 @ifhtml
21801 @display
21802 @html
21803  <em>x</em><sup>32</sup> + <em>x</em><sup>26</sup> + <em>x</em><sup>23</sup> + <em>x</em><sup>22</sup> + <em>x</em><sup>16</sup> + <em>x</em><sup>12</sup> + <em>x</em><sup>11</sup>
21804  + <em>x</em><sup>10</sup> + <em>x</em><sup>8</sup> + <em>x</em><sup>7</sup> + <em>x</em><sup>5</sup> + <em>x</em><sup>4</sup> + <em>x</em><sup>2</sup> + <em>x</em> + 1
21805 @end html
21806 @end display
21807 @end ifhtml
21808 @ifnothtml
21809 @display
21810  @math{x^{32} + x^{26} + x^{23} + x^{22} + x^{16} + x^{12} + x^{11}}
21811  @math{+ x^{10} + x^8 + x^7 + x^5 + x^4 + x^2 + x + 1}
21812 @end display
21813 @end ifnothtml
21815 The function is computed byte at a time, taking the least
21816 significant bit of each byte first.  The initial pattern
21817 @code{0xffffffff} is used, to ensure leading zeros affect the CRC and
21818 the final result is inverted to ensure trailing zeros also affect the
21819 CRC.
21821 @emph{Note:} This is the same CRC polynomial as used in handling the
21822 @dfn{Remote Serial Protocol} @code{qCRC} packet (@pxref{qCRC packet}).
21823 However in the case of the Remote Serial Protocol, the CRC is computed
21824 @emph{most} significant bit first, and the result is not inverted, so
21825 trailing zeros have no effect on the CRC value.
21827 To complete the description, we show below the code of the function
21828 which produces the CRC used in @code{.gnu_debuglink}.  Inverting the
21829 initially supplied @code{crc} argument means that an initial call to
21830 this function passing in zero will start computing the CRC using
21831 @code{0xffffffff}.
21833 @kindex gnu_debuglink_crc32
21834 @smallexample
21835 unsigned long
21836 gnu_debuglink_crc32 (unsigned long crc,
21837                      unsigned char *buf, size_t len)
21839   static const unsigned long crc32_table[256] =
21840     @{
21841       0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
21842       0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
21843       0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
21844       0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
21845       0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
21846       0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
21847       0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
21848       0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
21849       0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
21850       0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
21851       0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
21852       0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
21853       0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
21854       0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
21855       0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
21856       0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
21857       0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
21858       0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
21859       0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
21860       0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
21861       0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
21862       0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
21863       0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
21864       0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
21865       0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
21866       0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
21867       0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
21868       0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
21869       0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
21870       0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
21871       0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
21872       0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
21873       0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
21874       0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
21875       0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
21876       0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
21877       0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
21878       0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
21879       0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
21880       0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
21881       0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
21882       0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
21883       0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
21884       0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
21885       0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
21886       0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
21887       0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
21888       0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
21889       0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
21890       0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
21891       0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
21892       0x2d02ef8d
21893     @};
21894   unsigned char *end;
21896   crc = ~crc & 0xffffffff;
21897   for (end = buf + len; buf < end; ++buf)
21898     crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
21899   return ~crc & 0xffffffff;
21901 @end smallexample
21903 @noindent
21904 This computation does not apply to the ``build ID'' method.
21906 @node MiniDebugInfo
21907 @section Debugging information in a special section
21908 @cindex separate debug sections
21909 @cindex @samp{.gnu_debugdata} section
21911 Some systems ship pre-built executables and libraries that have a
21912 special @samp{.gnu_debugdata} section.  This feature is called
21913 @dfn{MiniDebugInfo}.  This section holds an LZMA-compressed object and
21914 is used to supply extra symbols for backtraces.
21916 The intent of this section is to provide extra minimal debugging
21917 information for use in simple backtraces.  It is not intended to be a
21918 replacement for full separate debugging information (@pxref{Separate
21919 Debug Files}).  The example below shows the intended use; however,
21920 @value{GDBN} does not currently put restrictions on what sort of
21921 debugging information might be included in the section.
21923 @value{GDBN} has support for this extension.  If the section exists,
21924 then it is used provided that no other source of debugging information
21925 can be found, and that @value{GDBN} was configured with LZMA support.
21927 This section can be easily created using @command{objcopy} and other
21928 standard utilities:
21930 @smallexample
21931 # Extract the dynamic symbols from the main binary, there is no need
21932 # to also have these in the normal symbol table.
21933 nm -D @var{binary} --format=posix --defined-only \
21934   | awk '@{ print $1 @}' | sort > dynsyms
21936 # Extract all the text (i.e. function) symbols from the debuginfo.
21937 # (Note that we actually also accept "D" symbols, for the benefit
21938 # of platforms like PowerPC64 that use function descriptors.)
21939 nm @var{binary} --format=posix --defined-only \
21940   | awk '@{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 @}' \
21941   | sort > funcsyms
21943 # Keep all the function symbols not already in the dynamic symbol
21944 # table.
21945 comm -13 dynsyms funcsyms > keep_symbols
21947 # Separate full debug info into debug binary.
21948 objcopy --only-keep-debug @var{binary} debug
21950 # Copy the full debuginfo, keeping only a minimal set of symbols and
21951 # removing some unnecessary sections.
21952 objcopy -S --remove-section .gdb_index --remove-section .comment \
21953   --keep-symbols=keep_symbols debug mini_debuginfo
21955 # Drop the full debug info from the original binary.
21956 strip --strip-all -R .comment @var{binary}
21958 # Inject the compressed data into the .gnu_debugdata section of the
21959 # original binary.
21960 xz mini_debuginfo
21961 objcopy --add-section .gnu_debugdata=mini_debuginfo.xz @var{binary}
21962 @end smallexample
21964 @node Index Files
21965 @section Index Files Speed Up @value{GDBN}
21966 @cindex index files
21967 @cindex @samp{.gdb_index} section
21969 When @value{GDBN} finds a symbol file, it scans the symbols in the
21970 file in order to construct an internal symbol table.  This lets most
21971 @value{GDBN} operations work quickly---at the cost of a delay early
21972 on.  For large programs, this delay can be quite lengthy, so
21973 @value{GDBN} provides a way to build an index, which speeds up
21974 startup.
21976 For convenience, @value{GDBN} comes with a program,
21977 @command{gdb-add-index}, which can be used to add the index to a
21978 symbol file.  It takes the symbol file as its only argument:
21980 @smallexample
21981 $ gdb-add-index symfile
21982 @end smallexample
21984 @xref{gdb-add-index}.
21986 It is also possible to do the work manually.  Here is what
21987 @command{gdb-add-index} does behind the curtains.
21989 The index is stored as a section in the symbol file.  @value{GDBN} can
21990 write the index to a file, then you can put it into the symbol file
21991 using @command{objcopy}.
21993 To create an index file, use the @code{save gdb-index} command:
21995 @table @code
21996 @item save gdb-index [-dwarf-5] @var{directory}
21997 @kindex save gdb-index
21998 Create index files for all symbol files currently known by
21999 @value{GDBN}.  For each known @var{symbol-file}, this command by
22000 default creates it produces a single file
22001 @file{@var{symbol-file}.gdb-index}.  If you invoke this command with
22002 the @option{-dwarf-5} option, it produces 2 files:
22003 @file{@var{symbol-file}.debug_names} and
22004 @file{@var{symbol-file}.debug_str}.  The files are created in the
22005 given @var{directory}.
22006 @end table
22008 Once you have created an index file you can merge it into your symbol
22009 file, here named @file{symfile}, using @command{objcopy}:
22011 @smallexample
22012 $ objcopy --add-section .gdb_index=symfile.gdb-index \
22013     --set-section-flags .gdb_index=readonly symfile symfile
22014 @end smallexample
22016 Or for @code{-dwarf-5}:
22018 @smallexample
22019 $ objcopy --dump-section .debug_str=symfile.debug_str.new symfile
22020 $ cat symfile.debug_str >>symfile.debug_str.new
22021 $ objcopy --add-section .debug_names=symfile.gdb-index \
22022     --set-section-flags .debug_names=readonly \
22023     --update-section .debug_str=symfile.debug_str.new symfile symfile
22024 @end smallexample
22026 @value{GDBN} will normally ignore older versions of @file{.gdb_index}
22027 sections that have been deprecated.  Usually they are deprecated because
22028 they are missing a new feature or have performance issues.
22029 To tell @value{GDBN} to use a deprecated index section anyway
22030 specify @code{set use-deprecated-index-sections on}.
22031 The default is @code{off}.
22032 This can speed up startup, but may result in some functionality being lost.
22033 @xref{Index Section Format}.
22035 @emph{Warning:} Setting @code{use-deprecated-index-sections} to @code{on}
22036 must be done before gdb reads the file.  The following will not work:
22038 @smallexample
22039 $ gdb -ex "set use-deprecated-index-sections on" <program>
22040 @end smallexample
22042 Instead you must do, for example,
22044 @smallexample
22045 $ gdb -iex "set use-deprecated-index-sections on" <program>
22046 @end smallexample
22048 Indices only work when using DWARF debugging information, not stabs.
22050 @subsection Automatic symbol index cache
22052 @cindex automatic symbol index cache
22053 It is possible for @value{GDBN} to automatically save a copy of this index in a
22054 cache on disk and retrieve it from there when loading the same binary in the
22055 future.  This feature can be turned on with @kbd{set index-cache enabled on}.
22056 The following commands can be used to tweak the behavior of the index cache.
22058 @table @code
22060 @kindex set index-cache
22061 @item set index-cache enabled on
22062 @itemx set index-cache enabled off
22063 Enable or disable the use of the symbol index cache.
22065 @item set index-cache directory @var{directory}
22066 @kindex show index-cache
22067 @itemx show index-cache directory
22068 Set/show the directory where index files will be saved.
22070 The default value for this directory depends on the host platform.  On
22071 most systems, the index is cached in the @file{gdb} subdirectory of
22072 the directory pointed to by the @env{XDG_CACHE_HOME} environment
22073 variable, if it is defined, else in the @file{.cache/gdb} subdirectory
22074 of your home directory.  However, on some systems, the default may
22075 differ according to local convention.
22077 There is no limit on the disk space used by index cache.  It is perfectly safe
22078 to delete the content of that directory to free up disk space.
22080 @item show index-cache stats
22081 Print the number of cache hits and misses since the launch of @value{GDBN}.
22083 @end table
22085 @node Symbol Errors
22086 @section Errors Reading Symbol Files
22088 While reading a symbol file, @value{GDBN} occasionally encounters problems,
22089 such as symbol types it does not recognize, or known bugs in compiler
22090 output.  By default, @value{GDBN} does not notify you of such problems, since
22091 they are relatively common and primarily of interest to people
22092 debugging compilers.  If you are interested in seeing information
22093 about ill-constructed symbol tables, you can either ask @value{GDBN} to print
22094 only one message about each such type of problem, no matter how many
22095 times the problem occurs; or you can ask @value{GDBN} to print more messages,
22096 to see how many times the problems occur, with the @code{set
22097 complaints} command (@pxref{Messages/Warnings, ,Optional Warnings and
22098 Messages}).
22100 The messages currently printed, and their meanings, include:
22102 @table @code
22103 @item inner block not inside outer block in @var{symbol}
22105 The symbol information shows where symbol scopes begin and end
22106 (such as at the start of a function or a block of statements).  This
22107 error indicates that an inner scope block is not fully contained
22108 in its outer scope blocks.
22110 @value{GDBN} circumvents the problem by treating the inner block as if it had
22111 the same scope as the outer block.  In the error message, @var{symbol}
22112 may be shown as ``@code{(don't know)}'' if the outer block is not a
22113 function.
22115 @item block at @var{address} out of order
22117 The symbol information for symbol scope blocks should occur in
22118 order of increasing addresses.  This error indicates that it does not
22119 do so.
22121 @value{GDBN} does not circumvent this problem, and has trouble
22122 locating symbols in the source file whose symbols it is reading.  (You
22123 can often determine what source file is affected by specifying
22124 @code{set verbose on}.  @xref{Messages/Warnings, ,Optional Warnings and
22125 Messages}.)
22127 @item bad block start address patched
22129 The symbol information for a symbol scope block has a start address
22130 smaller than the address of the preceding source line.  This is known
22131 to occur in the SunOS 4.1.1 (and earlier) C compiler.
22133 @value{GDBN} circumvents the problem by treating the symbol scope block as
22134 starting on the previous source line.
22136 @item bad string table offset in symbol @var{n}
22138 @cindex foo
22139 Symbol number @var{n} contains a pointer into the string table which is
22140 larger than the size of the string table.
22142 @value{GDBN} circumvents the problem by considering the symbol to have the
22143 name @code{foo}, which may cause other problems if many symbols end up
22144 with this name.
22146 @item unknown symbol type @code{0x@var{nn}}
22148 The symbol information contains new data types that @value{GDBN} does
22149 not yet know how to read.  @code{0x@var{nn}} is the symbol type of the
22150 uncomprehended information, in hexadecimal.
22152 @value{GDBN} circumvents the error by ignoring this symbol information.
22153 This usually allows you to debug your program, though certain symbols
22154 are not accessible.  If you encounter such a problem and feel like
22155 debugging it, you can debug @code{@value{GDBP}} with itself, breakpoint
22156 on @code{complain}, then go up to the function @code{read_dbx_symtab}
22157 and examine @code{*bufp} to see the symbol.
22159 @item stub type has NULL name
22161 @value{GDBN} could not find the full definition for a struct or class.
22163 @item const/volatile indicator missing (ok if using g++ v1.x), got@dots{}
22164 The symbol information for a C@t{++} member function is missing some
22165 information that recent versions of the compiler should have output for
22168 @item info mismatch between compiler and debugger
22170 @value{GDBN} could not parse a type specification output by the compiler.
22172 @end table
22174 @node Data Files
22175 @section GDB Data Files
22177 @cindex prefix for data files
22178 @value{GDBN} will sometimes read an auxiliary data file.  These files
22179 are kept in a directory known as the @dfn{data directory}.
22181 You can set the data directory's name, and view the name @value{GDBN}
22182 is currently using.
22184 @table @code
22185 @kindex set data-directory
22186 @item set data-directory @var{directory}
22187 Set the directory which @value{GDBN} searches for auxiliary data files
22188 to @var{directory}.
22190 @kindex show data-directory
22191 @item show data-directory
22192 Show the directory @value{GDBN} searches for auxiliary data files.
22193 @end table
22195 @cindex default data directory
22196 @cindex @samp{--with-gdb-datadir}
22197 You can set the default data directory by using the configure-time
22198 @samp{--with-gdb-datadir} option.  If the data directory is inside
22199 @value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
22200 @samp{--exec-prefix}), then the default data directory will be updated
22201 automatically if the installed @value{GDBN} is moved to a new
22202 location.
22204 The data directory may also be specified with the
22205 @code{--data-directory} command line option.
22206 @xref{Mode Options}.
22208 @node Targets
22209 @chapter Specifying a Debugging Target
22211 @cindex debugging target
22212 A @dfn{target} is the execution environment occupied by your program.
22214 Often, @value{GDBN} runs in the same host environment as your program;
22215 in that case, the debugging target is specified as a side effect when
22216 you use the @code{file} or @code{core} commands.  When you need more
22217 flexibility---for example, running @value{GDBN} on a physically separate
22218 host, or controlling a standalone system over a serial port or a
22219 realtime system over a TCP/IP connection---you can use the @code{target}
22220 command to specify one of the target types configured for @value{GDBN}
22221 (@pxref{Target Commands, ,Commands for Managing Targets}).
22223 @cindex target architecture
22224 It is possible to build @value{GDBN} for several different @dfn{target
22225 architectures}.  When @value{GDBN} is built like that, you can choose
22226 one of the available architectures with the @kbd{set architecture}
22227 command.
22229 @table @code
22230 @kindex set architecture
22231 @kindex show architecture
22232 @item set architecture @var{arch}
22233 This command sets the current target architecture to @var{arch}.  The
22234 value of @var{arch} can be @code{"auto"}, in addition to one of the
22235 supported architectures.
22237 @item show architecture
22238 Show the current target architecture.
22240 @item set processor
22241 @itemx processor
22242 @kindex set processor
22243 @kindex show processor
22244 These are alias commands for, respectively, @code{set architecture}
22245 and @code{show architecture}.
22246 @end table
22248 @menu
22249 * Active Targets::              Active targets
22250 * Target Commands::             Commands for managing targets
22251 * Byte Order::                  Choosing target byte order
22252 @end menu
22254 @node Active Targets
22255 @section Active Targets
22257 @cindex stacking targets
22258 @cindex active targets
22259 @cindex multiple targets
22261 There are multiple classes of targets such as: processes, executable files or
22262 recording sessions.  Core files belong to the process class, making core file
22263 and process mutually exclusive.  Otherwise, @value{GDBN} can work concurrently
22264 on multiple active targets, one in each class.  This allows you to (for
22265 example) start a process and inspect its activity, while still having access to
22266 the executable file after the process finishes.  Or if you start process
22267 recording (@pxref{Reverse Execution}) and @code{reverse-step} there, you are
22268 presented a virtual layer of the recording target, while the process target
22269 remains stopped at the chronologically last point of the process execution.
22271 Use the @code{core-file} and @code{exec-file} commands to select a new core
22272 file or executable target (@pxref{Files, ,Commands to Specify Files}).  To
22273 specify as a target a process that is already running, use the @code{attach}
22274 command (@pxref{Attach, ,Debugging an Already-running Process}).
22276 @node Target Commands
22277 @section Commands for Managing Targets
22279 @table @code
22280 @item target @var{type} @var{parameters}
22281 Connects the @value{GDBN} host environment to a target machine or
22282 process.  A target is typically a protocol for talking to debugging
22283 facilities.  You use the argument @var{type} to specify the type or
22284 protocol of the target machine.
22286 Further @var{parameters} are interpreted by the target protocol, but
22287 typically include things like device names or host names to connect
22288 with, process numbers, and baud rates.
22290 The @code{target} command does not repeat if you press @key{RET} again
22291 after executing the command.
22293 @kindex help target
22294 @item help target
22295 Displays the names of all targets available.  To display targets
22296 currently selected, use either @code{info target} or @code{info files}
22297 (@pxref{Files, ,Commands to Specify Files}).
22299 @item help target @var{name}
22300 Describe a particular target, including any parameters necessary to
22301 select it.
22303 @kindex set gnutarget
22304 @item set gnutarget @var{args}
22305 @value{GDBN} uses its own library BFD to read your files.  @value{GDBN}
22306 knows whether it is reading an @dfn{executable},
22307 a @dfn{core}, or a @dfn{.o} file; however, you can specify the file format
22308 with the @code{set gnutarget} command.  Unlike most @code{target} commands,
22309 with @code{gnutarget} the @code{target} refers to a program, not a machine.
22311 @quotation
22312 @emph{Warning:} To specify a file format with @code{set gnutarget},
22313 you must know the actual BFD name.
22314 @end quotation
22316 @noindent
22317 @xref{Files, , Commands to Specify Files}.
22319 @kindex show gnutarget
22320 @item show gnutarget
22321 Use the @code{show gnutarget} command to display what file format
22322 @code{gnutarget} is set to read.  If you have not set @code{gnutarget},
22323 @value{GDBN} will determine the file format for each file automatically,
22324 and @code{show gnutarget} displays @samp{The current BFD target is "auto"}.
22325 @end table
22327 @cindex common targets
22328 Here are some common targets (available, or not, depending on the GDB
22329 configuration):
22331 @table @code
22332 @kindex target
22333 @item target exec @var{program}
22334 @cindex executable file target
22335 An executable file.  @samp{target exec @var{program}} is the same as
22336 @samp{exec-file @var{program}}.
22338 @item target core @var{filename}
22339 @cindex core dump file target
22340 A core dump file.  @samp{target core @var{filename}} is the same as
22341 @samp{core-file @var{filename}}.
22343 @item target remote @var{medium}
22344 @cindex remote target
22345 A remote system connected to @value{GDBN} via a serial line or network
22346 connection.  This command tells @value{GDBN} to use its own remote
22347 protocol over @var{medium} for debugging.  @xref{Remote Debugging}.
22349 For example, if you have a board connected to @file{/dev/ttya} on the
22350 machine running @value{GDBN}, you could say:
22352 @smallexample
22353 target remote /dev/ttya
22354 @end smallexample
22356 @code{target remote} supports the @code{load} command.  This is only
22357 useful if you have some other way of getting the stub to the target
22358 system, and you can put it somewhere in memory where it won't get
22359 clobbered by the download.
22361 @item target sim @r{[}@var{simargs}@r{]} @dots{}
22362 @cindex built-in simulator target
22363 Builtin CPU simulator.  @value{GDBN} includes simulators for most architectures.
22364 In general,
22365 @smallexample
22366         target sim
22367         load
22368         run
22369 @end smallexample
22370 @noindent
22371 works; however, you cannot assume that a specific memory map, device
22372 drivers, or even basic I/O is available, although some simulators do
22373 provide these.  For info about any processor-specific simulator details,
22374 see the appropriate section in @ref{Embedded Processors, ,Embedded
22375 Processors}.
22377 @item target native
22378 @cindex native target
22379 Setup for local/native process debugging.  Useful to make the
22380 @code{run} command spawn native processes (likewise @code{attach},
22381 etc.@:) even when @code{set auto-connect-native-target} is @code{off}
22382 (@pxref{set auto-connect-native-target}).
22384 @end table
22386 Different targets are available on different configurations of @value{GDBN};
22387 your configuration may have more or fewer targets.
22389 Many remote targets require you to download the executable's code once
22390 you've successfully established a connection.  You may wish to control
22391 various aspects of this process.
22393 @table @code
22395 @item set hash
22396 @kindex set hash@r{, for remote monitors}
22397 @cindex hash mark while downloading
22398 This command controls whether a hash mark @samp{#} is displayed while
22399 downloading a file to the remote monitor.  If on, a hash mark is
22400 displayed after each S-record is successfully downloaded to the
22401 monitor.
22403 @item show hash
22404 @kindex show hash@r{, for remote monitors}
22405 Show the current status of displaying the hash mark.
22407 @item set debug monitor
22408 @kindex set debug monitor
22409 @cindex display remote monitor communications
22410 Enable or disable display of communications messages between
22411 @value{GDBN} and the remote monitor.
22413 @item show debug monitor
22414 @kindex show debug monitor
22415 Show the current status of displaying communications between
22416 @value{GDBN} and the remote monitor.
22417 @end table
22419 @table @code
22421 @kindex load @var{filename} @var{offset}
22422 @item load @var{filename} @var{offset}
22423 @anchor{load}
22424 Depending on what remote debugging facilities are configured into
22425 @value{GDBN}, the @code{load} command may be available.  Where it exists, it
22426 is meant to make @var{filename} (an executable) available for debugging
22427 on the remote system---by downloading, or dynamic linking, for example.
22428 @code{load} also records the @var{filename} symbol table in @value{GDBN}, like
22429 the @code{add-symbol-file} command.
22431 If your @value{GDBN} does not have a @code{load} command, attempting to
22432 execute it gets the error message ``@code{You can't do that when your
22433 target is @dots{}}''
22435 The file is loaded at whatever address is specified in the executable.
22436 For some object file formats, you can specify the load address when you
22437 link the program; for other formats, like a.out, the object file format
22438 specifies a fixed address.
22439 @c FIXME! This would be a good place for an xref to the GNU linker doc.
22441 It is also possible to tell @value{GDBN} to load the executable file at a
22442 specific offset described by the optional argument @var{offset}.  When
22443 @var{offset} is provided, @var{filename} must also be provided.
22445 Depending on the remote side capabilities, @value{GDBN} may be able to
22446 load programs into flash memory.
22448 @code{load} does not repeat if you press @key{RET} again after using it.
22449 @end table
22451 @table @code
22453 @kindex flash-erase
22454 @item flash-erase
22455 @anchor{flash-erase}
22457 Erases all known flash memory regions on the target.
22459 @end table
22461 @node Byte Order
22462 @section Choosing Target Byte Order
22464 @cindex choosing target byte order
22465 @cindex target byte order
22467 Some types of processors, such as the @acronym{MIPS}, PowerPC, and Renesas SH,
22468 offer the ability to run either big-endian or little-endian byte
22469 orders.  Usually the executable or symbol will include a bit to
22470 designate the endian-ness, and you will not need to worry about
22471 which to use.  However, you may still find it useful to adjust
22472 @value{GDBN}'s idea of processor endian-ness manually.
22474 @table @code
22475 @kindex set endian
22476 @item set endian big
22477 Instruct @value{GDBN} to assume the target is big-endian.
22479 @item set endian little
22480 Instruct @value{GDBN} to assume the target is little-endian.
22482 @item set endian auto
22483 Instruct @value{GDBN} to use the byte order associated with the
22484 executable.
22486 @item show endian
22487 Display @value{GDBN}'s current idea of the target byte order.
22489 @end table
22491 If the @code{set endian auto} mode is in effect and no executable has
22492 been selected, then the endianness used is the last one chosen either
22493 by one of the @code{set endian big} and @code{set endian little}
22494 commands or by inferring from the last executable used.  If no
22495 endianness has been previously chosen, then the default for this mode
22496 is inferred from the target @value{GDBN} has been built for, and is
22497 @code{little} if the name of the target CPU has an @code{el} suffix
22498 and @code{big} otherwise.
22500 Note that these commands merely adjust interpretation of symbolic
22501 data on the host, and that they have absolutely no effect on the
22502 target system.
22505 @node Remote Debugging
22506 @chapter Debugging Remote Programs
22507 @cindex remote debugging
22509 If you are trying to debug a program running on a machine that cannot run
22510 @value{GDBN} in the usual way, it is often useful to use remote debugging.
22511 For example, you might use remote debugging on an operating system kernel,
22512 or on a small system which does not have a general purpose operating system
22513 powerful enough to run a full-featured debugger.
22515 Some configurations of @value{GDBN} have special serial or TCP/IP interfaces
22516 to make this work with particular debugging targets.  In addition,
22517 @value{GDBN} comes with a generic serial protocol (specific to @value{GDBN},
22518 but not specific to any particular target system) which you can use if you
22519 write the remote stubs---the code that runs on the remote system to
22520 communicate with @value{GDBN}.
22522 Other remote targets may be available in your
22523 configuration of @value{GDBN}; use @code{help target} to list them.
22525 @menu
22526 * Connecting::                  Connecting to a remote target
22527 * File Transfer::               Sending files to a remote system
22528 * Server::                      Using the gdbserver program
22529 * Remote Configuration::        Remote configuration
22530 * Remote Stub::                 Implementing a remote stub
22531 @end menu
22533 @node Connecting
22534 @section Connecting to a Remote Target
22535 @cindex remote debugging, connecting
22536 @cindex @code{gdbserver}, connecting
22537 @cindex remote debugging, types of connections
22538 @cindex @code{gdbserver}, types of connections
22539 @cindex @code{gdbserver}, @code{target remote} mode
22540 @cindex @code{gdbserver}, @code{target extended-remote} mode
22542 This section describes how to connect to a remote target, including the
22543 types of connections and their differences, how to set up executable and
22544 symbol files on the host and target, and the commands used for
22545 connecting to and disconnecting from the remote target.
22547 @subsection Types of Remote Connections
22549 @value{GDBN} supports two types of remote connections, @code{target remote}
22550 mode and @code{target extended-remote} mode.  Note that many remote targets
22551 support only @code{target remote} mode.  There are several major
22552 differences between the two types of connections, enumerated here:
22554 @table @asis
22556 @cindex remote debugging, detach and program exit
22557 @item Result of detach or program exit
22558 @strong{With target remote mode:} When the debugged program exits or you
22559 detach from it, @value{GDBN} disconnects from the target.  When using
22560 @code{gdbserver}, @code{gdbserver} will exit.
22562 @strong{With target extended-remote mode:} When the debugged program exits or
22563 you detach from it, @value{GDBN} remains connected to the target, even
22564 though no program is running.  You can rerun the program, attach to a
22565 running program, or use @code{monitor} commands specific to the target.
22567 When using @code{gdbserver} in this case, it does not exit unless it was
22568 invoked using the @option{--once} option.  If the @option{--once} option
22569 was not used, you can ask @code{gdbserver} to exit using the
22570 @code{monitor exit} command (@pxref{Monitor Commands for gdbserver}).
22572 @item Specifying the program to debug
22573 For both connection types you use the @code{file} command to specify the
22574 program on the host system.  If you are using @code{gdbserver} there are
22575 some differences in how to specify the location of the program on the
22576 target.
22578 @strong{With target remote mode:} You must either specify the program to debug
22579 on the @code{gdbserver} command line or use the @option{--attach} option
22580 (@pxref{Attaching to a program,,Attaching to a Running Program}).
22582 @cindex @option{--multi}, @code{gdbserver} option
22583 @strong{With target extended-remote mode:} You may specify the program to debug
22584 on the @code{gdbserver} command line, or you can load the program or attach
22585 to it using @value{GDBN} commands after connecting to @code{gdbserver}.
22587 @anchor{--multi Option in Types of Remote Connnections}
22588 You can start @code{gdbserver} without supplying an initial command to run
22589 or process ID to attach.  To do this, use the @option{--multi} command line
22590 option.  Then you can connect using @code{target extended-remote} and start
22591 the program you want to debug (see below for details on using the
22592 @code{run} command in this scenario).  Note that the conditions under which
22593 @code{gdbserver} terminates depend on how @value{GDBN} connects to it
22594 (@code{target remote} or @code{target extended-remote}).  The
22595 @option{--multi} option to @code{gdbserver} has no influence on that.
22597 @item The @code{run} command
22598 @strong{With target remote mode:} The @code{run} command is not
22599 supported.  Once a connection has been established, you can use all
22600 the usual @value{GDBN} commands to examine and change data.  The
22601 remote program is already running, so you can use commands like
22602 @kbd{step} and @kbd{continue}.
22604 @strong{With target extended-remote mode:} The @code{run} command is
22605 supported.  The @code{run} command uses the value set by
22606 @code{set remote exec-file} (@pxref{set remote exec-file}) to select
22607 the program to run.  Command line arguments are supported, except for
22608 wildcard expansion and I/O redirection (@pxref{Arguments}).
22610 If you specify the program to debug on the command line, then the
22611 @code{run} command is not required to start execution, and you can
22612 resume using commands like @kbd{step} and @kbd{continue} as with
22613 @code{target remote} mode.
22615 @anchor{Attaching in Types of Remote Connections}
22616 @item Attaching
22617 @strong{With target remote mode:} The @value{GDBN} command @code{attach} is
22618 not supported.  To attach to a running program using @code{gdbserver}, you
22619 must use the @option{--attach} option (@pxref{Running gdbserver}).
22621 @strong{With target extended-remote mode:} To attach to a running program,
22622 you may use the @code{attach} command after the connection has been
22623 established.  If you are using @code{gdbserver}, you may also invoke
22624 @code{gdbserver} using the @option{--attach} option
22625 (@pxref{Running gdbserver}).
22627 Some remote targets allow @value{GDBN} to determine the executable file running
22628 in the process the debugger is attaching to.  In such a case, @value{GDBN}
22629 uses the value of @code{exec-file-mismatch} to handle a possible mismatch
22630 between the executable file name running in the process and the name of the
22631 current exec-file loaded by @value{GDBN} (@pxref{set exec-file-mismatch}).
22633 @end table
22635 @anchor{Host and target files}
22636 @subsection Host and Target Files
22637 @cindex remote debugging, symbol files
22638 @cindex symbol files, remote debugging
22640 @value{GDBN}, running on the host, needs access to symbol and debugging
22641 information for your program running on the target.  This requires 
22642 access to an unstripped copy of your program, and possibly any associated
22643 symbol files.  Note that this section applies equally to both @code{target
22644 remote} mode and @code{target extended-remote} mode.
22646 Some remote targets (@pxref{qXfer executable filename read}, and
22647 @pxref{Host I/O Packets}) allow @value{GDBN} to access program files over
22648 the same connection used to communicate with @value{GDBN}.  With such a
22649 target, if the remote program is unstripped, the only command you need is
22650 @code{target remote} (or @code{target extended-remote}).
22652 If the remote program is stripped, or the target does not support remote
22653 program file access, start up @value{GDBN} using the name of the local
22654 unstripped copy of your program as the first argument, or use the
22655 @code{file} command.  Use @code{set sysroot} to specify the location (on
22656 the host) of target libraries (unless your @value{GDBN} was compiled with
22657 the correct sysroot using @code{--with-sysroot}).  Alternatively, you
22658 may use @code{set solib-search-path} to specify how @value{GDBN} locates
22659 target libraries.
22661 The symbol file and target libraries must exactly match the executable
22662 and libraries on the target, with one exception: the files on the host
22663 system should not be stripped, even if the files on the target system
22664 are.  Mismatched or missing files will lead to confusing results
22665 during debugging.  On @sc{gnu}/Linux targets, mismatched or missing
22666 files may also prevent @code{gdbserver} from debugging multi-threaded
22667 programs.
22669 @subsection Remote Connection Commands
22670 @cindex remote connection commands
22671 @value{GDBN} can communicate with the target over a serial line, a
22672 local Unix domain socket, or
22673 over an @acronym{IP} network using @acronym{TCP} or @acronym{UDP}.  In
22674 each case, @value{GDBN} uses the same protocol for debugging your
22675 program; only the medium carrying the debugging packets varies.  The
22676 @code{target remote} and @code{target extended-remote} commands
22677 establish a connection to the target.  Both commands accept the same
22678 arguments, which indicate the medium to use:
22680 @table @code
22682 @item target remote @var{serial-device}
22683 @itemx target extended-remote @var{serial-device}
22684 @cindex serial line, @code{target remote}
22685 Use @var{serial-device} to communicate with the target.  For example,
22686 to use a serial line connected to the device named @file{/dev/ttyb}:
22688 @smallexample
22689 target remote /dev/ttyb
22690 @end smallexample
22692 If you're using a serial line, you may want to give @value{GDBN} the
22693 @samp{--baud} option, or use the @code{set serial baud} command
22694 (@pxref{Remote Configuration, set serial baud}) before the
22695 @code{target} command.
22697 @item target remote @var{local-socket}
22698 @itemx target extended-remote @var{local-socket}
22699 @cindex local socket, @code{target remote}
22700 @cindex Unix domain socket
22701 Use @var{local-socket} to communicate with the target.  For example,
22702 to use a local Unix domain socket bound to the file system entry @file{/tmp/gdb-socket0}:
22704 @smallexample
22705 target remote /tmp/gdb-socket0
22706 @end smallexample
22708 Note that this command has the same form as the command to connect
22709 to a serial line.  @value{GDBN} will automatically determine which
22710 kind of file you have specified and will make the appropriate kind
22711 of connection.
22712 This feature is not available if the host system does not support
22713 Unix domain sockets.
22715 @item target remote @code{@var{host}:@var{port}}
22716 @itemx target remote @code{[@var{host}]:@var{port}}
22717 @itemx target remote @code{tcp:@var{host}:@var{port}}
22718 @itemx target remote @code{tcp:[@var{host}]:@var{port}}
22719 @itemx target remote @code{tcp4:@var{host}:@var{port}}
22720 @itemx target remote @code{tcp6:@var{host}:@var{port}}
22721 @itemx target remote @code{tcp6:[@var{host}]:@var{port}}
22722 @itemx target extended-remote @code{@var{host}:@var{port}}
22723 @itemx target extended-remote @code{[@var{host}]:@var{port}}
22724 @itemx target extended-remote @code{tcp:@var{host}:@var{port}}
22725 @itemx target extended-remote @code{tcp:[@var{host}]:@var{port}}
22726 @itemx target extended-remote @code{tcp4:@var{host}:@var{port}}
22727 @itemx target extended-remote @code{tcp6:@var{host}:@var{port}}
22728 @itemx target extended-remote @code{tcp6:[@var{host}]:@var{port}}
22729 @cindex @acronym{TCP} port, @code{target remote}
22730 Debug using a @acronym{TCP} connection to @var{port} on @var{host}.
22731 The @var{host} may be either a host name, a numeric @acronym{IPv4}
22732 address, or a numeric @acronym{IPv6} address (with or without the
22733 square brackets to separate the address from the port); @var{port}
22734 must be a decimal number.  The @var{host} could be the target machine
22735 itself, if it is directly connected to the net, or it might be a
22736 terminal server which in turn has a serial line to the target.
22738 For example, to connect to port 2828 on a terminal server named
22739 @code{manyfarms}:
22741 @smallexample
22742 target remote manyfarms:2828
22743 @end smallexample
22745 To connect to port 2828 on a terminal server whose address is
22746 @code{2001:0db8:85a3:0000:0000:8a2e:0370:7334}, you can either use the
22747 square bracket syntax:
22749 @smallexample
22750 target remote [2001:0db8:85a3:0000:0000:8a2e:0370:7334]:2828
22751 @end smallexample
22753 @noindent
22754 or explicitly specify the @acronym{IPv6} protocol:
22756 @smallexample
22757 target remote tcp6:2001:0db8:85a3:0000:0000:8a2e:0370:7334:2828
22758 @end smallexample
22760 This last example may be confusing to the reader, because there is no
22761 visible separation between the hostname and the port number.
22762 Therefore, we recommend the user to provide @acronym{IPv6} addresses
22763 using square brackets for clarity.  However, it is important to
22764 mention that for @value{GDBN} there is no ambiguity: the number after
22765 the last colon is considered to be the port number.
22767 If your remote target is actually running on the same machine as your
22768 debugger session (e.g.@: a simulator for your target running on the
22769 same host), you can omit the hostname.  For example, to connect to
22770 port 1234 on your local machine:
22772 @smallexample
22773 target remote :1234
22774 @end smallexample
22775 @noindent
22777 Note that the colon is still required here.
22779 @item target remote @code{udp:@var{host}:@var{port}}
22780 @itemx target remote @code{udp:[@var{host}]:@var{port}}
22781 @itemx target remote @code{udp4:@var{host}:@var{port}}
22782 @itemx target remote @code{udp6:[@var{host}]:@var{port}}
22783 @itemx target extended-remote @code{udp:@var{host}:@var{port}}
22784 @itemx target extended-remote @code{udp:@var{host}:@var{port}}
22785 @itemx target extended-remote @code{udp:[@var{host}]:@var{port}}
22786 @itemx target extended-remote @code{udp4:@var{host}:@var{port}}
22787 @itemx target extended-remote @code{udp6:@var{host}:@var{port}}
22788 @itemx target extended-remote @code{udp6:[@var{host}]:@var{port}}
22789 @cindex @acronym{UDP} port, @code{target remote}
22790 Debug using @acronym{UDP} packets to @var{port} on @var{host}.  For example, to
22791 connect to @acronym{UDP} port 2828 on a terminal server named @code{manyfarms}:
22793 @smallexample
22794 target remote udp:manyfarms:2828
22795 @end smallexample
22797 When using a @acronym{UDP} connection for remote debugging, you should
22798 keep in mind that the `U' stands for ``Unreliable''.  @acronym{UDP}
22799 can silently drop packets on busy or unreliable networks, which will
22800 cause havoc with your debugging session.
22802 @item target remote | @var{command}
22803 @itemx target extended-remote | @var{command}
22804 @cindex pipe, @code{target remote} to
22805 Run @var{command} in the background and communicate with it using a
22806 pipe.  The @var{command} is a shell command, to be parsed and expanded
22807 by the system's command shell, @code{/bin/sh}; it should expect remote
22808 protocol packets on its standard input, and send replies on its
22809 standard output.  You could use this to run a stand-alone simulator
22810 that speaks the remote debugging protocol, to make net connections
22811 using programs like @code{ssh}, or for other similar tricks.
22813 If @var{command} closes its standard output (perhaps by exiting),
22814 @value{GDBN} will try to send it a @code{SIGTERM} signal.  (If the
22815 program has already exited, this will have no effect.)
22817 @end table
22819 @cindex interrupting remote programs
22820 @cindex remote programs, interrupting
22821 Whenever @value{GDBN} is waiting for the remote program, if you type the
22822 interrupt character (often @kbd{Ctrl-c}), @value{GDBN} attempts to stop the
22823 program.  This may or may not succeed, depending in part on the hardware
22824 and the serial drivers the remote system uses.  If you type the
22825 interrupt character once again, @value{GDBN} displays this prompt:
22827 @smallexample
22828 Interrupted while waiting for the program.
22829 Give up (and stop debugging it)?  (y or n)
22830 @end smallexample
22832 In @code{target remote} mode, if you type @kbd{y}, @value{GDBN} abandons
22833 the remote debugging session.  (If you decide you want to try again later,
22834 you can use @kbd{target remote} again to connect once more.)  If you type
22835 @kbd{n}, @value{GDBN} goes back to waiting.
22837 In @code{target extended-remote} mode, typing @kbd{n} will leave
22838 @value{GDBN} connected to the target.
22840 @table @code
22841 @kindex detach (remote)
22842 @item detach
22843 When you have finished debugging the remote program, you can use the
22844 @code{detach} command to release it from @value{GDBN} control.
22845 Detaching from the target normally resumes its execution, but the results
22846 will depend on your particular remote stub.  After the @code{detach}
22847 command in @code{target remote} mode, @value{GDBN} is free to connect to
22848 another target.  In @code{target extended-remote} mode, @value{GDBN} is
22849 still connected to the target.
22851 @kindex disconnect
22852 @item disconnect
22853 The @code{disconnect} command closes the connection to the target, and
22854 the target is generally not resumed.  It will wait for @value{GDBN}
22855 (this instance or another one) to connect and continue debugging.  After
22856 the @code{disconnect} command, @value{GDBN} is again free to connect to
22857 another target.
22859 @cindex send command to remote monitor
22860 @cindex extend @value{GDBN} for remote targets
22861 @cindex add new commands for external monitor
22862 @kindex monitor
22863 @item monitor @var{cmd}
22864 This command allows you to send arbitrary commands directly to the
22865 remote monitor.  Since @value{GDBN} doesn't care about the commands it
22866 sends like this, this command is the way to extend @value{GDBN}---you
22867 can add new commands that only the external monitor will understand
22868 and implement.
22869 @end table
22871 @node File Transfer
22872 @section Sending files to a remote system
22873 @cindex remote target, file transfer
22874 @cindex file transfer
22875 @cindex sending files to remote systems
22877 Some remote targets offer the ability to transfer files over the same
22878 connection used to communicate with @value{GDBN}.  This is convenient
22879 for targets accessible through other means, e.g.@: @sc{gnu}/Linux systems
22880 running @code{gdbserver} over a network interface.  For other targets,
22881 e.g.@: embedded devices with only a single serial port, this may be
22882 the only way to upload or download files.
22884 Not all remote targets support these commands.
22886 @table @code
22887 @kindex remote put
22888 @item remote put @var{hostfile} @var{targetfile}
22889 Copy file @var{hostfile} from the host system (the machine running
22890 @value{GDBN}) to @var{targetfile} on the target system.
22892 @kindex remote get
22893 @item remote get @var{targetfile} @var{hostfile}
22894 Copy file @var{targetfile} from the target system to @var{hostfile}
22895 on the host system.
22897 @kindex remote delete
22898 @item remote delete @var{targetfile}
22899 Delete @var{targetfile} from the target system.
22901 @end table
22903 @node Server
22904 @section Using the @code{gdbserver} Program
22906 @kindex gdbserver
22907 @cindex remote connection without stubs
22908 @code{gdbserver} is a control program for Unix-like systems, which
22909 allows you to connect your program with a remote @value{GDBN} via
22910 @code{target remote} or @code{target extended-remote}---but without
22911 linking in the usual debugging stub.
22913 @code{gdbserver} is not a complete replacement for the debugging stubs,
22914 because it requires essentially the same operating-system facilities
22915 that @value{GDBN} itself does.  In fact, a system that can run
22916 @code{gdbserver} to connect to a remote @value{GDBN} could also run
22917 @value{GDBN} locally!  @code{gdbserver} is sometimes useful nevertheless,
22918 because it is a much smaller program than @value{GDBN} itself.  It is
22919 also easier to port than all of @value{GDBN}, so you may be able to get
22920 started more quickly on a new system by using @code{gdbserver}.
22921 Finally, if you develop code for real-time systems, you may find that
22922 the tradeoffs involved in real-time operation make it more convenient to
22923 do as much development work as possible on another system, for example
22924 by cross-compiling.  You can use @code{gdbserver} to make a similar
22925 choice for debugging.
22927 @value{GDBN} and @code{gdbserver} communicate via either a serial line
22928 or a TCP connection, using the standard @value{GDBN} remote serial
22929 protocol.
22931 @quotation
22932 @emph{Warning:} @code{gdbserver} does not have any built-in security.
22933 Do not run @code{gdbserver} connected to any public network; a
22934 @value{GDBN} connection to @code{gdbserver} provides access to the
22935 target system with the same privileges as the user running
22936 @code{gdbserver}.
22937 @end quotation
22939 @anchor{Running gdbserver}
22940 @subsection Running @code{gdbserver}
22941 @cindex arguments, to @code{gdbserver}
22942 @cindex @code{gdbserver}, command-line arguments
22944 Run @code{gdbserver} on the target system.  You need a copy of the
22945 program you want to debug, including any libraries it requires.
22946 @code{gdbserver} does not need your program's symbol table, so you can
22947 strip the program if necessary to save space.  @value{GDBN} on the host
22948 system does all the symbol handling.
22950 To use the server, you must tell it how to communicate with @value{GDBN};
22951 the name of your program; and the arguments for your program.  The usual
22952 syntax is:
22954 @smallexample
22955 target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
22956 @end smallexample
22958 @var{comm} is either a device name (to use a serial line), or a TCP
22959 hostname and portnumber, or @code{-} or @code{stdio} to use
22960 stdin/stdout of @code{gdbserver}.
22961 For example, to debug Emacs with the argument
22962 @samp{foo.txt} and communicate with @value{GDBN} over the serial port
22963 @file{/dev/com1}:
22965 @smallexample
22966 target> gdbserver /dev/com1 emacs foo.txt
22967 @end smallexample
22969 @code{gdbserver} waits passively for the host @value{GDBN} to communicate
22970 with it.
22972 To use a TCP connection instead of a serial line:
22974 @smallexample
22975 target> gdbserver host:2345 emacs foo.txt
22976 @end smallexample
22978 The only difference from the previous example is the first argument,
22979 specifying that you are communicating with the host @value{GDBN} via
22980 TCP.  The @samp{host:2345} argument means that @code{gdbserver} is to
22981 expect a TCP connection from machine @samp{host} to local TCP port 2345.
22982 (Currently, the @samp{host} part is ignored.)  You can choose any number
22983 you want for the port number as long as it does not conflict with any
22984 TCP ports already in use on the target system (for example, @code{23} is
22985 reserved for @code{telnet}).@footnote{If you choose a port number that
22986 conflicts with another service, @code{gdbserver} prints an error message
22987 and exits.}  You must use the same port number with the host @value{GDBN}
22988 @code{target remote} command.
22990 The @code{stdio} connection is useful when starting @code{gdbserver}
22991 with ssh:
22993 @smallexample
22994 (gdb) target remote | ssh -T hostname gdbserver - hello
22995 @end smallexample
22997 The @samp{-T} option to ssh is provided because we don't need a remote pty,
22998 and we don't want escape-character handling.  Ssh does this by default when
22999 a command is provided, the flag is provided to make it explicit.
23000 You could elide it if you want to.
23002 Programs started with stdio-connected gdbserver have @file{/dev/null} for
23003 @code{stdin}, and @code{stdout},@code{stderr} are sent back to gdb for
23004 display through a pipe connected to gdbserver.
23005 Both @code{stdout} and @code{stderr} use the same pipe.
23007 @anchor{Attaching to a program}
23008 @subsubsection Attaching to a Running Program
23009 @cindex attach to a program, @code{gdbserver}
23010 @cindex @option{--attach}, @code{gdbserver} option
23012 On some targets, @code{gdbserver} can also attach to running programs.
23013 This is accomplished via the @code{--attach} argument.  The syntax is:
23015 @smallexample
23016 target> gdbserver --attach @var{comm} @var{pid}
23017 @end smallexample
23019 @var{pid} is the process ID of a currently running process.  It isn't
23020 necessary to point @code{gdbserver} at a binary for the running process.
23022 In @code{target extended-remote} mode, you can also attach using the
23023 @value{GDBN} attach command
23024 (@pxref{Attaching in Types of Remote Connections}).
23026 @pindex pidof
23027 You can debug processes by name instead of process ID if your target has the
23028 @code{pidof} utility:
23030 @smallexample
23031 target> gdbserver --attach @var{comm} `pidof @var{program}`
23032 @end smallexample
23034 In case more than one copy of @var{program} is running, or @var{program}
23035 has multiple threads, most versions of @code{pidof} support the
23036 @code{-s} option to only return the first process ID.
23038 @subsubsection TCP port allocation lifecycle of @code{gdbserver}
23040 This section applies only when @code{gdbserver} is run to listen on a TCP
23041 port.
23043 @code{gdbserver} normally terminates after all of its debugged processes have
23044 terminated in @kbd{target remote} mode.  On the other hand, for @kbd{target
23045 extended-remote}, @code{gdbserver} stays running even with no processes left.
23046 @value{GDBN} normally terminates the spawned debugged process on its exit,
23047 which normally also terminates @code{gdbserver} in the @kbd{target remote}
23048 mode.  Therefore, when the connection drops unexpectedly, and @value{GDBN}
23049 cannot ask @code{gdbserver} to kill its debugged processes, @code{gdbserver}
23050 stays running even in the @kbd{target remote} mode.
23052 When @code{gdbserver} stays running, @value{GDBN} can connect to it again later.
23053 Such reconnecting is useful for features like @ref{disconnected tracing}.  For
23054 completeness, at most one @value{GDBN} can be connected at a time.
23056 @cindex @option{--once}, @code{gdbserver} option
23057 By default, @code{gdbserver} keeps the listening TCP port open, so that
23058 subsequent connections are possible.  However, if you start @code{gdbserver}
23059 with the @option{--once} option, it will stop listening for any further
23060 connection attempts after connecting to the first @value{GDBN} session.  This
23061 means no further connections to @code{gdbserver} will be possible after the
23062 first one.  It also means @code{gdbserver} will terminate after the first
23063 connection with remote @value{GDBN} has closed, even for unexpectedly closed
23064 connections and even in the @kbd{target extended-remote} mode.  The
23065 @option{--once} option allows reusing the same port number for connecting to
23066 multiple instances of @code{gdbserver} running on the same host, since each
23067 instance closes its port after the first connection.
23069 @anchor{Other Command-Line Arguments for gdbserver}
23070 @subsubsection Other Command-Line Arguments for @code{gdbserver}
23072 You can use the @option{--multi} option to start @code{gdbserver} without
23073 specifying a program to debug or a process to attach to.  Then you can
23074 attach in @code{target extended-remote} mode and run or attach to a
23075 program.  For more information,
23076 @pxref{--multi Option in Types of Remote Connnections}.
23078 @cindex @option{--debug}, @code{gdbserver} option
23079 The @option{--debug} option tells @code{gdbserver} to display extra
23080 status information about the debugging process.
23081 @cindex @option{--remote-debug}, @code{gdbserver} option
23082 The @option{--remote-debug} option tells @code{gdbserver} to display
23083 remote protocol debug output.
23084 @cindex @option{--debug-file}, @code{gdbserver} option
23085 @cindex @code{gdbserver}, send all debug output to a single file
23086 The @option{--debug-file=@var{filename}} option tells @code{gdbserver} to
23087 write any debug output to the given @var{filename}.  These options are intended
23088 for @code{gdbserver} development and for bug reports to the developers.
23090 @cindex @option{--debug-format}, @code{gdbserver} option
23091 The @option{--debug-format=option1[,option2,...]} option tells
23092 @code{gdbserver} to include additional information in each output.
23093 Possible options are:
23095 @table @code
23096 @item none
23097 Turn off all extra information in debugging output.
23098 @item all
23099 Turn on all extra information in debugging output.
23100 @item timestamps
23101 Include a timestamp in each line of debugging output.
23102 @end table
23104 Options are processed in order.  Thus, for example, if @option{none}
23105 appears last then no additional information is added to debugging output.
23107 @cindex @option{--wrapper}, @code{gdbserver} option
23108 The @option{--wrapper} option specifies a wrapper to launch programs
23109 for debugging.  The option should be followed by the name of the
23110 wrapper, then any command-line arguments to pass to the wrapper, then
23111 @kbd{--} indicating the end of the wrapper arguments.
23113 @code{gdbserver} runs the specified wrapper program with a combined
23114 command line including the wrapper arguments, then the name of the
23115 program to debug, then any arguments to the program.  The wrapper
23116 runs until it executes your program, and then @value{GDBN} gains control.
23118 You can use any program that eventually calls @code{execve} with
23119 its arguments as a wrapper.  Several standard Unix utilities do
23120 this, e.g.@: @code{env} and @code{nohup}.  Any Unix shell script ending
23121 with @code{exec "$@@"} will also work.
23123 For example, you can use @code{env} to pass an environment variable to
23124 the debugged program, without setting the variable in @code{gdbserver}'s
23125 environment:
23127 @smallexample
23128 $ gdbserver --wrapper env LD_PRELOAD=libtest.so -- :2222 ./testprog
23129 @end smallexample
23131 @cindex @option{--selftest}
23132 The @option{--selftest} option runs the self tests in @code{gdbserver}:
23134 @smallexample
23135 $ gdbserver --selftest
23136 Ran 2 unit tests, 0 failed
23137 @end smallexample
23139 These tests are disabled in release.
23140 @subsection Connecting to @code{gdbserver}
23142 The basic procedure for connecting to the remote target is:
23143 @itemize
23145 @item
23146 Run @value{GDBN} on the host system.
23148 @item
23149 Make sure you have the necessary symbol files
23150 (@pxref{Host and target files}).
23151 Load symbols for your application using the @code{file} command before you
23152 connect.  Use @code{set sysroot} to locate target libraries (unless your
23153 @value{GDBN} was compiled with the correct sysroot using
23154 @code{--with-sysroot}).
23156 @item
23157 Connect to your target (@pxref{Connecting,,Connecting to a Remote Target}).
23158 For TCP connections, you must start up @code{gdbserver} prior to using
23159 the @code{target} command.  Otherwise you may get an error whose
23160 text depends on the host system, but which usually looks something like
23161 @samp{Connection refused}.  Don't use the @code{load}
23162 command in @value{GDBN} when using @code{target remote} mode, since the
23163 program is already on the target.
23165 @end itemize
23167 @anchor{Monitor Commands for gdbserver}
23168 @subsection Monitor Commands for @code{gdbserver}
23169 @cindex monitor commands, for @code{gdbserver}
23171 During a @value{GDBN} session using @code{gdbserver}, you can use the
23172 @code{monitor} command to send special requests to @code{gdbserver}.
23173 Here are the available commands.
23175 @table @code
23176 @item monitor help
23177 List the available monitor commands.
23179 @item monitor set debug 0
23180 @itemx monitor set debug 1
23181 Disable or enable general debugging messages.
23183 @item monitor set remote-debug 0
23184 @itemx monitor set remote-debug 1
23185 Disable or enable specific debugging messages associated with the remote
23186 protocol (@pxref{Remote Protocol}).
23188 @item monitor set debug-file filename
23189 @itemx monitor set debug-file
23190 Send any debug output to the given file, or to stderr.
23192 @item monitor set debug-format option1@r{[},option2,...@r{]}
23193 Specify additional text to add to debugging messages.
23194 Possible options are:
23196 @table @code
23197 @item none
23198 Turn off all extra information in debugging output.
23199 @item all
23200 Turn on all extra information in debugging output.
23201 @item timestamps
23202 Include a timestamp in each line of debugging output.
23203 @end table
23205 Options are processed in order.  Thus, for example, if @option{none}
23206 appears last then no additional information is added to debugging output.
23208 @item monitor set libthread-db-search-path [PATH]
23209 @cindex gdbserver, search path for @code{libthread_db}
23210 When this command is issued, @var{path} is a colon-separated list of
23211 directories to search for @code{libthread_db} (@pxref{Threads,,set
23212 libthread-db-search-path}).  If you omit @var{path},
23213 @samp{libthread-db-search-path} will be reset to its default value.
23215 The special entry @samp{$pdir} for @samp{libthread-db-search-path} is
23216 not supported in @code{gdbserver}.
23218 @item monitor exit
23219 Tell gdbserver to exit immediately.  This command should be followed by
23220 @code{disconnect} to close the debugging session.  @code{gdbserver} will
23221 detach from any attached processes and kill any processes it created.
23222 Use @code{monitor exit} to terminate @code{gdbserver} at the end
23223 of a multi-process mode debug session.
23225 @end table
23227 @subsection Tracepoints support in @code{gdbserver}
23228 @cindex tracepoints support in @code{gdbserver}
23230 On some targets, @code{gdbserver} supports tracepoints, fast
23231 tracepoints and static tracepoints.
23233 For fast or static tracepoints to work, a special library called the
23234 @dfn{in-process agent} (IPA), must be loaded in the inferior process.
23235 This library is built and distributed as an integral part of
23236 @code{gdbserver}.  In addition, support for static tracepoints
23237 requires building the in-process agent library with static tracepoints
23238 support.  At present, the UST (LTTng Userspace Tracer,
23239 @url{http://lttng.org/ust}) tracing engine is supported.  This support
23240 is automatically available if UST development headers are found in the
23241 standard include path when @code{gdbserver} is built, or if
23242 @code{gdbserver} was explicitly configured using @option{--with-ust}
23243 to point at such headers.  You can explicitly disable the support
23244 using @option{--with-ust=no}.
23246 There are several ways to load the in-process agent in your program:
23248 @table @code
23249 @item Specifying it as dependency at link time
23251 You can link your program dynamically with the in-process agent
23252 library.  On most systems, this is accomplished by adding
23253 @code{-linproctrace} to the link command.
23255 @item Using the system's preloading mechanisms
23257 You can force loading the in-process agent at startup time by using
23258 your system's support for preloading shared libraries.  Many Unixes
23259 support the concept of preloading user defined libraries.  In most
23260 cases, you do that by specifying @code{LD_PRELOAD=libinproctrace.so}
23261 in the environment.  See also the description of @code{gdbserver}'s
23262 @option{--wrapper} command line option.
23264 @item Using @value{GDBN} to force loading the agent at run time
23266 On some systems, you can force the inferior to load a shared library,
23267 by calling a dynamic loader function in the inferior that takes care
23268 of dynamically looking up and loading a shared library.  On most Unix
23269 systems, the function is @code{dlopen}.  You'll use the @code{call}
23270 command for that.  For example:
23272 @smallexample
23273 (@value{GDBP}) call dlopen ("libinproctrace.so", ...)
23274 @end smallexample
23276 Note that on most Unix systems, for the @code{dlopen} function to be
23277 available, the program needs to be linked with @code{-ldl}.
23278 @end table
23280 On systems that have a userspace dynamic loader, like most Unix
23281 systems, when you connect to @code{gdbserver} using @code{target
23282 remote}, you'll find that the program is stopped at the dynamic
23283 loader's entry point, and no shared library has been loaded in the
23284 program's address space yet, including the in-process agent.  In that
23285 case, before being able to use any of the fast or static tracepoints
23286 features, you need to let the loader run and load the shared
23287 libraries.  The simplest way to do that is to run the program to the
23288 main procedure.  E.g., if debugging a C or C@t{++} program, start
23289 @code{gdbserver} like so:
23291 @smallexample
23292 $ gdbserver :9999 myprogram
23293 @end smallexample
23295 Start GDB and connect to @code{gdbserver} like so, and run to main:
23297 @smallexample
23298 $ gdb myprogram
23299 (@value{GDBP}) target remote myhost:9999
23300 0x00007f215893ba60 in ?? () from /lib64/ld-linux-x86-64.so.2
23301 (@value{GDBP}) b main
23302 (@value{GDBP}) continue
23303 @end smallexample
23305 The in-process tracing agent library should now be loaded into the
23306 process; you can confirm it with the @code{info sharedlibrary}
23307 command, which will list @file{libinproctrace.so} as loaded in the
23308 process.  You are now ready to install fast tracepoints, list static
23309 tracepoint markers, probe static tracepoints markers, and start
23310 tracing.
23312 @node Remote Configuration
23313 @section Remote Configuration
23315 @kindex set remote
23316 @kindex show remote
23317 This section documents the configuration options available when
23318 debugging remote programs.  For the options related to the File I/O
23319 extensions of the remote protocol, see @ref{system,
23320 system-call-allowed}.
23322 @table @code
23323 @item set remoteaddresssize @var{bits}
23324 @cindex address size for remote targets
23325 @cindex bits in remote address
23326 Set the maximum size of address in a memory packet to the specified
23327 number of bits.  @value{GDBN} will mask off the address bits above
23328 that number, when it passes addresses to the remote target.  The
23329 default value is the number of bits in the target's address.
23331 @item show remoteaddresssize
23332 Show the current value of remote address size in bits.
23334 @item set serial baud @var{n}
23335 @cindex baud rate for remote targets
23336 Set the baud rate for the remote serial I/O to @var{n} baud.  The
23337 value is used to set the speed of the serial port used for debugging
23338 remote targets.
23340 @item show serial baud
23341 Show the current speed of the remote connection.
23343 @item set serial parity @var{parity}
23344 Set the parity for the remote serial I/O.  Supported values of @var{parity} are:
23345 @code{even}, @code{none}, and @code{odd}.  The default is @code{none}.
23347 @item show serial parity
23348 Show the current parity of the serial port.
23350 @item set remotebreak
23351 @cindex interrupt remote programs
23352 @cindex BREAK signal instead of Ctrl-C
23353 @anchor{set remotebreak}
23354 If set to on, @value{GDBN} sends a @code{BREAK} signal to the remote
23355 when you type @kbd{Ctrl-c} to interrupt the program running
23356 on the remote.  If set to off, @value{GDBN} sends the @samp{Ctrl-C}
23357 character instead.  The default is off, since most remote systems
23358 expect to see @samp{Ctrl-C} as the interrupt signal.
23360 @item show remotebreak
23361 Show whether @value{GDBN} sends @code{BREAK} or @samp{Ctrl-C} to
23362 interrupt the remote program.
23364 @item set remoteflow on
23365 @itemx set remoteflow off
23366 @kindex set remoteflow
23367 Enable or disable hardware flow control (@code{RTS}/@code{CTS})
23368 on the serial port used to communicate to the remote target.
23370 @item show remoteflow
23371 @kindex show remoteflow
23372 Show the current setting of hardware flow control.
23374 @item set remotelogbase @var{base}
23375 Set the base (a.k.a.@: radix) of logging serial protocol
23376 communications to @var{base}.  Supported values of @var{base} are:
23377 @code{ascii}, @code{octal}, and @code{hex}.  The default is
23378 @code{ascii}.
23380 @item show remotelogbase
23381 Show the current setting of the radix for logging remote serial
23382 protocol.
23384 @item set remotelogfile @var{file}
23385 @cindex record serial communications on file
23386 Record remote serial communications on the named @var{file}.  The
23387 default is not to record at all.
23389 @item show remotelogfile
23390 Show the current setting  of the file name on which to record the
23391 serial communications.
23393 @item set remotetimeout @var{num}
23394 @cindex timeout for serial communications
23395 @cindex remote timeout
23396 Set the timeout limit to wait for the remote target to respond to
23397 @var{num} seconds.  The default is 2 seconds.
23399 @item show remotetimeout
23400 Show the current number of seconds to wait for the remote target
23401 responses.
23403 @cindex limit hardware breakpoints and watchpoints
23404 @cindex remote target, limit break- and watchpoints
23405 @anchor{set remote hardware-watchpoint-limit}
23406 @anchor{set remote hardware-breakpoint-limit}
23407 @item set remote hardware-watchpoint-limit @var{limit}
23408 @itemx set remote hardware-breakpoint-limit @var{limit}
23409 Restrict @value{GDBN} to using @var{limit} remote hardware watchpoints
23410 or breakpoints.  The @var{limit} can be set to 0 to disable hardware
23411 watchpoints or breakpoints, and @code{unlimited} for unlimited
23412 watchpoints or breakpoints.
23414 @item show remote hardware-watchpoint-limit
23415 @itemx show remote hardware-breakpoint-limit
23416 Show the current limit for the number of hardware watchpoints or
23417 breakpoints that @value{GDBN} can use.
23419 @cindex limit hardware watchpoints length
23420 @cindex remote target, limit watchpoints length
23421 @anchor{set remote hardware-watchpoint-length-limit}
23422 @item set remote hardware-watchpoint-length-limit @var{limit}
23423 Restrict @value{GDBN} to using @var{limit} bytes for the maximum
23424 length of a remote hardware watchpoint.  A @var{limit} of 0 disables
23425 hardware watchpoints and @code{unlimited} allows watchpoints of any
23426 length.
23428 @item show remote hardware-watchpoint-length-limit
23429 Show the current limit (in bytes) of the maximum length of
23430 a remote hardware watchpoint.
23432 @item set remote exec-file @var{filename}
23433 @itemx show remote exec-file
23434 @anchor{set remote exec-file}
23435 @cindex executable file, for remote target
23436 Select the file used for @code{run} with @code{target
23437 extended-remote}.  This should be set to a filename valid on the
23438 target system.  If it is not set, the target will use a default
23439 filename (e.g.@: the last program run).
23441 @item set remote interrupt-sequence
23442 @cindex interrupt remote programs
23443 @cindex select Ctrl-C, BREAK or BREAK-g
23444 Allow the user to select one of @samp{Ctrl-C}, a @code{BREAK} or
23445 @samp{BREAK-g} as the
23446 sequence to the remote target in order to interrupt the execution.
23447 @samp{Ctrl-C} is a default.  Some system prefers @code{BREAK} which
23448 is high level of serial line for some certain time.
23449 Linux kernel prefers @samp{BREAK-g}, a.k.a Magic SysRq g.
23450 It is @code{BREAK} signal followed by character @code{g}.
23452 @item show remote interrupt-sequence
23453 Show which of @samp{Ctrl-C}, @code{BREAK} or @code{BREAK-g}
23454 is sent by @value{GDBN} to interrupt the remote program.
23455 @code{BREAK-g} is BREAK signal followed by @code{g} and
23456 also known as Magic SysRq g.
23458 @item set remote interrupt-on-connect
23459 @cindex send interrupt-sequence on start
23460 Specify whether interrupt-sequence is sent to remote target when
23461 @value{GDBN} connects to it.  This is mostly needed when you debug
23462 Linux kernel.  Linux kernel expects @code{BREAK} followed by @code{g}
23463 which is known as Magic SysRq g in order to connect @value{GDBN}.
23465 @item show remote interrupt-on-connect
23466 Show whether interrupt-sequence is sent
23467 to remote target when @value{GDBN} connects to it.
23469 @kindex set tcp
23470 @kindex show tcp
23471 @item set tcp auto-retry on
23472 @cindex auto-retry, for remote TCP target
23473 Enable auto-retry for remote TCP connections.  This is useful if the remote
23474 debugging agent is launched in parallel with @value{GDBN}; there is a race
23475 condition because the agent may not become ready to accept the connection
23476 before @value{GDBN} attempts to connect.  When auto-retry is
23477 enabled, if the initial attempt to connect fails, @value{GDBN} reattempts
23478 to establish the connection using the timeout specified by 
23479 @code{set tcp connect-timeout}.
23481 @item set tcp auto-retry off
23482 Do not auto-retry failed TCP connections.
23484 @item show tcp auto-retry
23485 Show the current auto-retry setting.
23487 @item set tcp connect-timeout @var{seconds}
23488 @itemx set tcp connect-timeout unlimited
23489 @cindex connection timeout, for remote TCP target
23490 @cindex timeout, for remote target connection
23491 Set the timeout for establishing a TCP connection to the remote target to
23492 @var{seconds}.  The timeout affects both polling to retry failed connections 
23493 (enabled by @code{set tcp auto-retry on}) and waiting for connections
23494 that are merely slow to complete, and represents an approximate cumulative
23495 value.  If @var{seconds} is @code{unlimited}, there is no timeout and
23496 @value{GDBN} will keep attempting to establish a connection forever,
23497 unless interrupted with @kbd{Ctrl-c}.  The default is 15 seconds.
23499 @item show tcp connect-timeout
23500 Show the current connection timeout setting.
23501 @end table
23503 @cindex remote packets, enabling and disabling
23504 The @value{GDBN} remote protocol autodetects the packets supported by
23505 your debugging stub.  If you need to override the autodetection, you
23506 can use these commands to enable or disable individual packets.  Each
23507 packet can be set to @samp{on} (the remote target supports this
23508 packet), @samp{off} (the remote target does not support this packet),
23509 or @samp{auto} (detect remote target support for this packet).  They
23510 all default to @samp{auto}.  For more information about each packet,
23511 see @ref{Remote Protocol}.
23513 During normal use, you should not have to use any of these commands.
23514 If you do, that may be a bug in your remote debugging stub, or a bug
23515 in @value{GDBN}.  You may want to report the problem to the
23516 @value{GDBN} developers.
23518 For each packet @var{name}, the command to enable or disable the
23519 packet is @code{set remote @var{name}-packet}.  The available settings
23520 are:
23522 @multitable @columnfractions 0.28 0.32 0.25
23523 @item Command Name
23524 @tab Remote Packet
23525 @tab Related Features
23527 @item @code{fetch-register}
23528 @tab @code{p}
23529 @tab @code{info registers}
23531 @item @code{set-register}
23532 @tab @code{P}
23533 @tab @code{set}
23535 @item @code{binary-download}
23536 @tab @code{X}
23537 @tab @code{load}, @code{set}
23539 @item @code{read-aux-vector}
23540 @tab @code{qXfer:auxv:read}
23541 @tab @code{info auxv}
23543 @item @code{symbol-lookup}
23544 @tab @code{qSymbol}
23545 @tab Detecting multiple threads
23547 @item @code{attach}
23548 @tab @code{vAttach}
23549 @tab @code{attach}
23551 @item @code{verbose-resume}
23552 @tab @code{vCont}
23553 @tab Stepping or resuming multiple threads
23555 @item @code{run}
23556 @tab @code{vRun}
23557 @tab @code{run}
23559 @item @code{software-breakpoint}
23560 @tab @code{Z0}
23561 @tab @code{break}
23563 @item @code{hardware-breakpoint}
23564 @tab @code{Z1}
23565 @tab @code{hbreak}
23567 @item @code{write-watchpoint}
23568 @tab @code{Z2}
23569 @tab @code{watch}
23571 @item @code{read-watchpoint}
23572 @tab @code{Z3}
23573 @tab @code{rwatch}
23575 @item @code{access-watchpoint}
23576 @tab @code{Z4}
23577 @tab @code{awatch}
23579 @item @code{pid-to-exec-file}
23580 @tab @code{qXfer:exec-file:read}
23581 @tab @code{attach}, @code{run}
23583 @item @code{target-features}
23584 @tab @code{qXfer:features:read}
23585 @tab @code{set architecture}
23587 @item @code{library-info}
23588 @tab @code{qXfer:libraries:read}
23589 @tab @code{info sharedlibrary}
23591 @item @code{memory-map}
23592 @tab @code{qXfer:memory-map:read}
23593 @tab @code{info mem}
23595 @item @code{read-sdata-object}
23596 @tab @code{qXfer:sdata:read}
23597 @tab @code{print $_sdata}
23599 @item @code{read-siginfo-object}
23600 @tab @code{qXfer:siginfo:read}
23601 @tab @code{print $_siginfo}
23603 @item @code{write-siginfo-object}
23604 @tab @code{qXfer:siginfo:write}
23605 @tab @code{set $_siginfo}
23607 @item @code{threads}
23608 @tab @code{qXfer:threads:read}
23609 @tab @code{info threads}
23611 @item @code{get-thread-local-@*storage-address}
23612 @tab @code{qGetTLSAddr}
23613 @tab Displaying @code{__thread} variables
23615 @item @code{get-thread-information-block-address}
23616 @tab @code{qGetTIBAddr}
23617 @tab Display MS-Windows Thread Information Block.
23619 @item @code{search-memory}
23620 @tab @code{qSearch:memory}
23621 @tab @code{find}
23623 @item @code{supported-packets}
23624 @tab @code{qSupported}
23625 @tab Remote communications parameters
23627 @item @code{catch-syscalls}
23628 @tab @code{QCatchSyscalls}
23629 @tab @code{catch syscall}
23631 @item @code{pass-signals}
23632 @tab @code{QPassSignals}
23633 @tab @code{handle @var{signal}}
23635 @item @code{program-signals}
23636 @tab @code{QProgramSignals}
23637 @tab @code{handle @var{signal}}
23639 @item @code{hostio-close-packet}
23640 @tab @code{vFile:close}
23641 @tab @code{remote get}, @code{remote put}
23643 @item @code{hostio-open-packet}
23644 @tab @code{vFile:open}
23645 @tab @code{remote get}, @code{remote put}
23647 @item @code{hostio-pread-packet}
23648 @tab @code{vFile:pread}
23649 @tab @code{remote get}, @code{remote put}
23651 @item @code{hostio-pwrite-packet}
23652 @tab @code{vFile:pwrite}
23653 @tab @code{remote get}, @code{remote put}
23655 @item @code{hostio-unlink-packet}
23656 @tab @code{vFile:unlink}
23657 @tab @code{remote delete}
23659 @item @code{hostio-readlink-packet}
23660 @tab @code{vFile:readlink}
23661 @tab Host I/O
23663 @item @code{hostio-fstat-packet}
23664 @tab @code{vFile:fstat}
23665 @tab Host I/O
23667 @item @code{hostio-setfs-packet}
23668 @tab @code{vFile:setfs}
23669 @tab Host I/O
23671 @item @code{noack-packet}
23672 @tab @code{QStartNoAckMode}
23673 @tab Packet acknowledgment
23675 @item @code{osdata}
23676 @tab @code{qXfer:osdata:read}
23677 @tab @code{info os}
23679 @item @code{query-attached}
23680 @tab @code{qAttached}
23681 @tab Querying remote process attach state.
23683 @item @code{trace-buffer-size}
23684 @tab @code{QTBuffer:size}
23685 @tab @code{set trace-buffer-size}
23687 @item @code{trace-status}
23688 @tab @code{qTStatus}
23689 @tab @code{tstatus}
23691 @item @code{traceframe-info}
23692 @tab @code{qXfer:traceframe-info:read}
23693 @tab Traceframe info
23695 @item @code{install-in-trace}
23696 @tab @code{InstallInTrace}
23697 @tab Install tracepoint in tracing
23699 @item @code{disable-randomization}
23700 @tab @code{QDisableRandomization}
23701 @tab @code{set disable-randomization}
23703 @item @code{startup-with-shell}
23704 @tab @code{QStartupWithShell}
23705 @tab @code{set startup-with-shell}
23707 @item @code{environment-hex-encoded}
23708 @tab @code{QEnvironmentHexEncoded}
23709 @tab @code{set environment}
23711 @item @code{environment-unset}
23712 @tab @code{QEnvironmentUnset}
23713 @tab @code{unset environment}
23715 @item @code{environment-reset}
23716 @tab @code{QEnvironmentReset}
23717 @tab @code{Reset the inferior environment (i.e., unset user-set variables)}
23719 @item @code{set-working-dir}
23720 @tab @code{QSetWorkingDir}
23721 @tab @code{set cwd}
23723 @item @code{conditional-breakpoints-packet}
23724 @tab @code{Z0 and Z1}
23725 @tab @code{Support for target-side breakpoint condition evaluation}
23727 @item @code{multiprocess-extensions}
23728 @tab @code{multiprocess extensions}
23729 @tab Debug multiple processes and remote process PID awareness
23731 @item @code{swbreak-feature}
23732 @tab @code{swbreak stop reason}
23733 @tab @code{break}
23735 @item @code{hwbreak-feature}
23736 @tab @code{hwbreak stop reason}
23737 @tab @code{hbreak}
23739 @item @code{fork-event-feature}
23740 @tab @code{fork stop reason}
23741 @tab @code{fork}
23743 @item @code{vfork-event-feature}
23744 @tab @code{vfork stop reason}
23745 @tab @code{vfork}
23747 @item @code{exec-event-feature}
23748 @tab @code{exec stop reason}
23749 @tab @code{exec}
23751 @item @code{thread-events}
23752 @tab @code{QThreadEvents}
23753 @tab Tracking thread lifetime.
23755 @item @code{no-resumed-stop-reply}
23756 @tab @code{no resumed thread left stop reply}
23757 @tab Tracking thread lifetime.
23759 @end multitable
23761 @node Remote Stub
23762 @section Implementing a Remote Stub
23764 @cindex debugging stub, example
23765 @cindex remote stub, example
23766 @cindex stub example, remote debugging
23767 The stub files provided with @value{GDBN} implement the target side of the
23768 communication protocol, and the @value{GDBN} side is implemented in the
23769 @value{GDBN} source file @file{remote.c}.  Normally, you can simply allow
23770 these subroutines to communicate, and ignore the details.  (If you're
23771 implementing your own stub file, you can still ignore the details: start
23772 with one of the existing stub files.  @file{sparc-stub.c} is the best
23773 organized, and therefore the easiest to read.)
23775 @cindex remote serial debugging, overview
23776 To debug a program running on another machine (the debugging
23777 @dfn{target} machine), you must first arrange for all the usual
23778 prerequisites for the program to run by itself.  For example, for a C
23779 program, you need:
23781 @enumerate
23782 @item
23783 A startup routine to set up the C runtime environment; these usually
23784 have a name like @file{crt0}.  The startup routine may be supplied by
23785 your hardware supplier, or you may have to write your own.
23787 @item
23788 A C subroutine library to support your program's
23789 subroutine calls, notably managing input and output.
23791 @item
23792 A way of getting your program to the other machine---for example, a
23793 download program.  These are often supplied by the hardware
23794 manufacturer, but you may have to write your own from hardware
23795 documentation.
23796 @end enumerate
23798 The next step is to arrange for your program to use a serial port to
23799 communicate with the machine where @value{GDBN} is running (the @dfn{host}
23800 machine).  In general terms, the scheme looks like this:
23802 @table @emph
23803 @item On the host,
23804 @value{GDBN} already understands how to use this protocol; when everything
23805 else is set up, you can simply use the @samp{target remote} command
23806 (@pxref{Targets,,Specifying a Debugging Target}).
23808 @item On the target,
23809 you must link with your program a few special-purpose subroutines that
23810 implement the @value{GDBN} remote serial protocol.  The file containing these
23811 subroutines is called  a @dfn{debugging stub}.
23813 On certain remote targets, you can use an auxiliary program
23814 @code{gdbserver} instead of linking a stub into your program.
23815 @xref{Server,,Using the @code{gdbserver} Program}, for details.
23816 @end table
23818 The debugging stub is specific to the architecture of the remote
23819 machine; for example, use @file{sparc-stub.c} to debug programs on
23820 @sc{sparc} boards.
23822 @cindex remote serial stub list
23823 These working remote stubs are distributed with @value{GDBN}:
23825 @table @code
23827 @item i386-stub.c
23828 @cindex @file{i386-stub.c}
23829 @cindex Intel
23830 @cindex i386
23831 For Intel 386 and compatible architectures.
23833 @item m68k-stub.c
23834 @cindex @file{m68k-stub.c}
23835 @cindex Motorola 680x0
23836 @cindex m680x0
23837 For Motorola 680x0 architectures.
23839 @item sh-stub.c
23840 @cindex @file{sh-stub.c}
23841 @cindex Renesas
23842 @cindex SH
23843 For Renesas SH architectures.
23845 @item sparc-stub.c
23846 @cindex @file{sparc-stub.c}
23847 @cindex Sparc
23848 For @sc{sparc} architectures.
23850 @item sparcl-stub.c
23851 @cindex @file{sparcl-stub.c}
23852 @cindex Fujitsu
23853 @cindex SparcLite
23854 For Fujitsu @sc{sparclite} architectures.
23856 @end table
23858 The @file{README} file in the @value{GDBN} distribution may list other
23859 recently added stubs.
23861 @menu
23862 * Stub Contents::       What the stub can do for you
23863 * Bootstrapping::       What you must do for the stub
23864 * Debug Session::       Putting it all together
23865 @end menu
23867 @node Stub Contents
23868 @subsection What the Stub Can Do for You
23870 @cindex remote serial stub
23871 The debugging stub for your architecture supplies these three
23872 subroutines:
23874 @table @code
23875 @item set_debug_traps
23876 @findex set_debug_traps
23877 @cindex remote serial stub, initialization
23878 This routine arranges for @code{handle_exception} to run when your
23879 program stops.  You must call this subroutine explicitly in your
23880 program's startup code.
23882 @item handle_exception
23883 @findex handle_exception
23884 @cindex remote serial stub, main routine
23885 This is the central workhorse, but your program never calls it
23886 explicitly---the setup code arranges for @code{handle_exception} to
23887 run when a trap is triggered.
23889 @code{handle_exception} takes control when your program stops during
23890 execution (for example, on a breakpoint), and mediates communications
23891 with @value{GDBN} on the host machine.  This is where the communications
23892 protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
23893 representative on the target machine.  It begins by sending summary
23894 information on the state of your program, then continues to execute,
23895 retrieving and transmitting any information @value{GDBN} needs, until you
23896 execute a @value{GDBN} command that makes your program resume; at that point,
23897 @code{handle_exception} returns control to your own code on the target
23898 machine.
23900 @item breakpoint
23901 @cindex @code{breakpoint} subroutine, remote
23902 Use this auxiliary subroutine to make your program contain a
23903 breakpoint.  Depending on the particular situation, this may be the only
23904 way for @value{GDBN} to get control.  For instance, if your target
23905 machine has some sort of interrupt button, you won't need to call this;
23906 pressing the interrupt button transfers control to
23907 @code{handle_exception}---in effect, to @value{GDBN}.  On some machines,
23908 simply receiving characters on the serial port may also trigger a trap;
23909 again, in that situation, you don't need to call @code{breakpoint} from
23910 your own program---simply running @samp{target remote} from the host
23911 @value{GDBN} session gets control.
23913 Call @code{breakpoint} if none of these is true, or if you simply want
23914 to make certain your program stops at a predetermined point for the
23915 start of your debugging session.
23916 @end table
23918 @node Bootstrapping
23919 @subsection What You Must Do for the Stub
23921 @cindex remote stub, support routines
23922 The debugging stubs that come with @value{GDBN} are set up for a particular
23923 chip architecture, but they have no information about the rest of your
23924 debugging target machine.
23926 First of all you need to tell the stub how to communicate with the
23927 serial port.
23929 @table @code
23930 @item int getDebugChar()
23931 @findex getDebugChar
23932 Write this subroutine to read a single character from the serial port.
23933 It may be identical to @code{getchar} for your target system; a
23934 different name is used to allow you to distinguish the two if you wish.
23936 @item void putDebugChar(int)
23937 @findex putDebugChar
23938 Write this subroutine to write a single character to the serial port.
23939 It may be identical to @code{putchar} for your target system; a
23940 different name is used to allow you to distinguish the two if you wish.
23941 @end table
23943 @cindex control C, and remote debugging
23944 @cindex interrupting remote targets
23945 If you want @value{GDBN} to be able to stop your program while it is
23946 running, you need to use an interrupt-driven serial driver, and arrange
23947 for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
23948 character).  That is the character which @value{GDBN} uses to tell the
23949 remote system to stop.
23951 Getting the debugging target to return the proper status to @value{GDBN}
23952 probably requires changes to the standard stub; one quick and dirty way
23953 is to just execute a breakpoint instruction (the ``dirty'' part is that
23954 @value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
23956 Other routines you need to supply are:
23958 @table @code
23959 @item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
23960 @findex exceptionHandler
23961 Write this function to install @var{exception_address} in the exception
23962 handling tables.  You need to do this because the stub does not have any
23963 way of knowing what the exception handling tables on your target system
23964 are like (for example, the processor's table might be in @sc{rom},
23965 containing entries which point to a table in @sc{ram}).
23966 The @var{exception_number} specifies the exception which should be changed;
23967 its meaning is architecture-dependent (for example, different numbers
23968 might represent divide by zero, misaligned access, etc).  When this
23969 exception occurs, control should be transferred directly to
23970 @var{exception_address}, and the processor state (stack, registers,
23971 and so on) should be just as it is when a processor exception occurs.  So if
23972 you want to use a jump instruction to reach @var{exception_address}, it
23973 should be a simple jump, not a jump to subroutine.
23975 For the 386, @var{exception_address} should be installed as an interrupt
23976 gate so that interrupts are masked while the handler runs.  The gate
23977 should be at privilege level 0 (the most privileged level).  The
23978 @sc{sparc} and 68k stubs are able to mask interrupts themselves without
23979 help from @code{exceptionHandler}.
23981 @item void flush_i_cache()
23982 @findex flush_i_cache
23983 On @sc{sparc} and @sc{sparclite} only, write this subroutine to flush the
23984 instruction cache, if any, on your target machine.  If there is no
23985 instruction cache, this subroutine may be a no-op.
23987 On target machines that have instruction caches, @value{GDBN} requires this
23988 function to make certain that the state of your program is stable.
23989 @end table
23991 @noindent
23992 You must also make sure this library routine is available:
23994 @table @code
23995 @item void *memset(void *, int, int)
23996 @findex memset
23997 This is the standard library function @code{memset} that sets an area of
23998 memory to a known value.  If you have one of the free versions of
23999 @code{libc.a}, @code{memset} can be found there; otherwise, you must
24000 either obtain it from your hardware manufacturer, or write your own.
24001 @end table
24003 If you do not use the GNU C compiler, you may need other standard
24004 library subroutines as well; this varies from one stub to another,
24005 but in general the stubs are likely to use any of the common library
24006 subroutines which @code{@value{NGCC}} generates as inline code.
24009 @node Debug Session
24010 @subsection Putting it All Together
24012 @cindex remote serial debugging summary
24013 In summary, when your program is ready to debug, you must follow these
24014 steps.
24016 @enumerate
24017 @item
24018 Make sure you have defined the supporting low-level routines
24019 (@pxref{Bootstrapping,,What You Must Do for the Stub}):
24020 @display
24021 @code{getDebugChar}, @code{putDebugChar},
24022 @code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
24023 @end display
24025 @item
24026 Insert these lines in your program's startup code, before the main
24027 procedure is called:
24029 @smallexample
24030 set_debug_traps();
24031 breakpoint();
24032 @end smallexample
24034 On some machines, when a breakpoint trap is raised, the hardware
24035 automatically makes the PC point to the instruction after the
24036 breakpoint.  If your machine doesn't do that, you may need to adjust
24037 @code{handle_exception} to arrange for it to return to the instruction
24038 after the breakpoint on this first invocation, so that your program
24039 doesn't keep hitting the initial breakpoint instead of making
24040 progress.
24042 @item
24043 For the 680x0 stub only, you need to provide a variable called
24044 @code{exceptionHook}.  Normally you just use:
24046 @smallexample
24047 void (*exceptionHook)() = 0;
24048 @end smallexample
24050 @noindent
24051 but if before calling @code{set_debug_traps}, you set it to point to a
24052 function in your program, that function is called when
24053 @code{@value{GDBN}} continues after stopping on a trap (for example, bus
24054 error).  The function indicated by @code{exceptionHook} is called with
24055 one parameter: an @code{int} which is the exception number.
24057 @item
24058 Compile and link together: your program, the @value{GDBN} debugging stub for
24059 your target architecture, and the supporting subroutines.
24061 @item
24062 Make sure you have a serial connection between your target machine and
24063 the @value{GDBN} host, and identify the serial port on the host.
24065 @item
24066 @c The "remote" target now provides a `load' command, so we should
24067 @c document that.  FIXME.
24068 Download your program to your target machine (or get it there by
24069 whatever means the manufacturer provides), and start it.
24071 @item
24072 Start @value{GDBN} on the host, and connect to the target
24073 (@pxref{Connecting,,Connecting to a Remote Target}).
24075 @end enumerate
24077 @node Configurations
24078 @chapter Configuration-Specific Information
24080 While nearly all @value{GDBN} commands are available for all native and
24081 cross versions of the debugger, there are some exceptions.  This chapter
24082 describes things that are only available in certain configurations.
24084 There are three major categories of configurations: native
24085 configurations, where the host and target are the same, embedded
24086 operating system configurations, which are usually the same for several
24087 different processor architectures, and bare embedded processors, which
24088 are quite different from each other.
24090 @menu
24091 * Native::
24092 * Embedded OS::
24093 * Embedded Processors::
24094 * Architectures::
24095 @end menu
24097 @node Native
24098 @section Native
24100 This section describes details specific to particular native
24101 configurations.
24103 @menu
24104 * BSD libkvm Interface::        Debugging BSD kernel memory images
24105 * Process Information::         Process information
24106 * DJGPP Native::                Features specific to the DJGPP port
24107 * Cygwin Native::               Features specific to the Cygwin port
24108 * Hurd Native::                 Features specific to @sc{gnu} Hurd
24109 * Darwin::                      Features specific to Darwin
24110 * FreeBSD::                     Features specific to FreeBSD
24111 @end menu
24113 @node BSD libkvm Interface
24114 @subsection BSD libkvm Interface
24116 @cindex libkvm
24117 @cindex kernel memory image
24118 @cindex kernel crash dump
24120 BSD-derived systems (FreeBSD/NetBSD/OpenBSD) have a kernel memory
24121 interface that provides a uniform interface for accessing kernel virtual
24122 memory images, including live systems and crash dumps.  @value{GDBN}
24123 uses this interface to allow you to debug live kernels and kernel crash
24124 dumps on many native BSD configurations.  This is implemented as a
24125 special @code{kvm} debugging target.  For debugging a live system, load
24126 the currently running kernel into @value{GDBN} and connect to the
24127 @code{kvm} target:
24129 @smallexample
24130 (@value{GDBP}) @b{target kvm}
24131 @end smallexample
24133 For debugging crash dumps, provide the file name of the crash dump as an
24134 argument:
24136 @smallexample
24137 (@value{GDBP}) @b{target kvm /var/crash/bsd.0}
24138 @end smallexample
24140 Once connected to the @code{kvm} target, the following commands are
24141 available:
24143 @table @code
24144 @kindex kvm
24145 @item kvm pcb
24146 Set current context from the @dfn{Process Control Block} (PCB) address.
24148 @item kvm proc
24149 Set current context from proc address.  This command isn't available on
24150 modern FreeBSD systems.
24151 @end table
24153 @node Process Information
24154 @subsection Process Information
24155 @cindex /proc
24156 @cindex examine process image
24157 @cindex process info via @file{/proc}
24159 Some operating systems provide interfaces to fetch additional
24160 information about running processes beyond memory and per-thread
24161 register state.  If @value{GDBN} is configured for an operating system
24162 with a supported interface, the command @code{info proc} is available
24163 to report information about the process running your program, or about
24164 any process running on your system.
24166 One supported interface is a facility called @samp{/proc} that can be
24167 used to examine the image of a running process using file-system
24168 subroutines.  This facility is supported on @sc{gnu}/Linux and Solaris
24169 systems.
24171 On FreeBSD and NetBSD systems, system control nodes are used to query
24172 process information.
24174 In addition, some systems may provide additional process information
24175 in core files.  Note that a core file may include a subset of the
24176 information available from a live process.  Process information is
24177 currently available from cores created on @sc{gnu}/Linux and FreeBSD
24178 systems.
24180 @table @code
24181 @kindex info proc
24182 @cindex process ID
24183 @item info proc
24184 @itemx info proc @var{process-id}
24185 Summarize available information about a process.  If a
24186 process ID is specified by @var{process-id}, display information about
24187 that process; otherwise display information about the program being
24188 debugged.  The summary includes the debugged process ID, the command
24189 line used to invoke it, its current working directory, and its
24190 executable file's absolute file name.
24192 On some systems, @var{process-id} can be of the form
24193 @samp{[@var{pid}]/@var{tid}} which specifies a certain thread ID
24194 within a process.  If the optional @var{pid} part is missing, it means
24195 a thread from the process being debugged (the leading @samp{/} still
24196 needs to be present, or else @value{GDBN} will interpret the number as
24197 a process ID rather than a thread ID).
24199 @item info proc cmdline
24200 @cindex info proc cmdline
24201 Show the original command line of the process.  This command is
24202 supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
24204 @item info proc cwd
24205 @cindex info proc cwd
24206 Show the current working directory of the process.  This command is
24207 supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
24209 @item info proc exe
24210 @cindex info proc exe
24211 Show the name of executable of the process.  This command is supported
24212 on @sc{gnu}/Linux, FreeBSD and NetBSD.
24214 @item info proc files
24215 @cindex info proc files
24216 Show the file descriptors open by the process.  For each open file
24217 descriptor, @value{GDBN} shows its number, type (file, directory,
24218 character device, socket), file pointer offset, and the name of the
24219 resource open on the descriptor.  The resource name can be a file name
24220 (for files, directories, and devices) or a protocol followed by socket
24221 address (for network connections).  This command is supported on
24222 FreeBSD.
24224 This example shows the open file descriptors for a process using a
24225 tty for standard input and output as well as two network sockets:
24227 @smallexample
24228 (gdb) info proc files 22136
24229 process 22136
24230 Open files:
24232       FD   Type     Offset   Flags   Name
24233     text   file          - r-------- /usr/bin/ssh
24234     ctty    chr          - rw------- /dev/pts/20
24235      cwd    dir          - r-------- /usr/home/john
24236     root    dir          - r-------- /
24237        0    chr  0x32933a4 rw------- /dev/pts/20
24238        1    chr  0x32933a4 rw------- /dev/pts/20
24239        2    chr  0x32933a4 rw------- /dev/pts/20
24240        3 socket        0x0 rw----n-- tcp4 10.0.1.2:53014 -> 10.0.1.10:22
24241        4 socket        0x0 rw------- unix stream:/tmp/ssh-FIt89oAzOn5f/agent.2456
24242 @end smallexample
24244 @item info proc mappings
24245 @cindex memory address space mappings
24246 Report the memory address space ranges accessible in a process.  On
24247 Solaris, FreeBSD and NetBSD systems, each memory range includes information
24248 on whether the process has read, write, or execute access rights to each
24249 range.  On @sc{gnu}/Linux, FreeBSD and NetBSD systems, each memory range
24250 includes the object file which is mapped to that range.
24252 @item info proc stat
24253 @itemx info proc status
24254 @cindex process detailed status information
24255 Show additional process-related information, including the user ID and
24256 group ID; virtual memory usage; the signals that are pending, blocked,
24257 and ignored; its TTY; its consumption of system and user time; its
24258 stack size; its @samp{nice} value; etc.  These commands are supported
24259 on @sc{gnu}/Linux, FreeBSD and NetBSD.
24261 For @sc{gnu}/Linux systems, see the @samp{proc} man page for more
24262 information (type @kbd{man 5 proc} from your shell prompt).
24264 For FreeBSD and NetBSD systems, @code{info proc stat} is an alias for
24265 @code{info proc status}.
24267 @item info proc all
24268 Show all the information about the process described under all of the
24269 above @code{info proc} subcommands.
24271 @ignore
24272 @comment These sub-options of 'info proc' were not included when
24273 @comment procfs.c was re-written.  Keep their descriptions around
24274 @comment against the day when someone finds the time to put them back in.
24275 @kindex info proc times
24276 @item info proc times
24277 Starting time, user CPU time, and system CPU time for your program and
24278 its children.
24280 @kindex info proc id
24281 @item info proc id
24282 Report on the process IDs related to your program: its own process ID,
24283 the ID of its parent, the process group ID, and the session ID.
24284 @end ignore
24286 @item set procfs-trace
24287 @kindex set procfs-trace
24288 @cindex @code{procfs} API calls
24289 This command enables and disables tracing of @code{procfs} API calls.
24291 @item show procfs-trace
24292 @kindex show procfs-trace
24293 Show the current state of @code{procfs} API call tracing.
24295 @item set procfs-file @var{file}
24296 @kindex set procfs-file
24297 Tell @value{GDBN} to write @code{procfs} API trace to the named
24298 @var{file}.  @value{GDBN} appends the trace info to the previous
24299 contents of the file.  The default is to display the trace on the
24300 standard output.
24302 @item show procfs-file
24303 @kindex show procfs-file
24304 Show the file to which @code{procfs} API trace is written.
24306 @item proc-trace-entry
24307 @itemx proc-trace-exit
24308 @itemx proc-untrace-entry
24309 @itemx proc-untrace-exit
24310 @kindex proc-trace-entry
24311 @kindex proc-trace-exit
24312 @kindex proc-untrace-entry
24313 @kindex proc-untrace-exit
24314 These commands enable and disable tracing of entries into and exits
24315 from the @code{syscall} interface.
24317 @item info pidlist
24318 @kindex info pidlist
24319 @cindex process list, QNX Neutrino
24320 For QNX Neutrino only, this command displays the list of all the
24321 processes and all the threads within each process.
24323 @item info meminfo
24324 @kindex info meminfo
24325 @cindex mapinfo list, QNX Neutrino
24326 For QNX Neutrino only, this command displays the list of all mapinfos.
24327 @end table
24329 @node DJGPP Native
24330 @subsection Features for Debugging @sc{djgpp} Programs
24331 @cindex @sc{djgpp} debugging
24332 @cindex native @sc{djgpp} debugging
24333 @cindex MS-DOS-specific commands
24335 @cindex DPMI
24336 @sc{djgpp} is a port of the @sc{gnu} development tools to MS-DOS and
24337 MS-Windows.  @sc{djgpp} programs are 32-bit protected-mode programs
24338 that use the @dfn{DPMI} (DOS Protected-Mode Interface) API to run on
24339 top of real-mode DOS systems and their emulations.
24341 @value{GDBN} supports native debugging of @sc{djgpp} programs, and
24342 defines a few commands specific to the @sc{djgpp} port.  This
24343 subsection describes those commands.
24345 @table @code
24346 @kindex info dos
24347 @item info dos
24348 This is a prefix of @sc{djgpp}-specific commands which print
24349 information about the target system and important OS structures.
24351 @kindex sysinfo
24352 @cindex MS-DOS system info
24353 @cindex free memory information (MS-DOS)
24354 @item info dos sysinfo
24355 This command displays assorted information about the underlying
24356 platform: the CPU type and features, the OS version and flavor, the
24357 DPMI version, and the available conventional and DPMI memory.
24359 @cindex GDT
24360 @cindex LDT
24361 @cindex IDT
24362 @cindex segment descriptor tables
24363 @cindex descriptor tables display
24364 @item info dos gdt
24365 @itemx info dos ldt
24366 @itemx info dos idt
24367 These 3 commands display entries from, respectively, Global, Local,
24368 and Interrupt Descriptor Tables (GDT, LDT, and IDT).  The descriptor
24369 tables are data structures which store a descriptor for each segment
24370 that is currently in use.  The segment's selector is an index into a
24371 descriptor table; the table entry for that index holds the
24372 descriptor's base address and limit, and its attributes and access
24373 rights.
24375 A typical @sc{djgpp} program uses 3 segments: a code segment, a data
24376 segment (used for both data and the stack), and a DOS segment (which
24377 allows access to DOS/BIOS data structures and absolute addresses in
24378 conventional memory).  However, the DPMI host will usually define
24379 additional segments in order to support the DPMI environment.
24381 @cindex garbled pointers
24382 These commands allow to display entries from the descriptor tables.
24383 Without an argument, all entries from the specified table are
24384 displayed.  An argument, which should be an integer expression, means
24385 display a single entry whose index is given by the argument.  For
24386 example, here's a convenient way to display information about the
24387 debugged program's data segment:
24389 @smallexample
24390 @exdent @code{(@value{GDBP}) info dos ldt $ds}
24391 @exdent @code{0x13f: base=0x11970000 limit=0x0009ffff 32-Bit Data (Read/Write, Exp-up)}
24392 @end smallexample
24394 @noindent
24395 This comes in handy when you want to see whether a pointer is outside
24396 the data segment's limit (i.e.@: @dfn{garbled}).
24398 @cindex page tables display (MS-DOS)
24399 @item info dos pde
24400 @itemx info dos pte
24401 These two commands display entries from, respectively, the Page
24402 Directory and the Page Tables.  Page Directories and Page Tables are
24403 data structures which control how virtual memory addresses are mapped
24404 into physical addresses.  A Page Table includes an entry for every
24405 page of memory that is mapped into the program's address space; there
24406 may be several Page Tables, each one holding up to 4096 entries.  A
24407 Page Directory has up to 4096 entries, one each for every Page Table
24408 that is currently in use.
24410 Without an argument, @kbd{info dos pde} displays the entire Page
24411 Directory, and @kbd{info dos pte} displays all the entries in all of
24412 the Page Tables.  An argument, an integer expression, given to the
24413 @kbd{info dos pde} command means display only that entry from the Page
24414 Directory table.  An argument given to the @kbd{info dos pte} command
24415 means display entries from a single Page Table, the one pointed to by
24416 the specified entry in the Page Directory.
24418 @cindex direct memory access (DMA) on MS-DOS
24419 These commands are useful when your program uses @dfn{DMA} (Direct
24420 Memory Access), which needs physical addresses to program the DMA
24421 controller.
24423 These commands are supported only with some DPMI servers.
24425 @cindex physical address from linear address
24426 @item info dos address-pte @var{addr}
24427 This command displays the Page Table entry for a specified linear
24428 address.  The argument @var{addr} is a linear address which should
24429 already have the appropriate segment's base address added to it,
24430 because this command accepts addresses which may belong to @emph{any}
24431 segment.  For example, here's how to display the Page Table entry for
24432 the page where a variable @code{i} is stored:
24434 @smallexample
24435 @exdent @code{(@value{GDBP}) info dos address-pte __djgpp_base_address + (char *)&i}
24436 @exdent @code{Page Table entry for address 0x11a00d30:}
24437 @exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
24438 @end smallexample
24440 @noindent
24441 This says that @code{i} is stored at offset @code{0xd30} from the page
24442 whose physical base address is @code{0x02698000}, and shows all the
24443 attributes of that page.
24445 Note that you must cast the addresses of variables to a @code{char *},
24446 since otherwise the value of @code{__djgpp_base_address}, the base
24447 address of all variables and functions in a @sc{djgpp} program, will
24448 be added using the rules of C pointer arithmetics: if @code{i} is
24449 declared an @code{int}, @value{GDBN} will add 4 times the value of
24450 @code{__djgpp_base_address} to the address of @code{i}.
24452 Here's another example, it displays the Page Table entry for the
24453 transfer buffer:
24455 @smallexample
24456 @exdent @code{(@value{GDBP}) info dos address-pte *((unsigned *)&_go32_info_block + 3)}
24457 @exdent @code{Page Table entry for address 0x29110:}
24458 @exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
24459 @end smallexample
24461 @noindent
24462 (The @code{+ 3} offset is because the transfer buffer's address is the
24463 3rd member of the @code{_go32_info_block} structure.)  The output
24464 clearly shows that this DPMI server maps the addresses in conventional
24465 memory 1:1, i.e.@: the physical (@code{0x00029000} + @code{0x110}) and
24466 linear (@code{0x29110}) addresses are identical.
24468 This command is supported only with some DPMI servers.
24469 @end table
24471 @cindex DOS serial data link, remote debugging
24472 In addition to native debugging, the DJGPP port supports remote
24473 debugging via a serial data link.  The following commands are specific
24474 to remote serial debugging in the DJGPP port of @value{GDBN}.
24476 @table @code
24477 @kindex set com1base
24478 @kindex set com1irq
24479 @kindex set com2base
24480 @kindex set com2irq
24481 @kindex set com3base
24482 @kindex set com3irq
24483 @kindex set com4base
24484 @kindex set com4irq
24485 @item set com1base @var{addr}
24486 This command sets the base I/O port address of the @file{COM1} serial
24487 port.
24489 @item set com1irq @var{irq}
24490 This command sets the @dfn{Interrupt Request} (@code{IRQ}) line to use
24491 for the @file{COM1} serial port.
24493 There are similar commands @samp{set com2base}, @samp{set com3irq},
24494 etc.@: for setting the port address and the @code{IRQ} lines for the
24495 other 3 COM ports.
24497 @kindex show com1base
24498 @kindex show com1irq
24499 @kindex show com2base
24500 @kindex show com2irq
24501 @kindex show com3base
24502 @kindex show com3irq
24503 @kindex show com4base
24504 @kindex show com4irq
24505 The related commands @samp{show com1base}, @samp{show com1irq} etc.@:
24506 display the current settings of the base address and the @code{IRQ}
24507 lines used by the COM ports.
24509 @item info serial
24510 @kindex info serial
24511 @cindex DOS serial port status
24512 This command prints the status of the 4 DOS serial ports.  For each
24513 port, it prints whether it's active or not, its I/O base address and
24514 IRQ number, whether it uses a 16550-style FIFO, its baudrate, and the
24515 counts of various errors encountered so far.
24516 @end table
24519 @node Cygwin Native
24520 @subsection Features for Debugging MS Windows PE Executables
24521 @cindex MS Windows debugging
24522 @cindex native Cygwin debugging
24523 @cindex Cygwin-specific commands
24525 @value{GDBN} supports native debugging of MS Windows programs, including
24526 DLLs with and without symbolic debugging information.
24528 @cindex Ctrl-BREAK, MS-Windows
24529 @cindex interrupt debuggee on MS-Windows
24530 MS-Windows programs that call @code{SetConsoleMode} to switch off the
24531 special meaning of the @samp{Ctrl-C} keystroke cannot be interrupted
24532 by typing @kbd{C-c}.  For this reason, @value{GDBN} on MS-Windows
24533 supports @kbd{C-@key{BREAK}} as an alternative interrupt key
24534 sequence, which can be used to interrupt the debuggee even if it
24535 ignores @kbd{C-c}.
24537 There are various additional Cygwin-specific commands, described in
24538 this section.  Working with DLLs that have no debugging symbols is
24539 described in @ref{Non-debug DLL Symbols}.
24541 @table @code
24542 @kindex info w32
24543 @item info w32
24544 This is a prefix of MS Windows-specific commands which print
24545 information about the target system and important OS structures.
24547 @item info w32 selector
24548 This command displays information returned by
24549 the Win32 API @code{GetThreadSelectorEntry} function.
24550 It takes an optional argument that is evaluated to
24551 a long value to give the information about this given selector.
24552 Without argument, this command displays information
24553 about the six segment registers.
24555 @item info w32 thread-information-block
24556 This command displays thread specific information stored in the
24557 Thread Information Block (readable on the X86 CPU family using @code{$fs}
24558 selector for 32-bit programs and @code{$gs} for 64-bit programs).
24560 @kindex signal-event
24561 @item signal-event @var{id}
24562 This command signals an event with user-provided @var{id}.  Used to resume
24563 crashing process when attached to it using MS-Windows JIT debugging (AeDebug).
24565 To use it, create or edit the following keys in
24566 @code{HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug} and/or
24567 @code{HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug}
24568 (for x86_64 versions):
24570 @itemize @minus
24571 @item
24572 @code{Debugger} (REG_SZ) --- a command to launch the debugger.
24573 Suggested command is: @code{@var{fully-qualified-path-to-gdb.exe} -ex
24574 "attach %ld" -ex "signal-event %ld" -ex "continue"}.
24576 The first @code{%ld} will be replaced by the process ID of the
24577 crashing process, the second @code{%ld} will be replaced by the ID of
24578 the event that blocks the crashing process, waiting for @value{GDBN}
24579 to attach.
24581 @item
24582 @code{Auto} (REG_SZ) --- either @code{1} or @code{0}.  @code{1} will
24583 make the system run debugger specified by the Debugger key
24584 automatically, @code{0} will cause a dialog box with ``OK'' and
24585 ``Cancel'' buttons to appear, which allows the user to either
24586 terminate the crashing process (OK) or debug it (Cancel).
24587 @end itemize
24589 @kindex set cygwin-exceptions
24590 @cindex debugging the Cygwin DLL
24591 @cindex Cygwin DLL, debugging
24592 @item set cygwin-exceptions @var{mode}
24593 If @var{mode} is @code{on}, @value{GDBN} will break on exceptions that
24594 happen inside the Cygwin DLL.  If @var{mode} is @code{off},
24595 @value{GDBN} will delay recognition of exceptions, and may ignore some
24596 exceptions which seem to be caused by internal Cygwin DLL
24597 ``bookkeeping''.  This option is meant primarily for debugging the
24598 Cygwin DLL itself; the default value is @code{off} to avoid annoying
24599 @value{GDBN} users with false @code{SIGSEGV} signals.
24601 @kindex show cygwin-exceptions
24602 @item show cygwin-exceptions
24603 Displays whether @value{GDBN} will break on exceptions that happen
24604 inside the Cygwin DLL itself.
24606 @kindex set new-console
24607 @item set new-console @var{mode}
24608 If @var{mode} is @code{on} the debuggee will
24609 be started in a new console on next start.
24610 If @var{mode} is @code{off}, the debuggee will
24611 be started in the same console as the debugger.
24613 @kindex show new-console
24614 @item show new-console
24615 Displays whether a new console is used
24616 when the debuggee is started.
24618 @kindex set new-group
24619 @item set new-group @var{mode}
24620 This boolean value controls whether the debuggee should
24621 start a new group or stay in the same group as the debugger.
24622 This affects the way the Windows OS handles
24623 @samp{Ctrl-C}.
24625 @kindex show new-group
24626 @item show new-group
24627 Displays current value of new-group boolean.
24629 @kindex set debugevents
24630 @item set debugevents
24631 This boolean value adds debug output concerning kernel events related
24632 to the debuggee seen by the debugger.  This includes events that
24633 signal thread and process creation and exit, DLL loading and
24634 unloading, console interrupts, and debugging messages produced by the
24635 Windows @code{OutputDebugString} API call.
24637 @kindex set debugexec
24638 @item set debugexec
24639 This boolean value adds debug output concerning execute events
24640 (such as resume thread) seen by the debugger.
24642 @kindex set debugexceptions
24643 @item set debugexceptions
24644 This boolean value adds debug output concerning exceptions in the
24645 debuggee seen by the debugger.
24647 @kindex set debugmemory
24648 @item set debugmemory
24649 This boolean value adds debug output concerning debuggee memory reads
24650 and writes by the debugger.
24652 @kindex set shell
24653 @item set shell
24654 This boolean values specifies whether the debuggee is called
24655 via a shell or directly (default value is on).
24657 @kindex show shell
24658 @item show shell
24659 Displays if the debuggee will be started with a shell.
24661 @end table
24663 @menu
24664 * Non-debug DLL Symbols::  Support for DLLs without debugging symbols
24665 @end menu
24667 @node Non-debug DLL Symbols
24668 @subsubsection Support for DLLs without Debugging Symbols
24669 @cindex DLLs with no debugging symbols
24670 @cindex Minimal symbols and DLLs
24672 Very often on windows, some of the DLLs that your program relies on do
24673 not include symbolic debugging information (for example,
24674 @file{kernel32.dll}).  When @value{GDBN} doesn't recognize any debugging
24675 symbols in a DLL, it relies on the minimal amount of symbolic
24676 information contained in the DLL's export table.  This section
24677 describes working with such symbols, known internally to @value{GDBN} as
24678 ``minimal symbols''.
24680 Note that before the debugged program has started execution, no DLLs
24681 will have been loaded.  The easiest way around this problem is simply to
24682 start the program --- either by setting a breakpoint or letting the
24683 program run once to completion.
24685 @subsubsection DLL Name Prefixes
24687 In keeping with the naming conventions used by the Microsoft debugging
24688 tools, DLL export symbols are made available with a prefix based on the
24689 DLL name, for instance @code{KERNEL32!CreateFileA}.  The plain name is
24690 also entered into the symbol table, so @code{CreateFileA} is often
24691 sufficient.  In some cases there will be name clashes within a program
24692 (particularly if the executable itself includes full debugging symbols)
24693 necessitating the use of the fully qualified name when referring to the
24694 contents of the DLL.  Use single-quotes around the name to avoid the
24695 exclamation mark (``!'')  being interpreted as a language operator.
24697 Note that the internal name of the DLL may be all upper-case, even
24698 though the file name of the DLL is lower-case, or vice-versa.  Since
24699 symbols within @value{GDBN} are @emph{case-sensitive} this may cause
24700 some confusion. If in doubt, try the @code{info functions} and
24701 @code{info variables} commands or even @code{maint print msymbols}
24702 (@pxref{Symbols}). Here's an example:
24704 @smallexample
24705 (@value{GDBP}) info function CreateFileA
24706 All functions matching regular expression "CreateFileA":
24708 Non-debugging symbols:
24709 0x77e885f4  CreateFileA
24710 0x77e885f4  KERNEL32!CreateFileA
24711 @end smallexample
24713 @smallexample
24714 (@value{GDBP}) info function !
24715 All functions matching regular expression "!":
24717 Non-debugging symbols:
24718 0x6100114c  cygwin1!__assert
24719 0x61004034  cygwin1!_dll_crt0@@0
24720 0x61004240  cygwin1!dll_crt0(per_process *)
24721 [etc...]
24722 @end smallexample
24724 @subsubsection Working with Minimal Symbols
24726 Symbols extracted from a DLL's export table do not contain very much
24727 type information. All that @value{GDBN} can do is guess whether a symbol
24728 refers to a function or variable depending on the linker section that
24729 contains the symbol. Also note that the actual contents of the memory
24730 contained in a DLL are not available unless the program is running. This
24731 means that you cannot examine the contents of a variable or disassemble
24732 a function within a DLL without a running program.
24734 Variables are generally treated as pointers and dereferenced
24735 automatically. For this reason, it is often necessary to prefix a
24736 variable name with the address-of operator (``&'') and provide explicit
24737 type information in the command. Here's an example of the type of
24738 problem:
24740 @smallexample
24741 (@value{GDBP}) print 'cygwin1!__argv'
24742 'cygwin1!__argv' has unknown type; cast it to its declared type
24743 @end smallexample
24745 @smallexample
24746 (@value{GDBP}) x 'cygwin1!__argv'
24747 'cygwin1!__argv' has unknown type; cast it to its declared type
24748 @end smallexample
24750 And two possible solutions:
24752 @smallexample
24753 (@value{GDBP}) print ((char **)'cygwin1!__argv')[0]
24754 $2 = 0x22fd98 "/cygdrive/c/mydirectory/myprogram"
24755 @end smallexample
24757 @smallexample
24758 (@value{GDBP}) x/2x &'cygwin1!__argv'
24759 0x610c0aa8 <cygwin1!__argv>:    0x10021608      0x00000000
24760 (@value{GDBP}) x/x 0x10021608
24761 0x10021608:     0x0022fd98
24762 (@value{GDBP}) x/s 0x0022fd98
24763 0x22fd98:        "/cygdrive/c/mydirectory/myprogram"
24764 @end smallexample
24766 Setting a break point within a DLL is possible even before the program
24767 starts execution. However, under these circumstances, @value{GDBN} can't
24768 examine the initial instructions of the function in order to skip the
24769 function's frame set-up code. You can work around this by using ``*&''
24770 to set the breakpoint at a raw memory address:
24772 @smallexample
24773 (@value{GDBP}) break *&'python22!PyOS_Readline'
24774 Breakpoint 1 at 0x1e04eff0
24775 @end smallexample
24777 The author of these extensions is not entirely convinced that setting a
24778 break point within a shared DLL like @file{kernel32.dll} is completely
24779 safe.
24781 @node Hurd Native
24782 @subsection Commands Specific to @sc{gnu} Hurd Systems
24783 @cindex @sc{gnu} Hurd debugging
24785 This subsection describes @value{GDBN} commands specific to the
24786 @sc{gnu} Hurd native debugging.
24788 @table @code
24789 @item set signals
24790 @itemx set sigs
24791 @kindex set signals@r{, Hurd command}
24792 @kindex set sigs@r{, Hurd command}
24793 This command toggles the state of inferior signal interception by
24794 @value{GDBN}.  Mach exceptions, such as breakpoint traps, are not
24795 affected by this command.  @code{sigs} is a shorthand alias for
24796 @code{signals}.
24798 @item show signals
24799 @itemx show sigs
24800 @kindex show signals@r{, Hurd command}
24801 @kindex show sigs@r{, Hurd command}
24802 Show the current state of intercepting inferior's signals.
24804 @item set signal-thread
24805 @itemx set sigthread
24806 @kindex set signal-thread
24807 @kindex set sigthread
24808 This command tells @value{GDBN} which thread is the @code{libc} signal
24809 thread.  That thread is run when a signal is delivered to a running
24810 process.  @code{set sigthread} is the shorthand alias of @code{set
24811 signal-thread}.
24813 @item show signal-thread
24814 @itemx show sigthread
24815 @kindex show signal-thread
24816 @kindex show sigthread
24817 These two commands show which thread will run when the inferior is
24818 delivered a signal.
24820 @item set stopped
24821 @kindex set stopped@r{, Hurd command}
24822 This commands tells @value{GDBN} that the inferior process is stopped,
24823 as with the @code{SIGSTOP} signal.  The stopped process can be
24824 continued by delivering a signal to it.
24826 @item show stopped
24827 @kindex show stopped@r{, Hurd command}
24828 This command shows whether @value{GDBN} thinks the debuggee is
24829 stopped.
24831 @item set exceptions
24832 @kindex set exceptions@r{, Hurd command}
24833 Use this command to turn off trapping of exceptions in the inferior.
24834 When exception trapping is off, neither breakpoints nor
24835 single-stepping will work.  To restore the default, set exception
24836 trapping on.
24838 @item show exceptions
24839 @kindex show exceptions@r{, Hurd command}
24840 Show the current state of trapping exceptions in the inferior.
24842 @item set task pause
24843 @kindex set task@r{, Hurd commands}
24844 @cindex task attributes (@sc{gnu} Hurd)
24845 @cindex pause current task (@sc{gnu} Hurd)
24846 This command toggles task suspension when @value{GDBN} has control.
24847 Setting it to on takes effect immediately, and the task is suspended
24848 whenever @value{GDBN} gets control.  Setting it to off will take
24849 effect the next time the inferior is continued.  If this option is set
24850 to off, you can use @code{set thread default pause on} or @code{set
24851 thread pause on} (see below) to pause individual threads.
24853 @item show task pause
24854 @kindex show task@r{, Hurd commands}
24855 Show the current state of task suspension.
24857 @item set task detach-suspend-count
24858 @cindex task suspend count
24859 @cindex detach from task, @sc{gnu} Hurd
24860 This command sets the suspend count the task will be left with when
24861 @value{GDBN} detaches from it.
24863 @item show task detach-suspend-count
24864 Show the suspend count the task will be left with when detaching.
24866 @item set task exception-port
24867 @itemx set task excp
24868 @cindex task exception port, @sc{gnu} Hurd
24869 This command sets the task exception port to which @value{GDBN} will
24870 forward exceptions.  The argument should be the value of the @dfn{send
24871 rights} of the task.  @code{set task excp} is a shorthand alias.
24873 @item set noninvasive
24874 @cindex noninvasive task options
24875 This command switches @value{GDBN} to a mode that is the least
24876 invasive as far as interfering with the inferior is concerned.  This
24877 is the same as using @code{set task pause}, @code{set exceptions}, and
24878 @code{set signals} to values opposite to the defaults.
24880 @item info send-rights
24881 @itemx info receive-rights
24882 @itemx info port-rights
24883 @itemx info port-sets
24884 @itemx info dead-names
24885 @itemx info ports
24886 @itemx info psets
24887 @cindex send rights, @sc{gnu} Hurd
24888 @cindex receive rights, @sc{gnu} Hurd
24889 @cindex port rights, @sc{gnu} Hurd
24890 @cindex port sets, @sc{gnu} Hurd
24891 @cindex dead names, @sc{gnu} Hurd
24892 These commands display information about, respectively, send rights,
24893 receive rights, port rights, port sets, and dead names of a task.
24894 There are also shorthand aliases: @code{info ports} for @code{info
24895 port-rights} and @code{info psets} for @code{info port-sets}.
24897 @item set thread pause
24898 @kindex set thread@r{, Hurd command}
24899 @cindex thread properties, @sc{gnu} Hurd
24900 @cindex pause current thread (@sc{gnu} Hurd)
24901 This command toggles current thread suspension when @value{GDBN} has
24902 control.  Setting it to on takes effect immediately, and the current
24903 thread is suspended whenever @value{GDBN} gets control.  Setting it to
24904 off will take effect the next time the inferior is continued.
24905 Normally, this command has no effect, since when @value{GDBN} has
24906 control, the whole task is suspended.  However, if you used @code{set
24907 task pause off} (see above), this command comes in handy to suspend
24908 only the current thread.
24910 @item show thread pause
24911 @kindex show thread@r{, Hurd command}
24912 This command shows the state of current thread suspension.
24914 @item set thread run
24915 This command sets whether the current thread is allowed to run.
24917 @item show thread run
24918 Show whether the current thread is allowed to run.
24920 @item set thread detach-suspend-count
24921 @cindex thread suspend count, @sc{gnu} Hurd
24922 @cindex detach from thread, @sc{gnu} Hurd
24923 This command sets the suspend count @value{GDBN} will leave on a
24924 thread when detaching.  This number is relative to the suspend count
24925 found by @value{GDBN} when it notices the thread; use @code{set thread
24926 takeover-suspend-count} to force it to an absolute value.
24928 @item show thread detach-suspend-count
24929 Show the suspend count @value{GDBN} will leave on the thread when
24930 detaching.
24932 @item set thread exception-port
24933 @itemx set thread excp
24934 Set the thread exception port to which to forward exceptions.  This
24935 overrides the port set by @code{set task exception-port} (see above).
24936 @code{set thread excp} is the shorthand alias.
24938 @item set thread takeover-suspend-count
24939 Normally, @value{GDBN}'s thread suspend counts are relative to the
24940 value @value{GDBN} finds when it notices each thread.  This command
24941 changes the suspend counts to be absolute instead.
24943 @item set thread default
24944 @itemx show thread default
24945 @cindex thread default settings, @sc{gnu} Hurd
24946 Each of the above @code{set thread} commands has a @code{set thread
24947 default} counterpart (e.g., @code{set thread default pause}, @code{set
24948 thread default exception-port}, etc.).  The @code{thread default}
24949 variety of commands sets the default thread properties for all
24950 threads; you can then change the properties of individual threads with
24951 the non-default commands.
24952 @end table
24954 @node Darwin
24955 @subsection Darwin
24956 @cindex Darwin
24958 @value{GDBN} provides the following commands specific to the Darwin target:
24960 @table @code
24961 @item set debug darwin @var{num}
24962 @kindex set debug darwin
24963 When set to a non zero value, enables debugging messages specific to
24964 the Darwin support.  Higher values produce more verbose output.
24966 @item show debug darwin
24967 @kindex show debug darwin
24968 Show the current state of Darwin messages.
24970 @item set debug mach-o @var{num}
24971 @kindex set debug mach-o
24972 When set to a non zero value, enables debugging messages while
24973 @value{GDBN} is reading Darwin object files.  (@dfn{Mach-O} is the
24974 file format used on Darwin for object and executable files.)  Higher
24975 values produce more verbose output.  This is a command to diagnose
24976 problems internal to @value{GDBN} and should not be needed in normal
24977 usage.
24979 @item show debug mach-o
24980 @kindex show debug mach-o
24981 Show the current state of Mach-O file messages.
24983 @item set mach-exceptions on
24984 @itemx set mach-exceptions off
24985 @kindex set mach-exceptions
24986 On Darwin, faults are first reported as a Mach exception and are then
24987 mapped to a Posix signal.  Use this command to turn on trapping of
24988 Mach exceptions in the inferior.  This might be sometimes useful to
24989 better understand the cause of a fault.  The default is off.
24991 @item show mach-exceptions
24992 @kindex show mach-exceptions
24993 Show the current state of exceptions trapping.
24994 @end table
24996 @node FreeBSD
24997 @subsection FreeBSD
24998 @cindex FreeBSD
25000 When the ABI of a system call is changed in the FreeBSD kernel, this
25001 is implemented by leaving a compatibility system call using the old
25002 ABI at the existing number and allocating a new system call number for
25003 the version using the new ABI.  As a convenience, when a system call
25004 is caught by name (@pxref{catch syscall}), compatibility system calls
25005 are also caught.
25007 For example, FreeBSD 12 introduced a new variant of the @code{kevent}
25008 system call and catching the @code{kevent} system call by name catches
25009 both variants:
25011 @smallexample
25012 (@value{GDBP}) catch syscall kevent
25013 Catchpoint 1 (syscalls 'freebsd11_kevent' [363] 'kevent' [560])
25014 (@value{GDBP})
25015 @end smallexample
25018 @node Embedded OS
25019 @section Embedded Operating Systems
25021 This section describes configurations involving the debugging of
25022 embedded operating systems that are available for several different
25023 architectures.
25025 @value{GDBN} includes the ability to debug programs running on
25026 various real-time operating systems.
25028 @node Embedded Processors
25029 @section Embedded Processors
25031 This section goes into details specific to particular embedded
25032 configurations.
25034 @cindex send command to simulator
25035 Whenever a specific embedded processor has a simulator, @value{GDBN}
25036 allows to send an arbitrary command to the simulator.
25038 @table @code
25039 @item sim @var{command}
25040 @kindex sim@r{, a command}
25041 Send an arbitrary @var{command} string to the simulator.  Consult the
25042 documentation for the specific simulator in use for information about
25043 acceptable commands.
25044 @end table
25047 @menu
25048 * ARC::                         Synopsys ARC
25049 * ARM::                         ARM
25050 * BPF::                         eBPF
25051 * M68K::                        Motorola M68K
25052 * MicroBlaze::                  Xilinx MicroBlaze
25053 * MIPS Embedded::               MIPS Embedded
25054 * OpenRISC 1000::               OpenRISC 1000 (or1k)
25055 * PowerPC Embedded::            PowerPC Embedded
25056 * AVR::                         Atmel AVR
25057 * CRIS::                        CRIS
25058 * Super-H::                     Renesas Super-H
25059 @end menu
25061 @node ARC
25062 @subsection Synopsys ARC
25063 @cindex Synopsys ARC
25064 @cindex ARC specific commands
25065 @cindex ARC600
25066 @cindex ARC700
25067 @cindex ARC EM
25068 @cindex ARC HS
25070 @value{GDBN} provides the following ARC-specific commands:
25072 @table @code
25073 @item set debug arc
25074 @kindex set debug arc
25075 Control the level of ARC specific debug messages.  Use 0 for no messages (the
25076 default), 1 for debug messages, and 2 for even more debug messages.
25078 @item show debug arc
25079 @kindex show debug arc
25080 Show the level of ARC specific debugging in operation.
25082 @item maint print arc arc-instruction @var{address}
25083 @kindex maint print arc arc-instruction
25084 Print internal disassembler information about instruction at a given address.
25086 @end table
25088 @node ARM
25089 @subsection ARM
25091 @value{GDBN} provides the following ARM-specific commands:
25093 @table @code
25094 @item set arm disassembler
25095 @kindex set arm
25096 This commands selects from a list of disassembly styles.  The
25097 @code{"std"} style is the standard style.
25099 @item show arm disassembler
25100 @kindex show arm
25101 Show the current disassembly style.
25103 @item set arm apcs32
25104 @cindex ARM 32-bit mode
25105 This command toggles ARM operation mode between 32-bit and 26-bit.
25107 @item show arm apcs32
25108 Display the current usage of the ARM 32-bit mode.
25110 @item set arm fpu @var{fputype}
25111 This command sets the ARM floating-point unit (FPU) type.  The
25112 argument @var{fputype} can be one of these:
25114 @table @code
25115 @item auto
25116 Determine the FPU type by querying the OS ABI.
25117 @item softfpa
25118 Software FPU, with mixed-endian doubles on little-endian ARM
25119 processors.
25120 @item fpa
25121 GCC-compiled FPA co-processor.
25122 @item softvfp
25123 Software FPU with pure-endian doubles.
25124 @item vfp
25125 VFP co-processor.
25126 @end table
25128 @item show arm fpu
25129 Show the current type of the FPU.
25131 @item set arm abi
25132 This command forces @value{GDBN} to use the specified ABI.
25134 @item show arm abi
25135 Show the currently used ABI.
25137 @item set arm fallback-mode (arm|thumb|auto)
25138 @value{GDBN} uses the symbol table, when available, to determine
25139 whether instructions are ARM or Thumb.  This command controls
25140 @value{GDBN}'s default behavior when the symbol table is not
25141 available.  The default is @samp{auto}, which causes @value{GDBN} to
25142 use the current execution mode (from the @code{T} bit in the @code{CPSR}
25143 register).
25145 @item show arm fallback-mode
25146 Show the current fallback instruction mode.
25148 @item set arm force-mode (arm|thumb|auto)
25149 This command overrides use of the symbol table to determine whether
25150 instructions are ARM or Thumb.  The default is @samp{auto}, which
25151 causes @value{GDBN} to use the symbol table and then the setting
25152 of @samp{set arm fallback-mode}.
25154 @item show arm force-mode
25155 Show the current forced instruction mode.
25157 @item set arm unwind-secure-frames
25158 This command enables unwinding from Non-secure to Secure mode on
25159 Cortex-M with Security extension.
25160 This can trigger security exceptions when unwinding the exception
25161 stack.
25162 It is enabled by default.
25164 @item show arm unwind-secure-frames
25165 Show whether unwinding from Non-secure to Secure mode is enabled.
25167 @item set debug arm
25168 Toggle whether to display ARM-specific debugging messages from the ARM
25169 target support subsystem.
25171 @item show debug arm
25172 Show whether ARM-specific debugging messages are enabled.
25173 @end table
25175 @table @code
25176 @item target sim @r{[}@var{simargs}@r{]} @dots{} 
25177 The @value{GDBN} ARM simulator accepts the following optional arguments.
25179 @table @code
25180 @item --swi-support=@var{type}
25181 Tell the simulator which SWI interfaces to support.  The argument
25182 @var{type} may be a comma separated list of the following values.
25183 The default value is @code{all}.
25185 @table @code
25186 @item none
25187 @item demon
25188 @item angel
25189 @item redboot
25190 @item all
25191 @end table
25192 @end table
25193 @end table
25195 @node BPF
25196 @subsection BPF
25198 @table @code
25199 @item target sim @r{[}@var{simargs}@r{]} @dots{}
25200 The @value{GDBN} BPF simulator accepts the following optional arguments.
25202 @table @code
25203 @item --skb-data-offset=@var{offset}
25204 Tell the simulator the offset, measured in bytes, of the
25205 @code{skb_data} field in the kernel @code{struct sk_buff} structure.
25206 This offset is used by some BPF specific-purpose load/store
25207 instructions.  Defaults to 0.
25208 @end table
25209 @end table
25211 @node M68K
25212 @subsection M68k
25214 The Motorola m68k configuration includes ColdFire support.
25216 @node MicroBlaze
25217 @subsection MicroBlaze
25218 @cindex Xilinx MicroBlaze
25219 @cindex XMD, Xilinx Microprocessor Debugger
25221 The MicroBlaze is a soft-core processor supported on various Xilinx
25222 FPGAs, such as Spartan or Virtex series.  Boards with these processors
25223 usually have JTAG ports which connect to a host system running the Xilinx
25224 Embedded Development Kit (EDK) or Software Development Kit (SDK).
25225 This host system is used to download the configuration bitstream to
25226 the target FPGA.  The Xilinx Microprocessor Debugger (XMD) program
25227 communicates with the target board using the JTAG interface and
25228 presents a @code{gdbserver} interface to the board.  By default
25229 @code{xmd} uses port @code{1234}.  (While it is possible to change 
25230 this default port, it requires the use of undocumented @code{xmd} 
25231 commands.  Contact Xilinx support if you need to do this.)
25233 Use these GDB commands to connect to the MicroBlaze target processor.
25235 @table @code
25236 @item target remote :1234
25237 Use this command to connect to the target if you are running @value{GDBN}
25238 on the same system as @code{xmd}.
25240 @item target remote @var{xmd-host}:1234
25241 Use this command to connect to the target if it is connected to @code{xmd}
25242 running on a different system named @var{xmd-host}.
25244 @item load
25245 Use this command to download a program to the MicroBlaze target.
25247 @item set debug microblaze @var{n}
25248 Enable MicroBlaze-specific debugging messages if non-zero.
25250 @item show debug microblaze @var{n}
25251 Show MicroBlaze-specific debugging level.
25252 @end table
25254 @node MIPS Embedded
25255 @subsection @acronym{MIPS} Embedded
25257 @noindent
25258 @value{GDBN} supports these special commands for @acronym{MIPS} targets:
25260 @table @code
25261 @item set mipsfpu double
25262 @itemx set mipsfpu single
25263 @itemx set mipsfpu none
25264 @itemx set mipsfpu auto
25265 @itemx show mipsfpu
25266 @kindex set mipsfpu
25267 @kindex show mipsfpu
25268 @cindex @acronym{MIPS} remote floating point
25269 @cindex floating point, @acronym{MIPS} remote
25270 If your target board does not support the @acronym{MIPS} floating point
25271 coprocessor, you should use the command @samp{set mipsfpu none} (if you
25272 need this, you may wish to put the command in your @value{GDBN} init
25273 file).  This tells @value{GDBN} how to find the return value of
25274 functions which return floating point values.  It also allows
25275 @value{GDBN} to avoid saving the floating point registers when calling
25276 functions on the board.  If you are using a floating point coprocessor
25277 with only single precision floating point support, as on the @sc{r4650}
25278 processor, use the command @samp{set mipsfpu single}.  The default
25279 double precision floating point coprocessor may be selected using
25280 @samp{set mipsfpu double}.
25282 In previous versions the only choices were double precision or no
25283 floating point, so @samp{set mipsfpu on} will select double precision
25284 and @samp{set mipsfpu off} will select no floating point.
25286 As usual, you can inquire about the @code{mipsfpu} variable with
25287 @samp{show mipsfpu}.
25288 @end table
25290 @node OpenRISC 1000
25291 @subsection OpenRISC 1000
25292 @cindex OpenRISC 1000
25294 @noindent
25295 The OpenRISC 1000 provides a free RISC instruction set architecture.  It is
25296 mainly provided as a soft-core which can run on Xilinx, Altera and other
25297 FPGA's.
25299 @value{GDBN} for OpenRISC supports the below commands when connecting to
25300 a target:
25302 @table @code
25304 @kindex target sim
25305 @item target sim
25307 Runs the builtin CPU simulator which can run very basic
25308 programs but does not support most hardware functions like MMU.
25309 For more complex use cases the user is advised to run an external
25310 target, and connect using @samp{target remote}.
25312 Example: @code{target sim}
25314 @item set debug or1k
25315 Toggle whether to display OpenRISC-specific debugging messages from the
25316 OpenRISC target support subsystem.
25318 @item show debug or1k
25319 Show whether OpenRISC-specific debugging messages are enabled.
25320 @end table
25322 @node PowerPC Embedded
25323 @subsection PowerPC Embedded
25325 @cindex DVC register
25326 @value{GDBN} supports using the DVC (Data Value Compare) register to
25327 implement in hardware simple hardware watchpoint conditions of the form:
25329 @smallexample
25330 (@value{GDBP}) watch @var{address|variable} \
25331   if  @var{address|variable} == @var{constant expression}
25332 @end smallexample
25334 The DVC register will be automatically used when @value{GDBN} detects
25335 such pattern in a condition expression, and the created watchpoint uses one
25336 debug register (either the @code{exact-watchpoints} option is on and the
25337 variable is scalar, or the variable has a length of one byte).  This feature
25338 is available in native @value{GDBN} running on a Linux kernel version 2.6.34
25339 or newer.
25341 When running on PowerPC embedded processors, @value{GDBN} automatically uses
25342 ranged hardware watchpoints, unless the @code{exact-watchpoints} option is on,
25343 in which case watchpoints using only one debug register are created when
25344 watching variables of scalar types.
25346 You can create an artificial array to watch an arbitrary memory
25347 region using one of the following commands (@pxref{Expressions}):
25349 @smallexample
25350 (@value{GDBP}) watch *((char *) @var{address})@@@var{length}
25351 (@value{GDBP}) watch @{char[@var{length}]@} @var{address}
25352 @end smallexample
25354 PowerPC embedded processors support masked watchpoints.  See the discussion
25355 about the @code{mask} argument in @ref{Set Watchpoints}.
25357 @cindex ranged breakpoint
25358 PowerPC embedded processors support hardware accelerated
25359 @dfn{ranged breakpoints}.  A ranged breakpoint stops execution of
25360 the inferior whenever it executes an instruction at any address within
25361 the range it specifies.  To set a ranged breakpoint in @value{GDBN},
25362 use the @code{break-range} command.
25364 @value{GDBN} provides the following PowerPC-specific commands:
25366 @table @code
25367 @kindex break-range
25368 @item break-range @var{start-location}, @var{end-location}
25369 Set a breakpoint for an address range given by
25370 @var{start-location} and @var{end-location}, which can specify a function name,
25371 a line number, an offset of lines from the current line or from the start
25372 location, or an address of an instruction (see @ref{Specify Location},
25373 for a list of all the possible ways to specify a @var{location}.)
25374 The breakpoint will stop execution of the inferior whenever it
25375 executes an instruction at any address within the specified range,
25376 (including @var{start-location} and @var{end-location}.)
25378 @kindex set powerpc
25379 @item set powerpc soft-float
25380 @itemx show powerpc soft-float
25381 Force @value{GDBN} to use (or not use) a software floating point calling
25382 convention.  By default, @value{GDBN} selects the calling convention based
25383 on the selected architecture and the provided executable file.
25385 @item set powerpc vector-abi
25386 @itemx show powerpc vector-abi
25387 Force @value{GDBN} to use the specified calling convention for vector
25388 arguments and return values.  The valid options are @samp{auto};
25389 @samp{generic}, to avoid vector registers even if they are present;
25390 @samp{altivec}, to use AltiVec registers; and @samp{spe} to use SPE
25391 registers.  By default, @value{GDBN} selects the calling convention
25392 based on the selected architecture and the provided executable file.
25394 @item set powerpc exact-watchpoints
25395 @itemx show powerpc exact-watchpoints
25396 Allow @value{GDBN} to use only one debug register when watching a variable
25397 of scalar type, thus assuming that the variable is accessed through the
25398 address of its first byte.
25400 @end table
25402 @node AVR
25403 @subsection Atmel AVR
25404 @cindex AVR
25406 When configured for debugging the Atmel AVR, @value{GDBN} supports the
25407 following AVR-specific commands:
25409 @table @code
25410 @item info io_registers
25411 @kindex info io_registers@r{, AVR}
25412 @cindex I/O registers (Atmel AVR)
25413 This command displays information about the AVR I/O registers.  For
25414 each register, @value{GDBN} prints its number and value.
25415 @end table
25417 @node CRIS
25418 @subsection CRIS
25419 @cindex CRIS
25421 When configured for debugging CRIS, @value{GDBN} provides the
25422 following CRIS-specific commands:
25424 @table @code
25425 @item set cris-version @var{ver}
25426 @cindex CRIS version
25427 Set the current CRIS version to @var{ver}, either @samp{10} or @samp{32}.
25428 The CRIS version affects register names and sizes.  This command is useful in
25429 case autodetection of the CRIS version fails.
25431 @item show cris-version
25432 Show the current CRIS version.
25434 @item set cris-dwarf2-cfi
25435 @cindex DWARF-2 CFI and CRIS
25436 Set the usage of DWARF-2 CFI for CRIS debugging.  The default is @samp{on}.
25437 Change to @samp{off} when using @code{gcc-cris} whose version is below 
25438 @code{R59}.
25440 @item show cris-dwarf2-cfi
25441 Show the current state of using DWARF-2 CFI.
25443 @item set cris-mode @var{mode}
25444 @cindex CRIS mode
25445 Set the current CRIS mode to @var{mode}.  It should only be changed when
25446 debugging in guru mode, in which case it should be set to 
25447 @samp{guru} (the default is @samp{normal}).
25449 @item show cris-mode
25450 Show the current CRIS mode.
25451 @end table
25453 @node Super-H
25454 @subsection Renesas Super-H
25455 @cindex Super-H
25457 For the Renesas Super-H processor, @value{GDBN} provides these
25458 commands:
25460 @table @code
25461 @item set sh calling-convention @var{convention}
25462 @kindex set sh calling-convention
25463 Set the calling-convention used when calling functions from @value{GDBN}.
25464 Allowed values are @samp{gcc}, which is the default setting, and @samp{renesas}.
25465 With the @samp{gcc} setting, functions are called using the @value{NGCC} calling
25466 convention.  If the DWARF-2 information of the called function specifies
25467 that the function follows the Renesas calling convention, the function
25468 is called using the Renesas calling convention.  If the calling convention
25469 is set to @samp{renesas}, the Renesas calling convention is always used,
25470 regardless of the DWARF-2 information.  This can be used to override the
25471 default of @samp{gcc} if debug information is missing, or the compiler
25472 does not emit the DWARF-2 calling convention entry for a function.
25474 @item show sh calling-convention
25475 @kindex show sh calling-convention
25476 Show the current calling convention setting.
25478 @end table
25481 @node Architectures
25482 @section Architectures
25484 This section describes characteristics of architectures that affect
25485 all uses of @value{GDBN} with the architecture, both native and cross.
25487 @menu
25488 * AArch64::
25489 * i386::
25490 * Alpha::
25491 * MIPS::
25492 * HPPA::               HP PA architecture
25493 * PowerPC::
25494 * Nios II::
25495 * Sparc64::
25496 * S12Z::
25497 @end menu
25499 @node AArch64
25500 @subsection AArch64
25501 @cindex AArch64 support
25503 When @value{GDBN} is debugging the AArch64 architecture, it provides the
25504 following special commands:
25506 @table @code
25507 @item set debug aarch64
25508 @kindex set debug aarch64
25509 This command determines whether AArch64 architecture-specific debugging
25510 messages are to be displayed.
25512 @item show debug aarch64
25513 Show whether AArch64 debugging messages are displayed.
25515 @end table
25517 @subsubsection AArch64 SVE.
25518 @cindex AArch64 SVE.
25520 When @value{GDBN} is debugging the AArch64 architecture, if the Scalable Vector
25521 Extension (SVE) is present, then @value{GDBN} will provide the vector registers
25522 @code{$z0} through @code{$z31}, vector predicate registers @code{$p0} through
25523 @code{$p15}, and the @code{$ffr} register.  In addition, the pseudo register
25524 @code{$vg} will be provided.  This is the vector granule for the current thread
25525 and represents the number of 64-bit chunks in an SVE @code{z} register.
25527 If the vector length changes, then the @code{$vg} register will be updated,
25528 but the lengths of the @code{z} and @code{p} registers will not change.  This
25529 is a known limitation of @value{GDBN} and does not affect the execution of the
25530 target process.
25532 @subsubsection AArch64 Pointer Authentication.
25533 @cindex AArch64 Pointer Authentication.
25534 @anchor{AArch64 PAC}
25536 When @value{GDBN} is debugging the AArch64 architecture, and the program is
25537 using the v8.3-A feature Pointer Authentication (PAC), then whenever the link
25538 register @code{$lr} is pointing to an PAC function its value will be masked.
25539 When GDB prints a backtrace, any addresses that required unmasking will be
25540 postfixed with the marker [PAC].  When using the MI, this is printed as part
25541 of the @code{addr_flags} field.
25543 @subsubsection AArch64 Memory Tagging Extension.
25544 @cindex AArch64 Memory Tagging Extension.
25546 When @value{GDBN} is debugging the AArch64 architecture, the program is
25547 using the v8.5-A feature Memory Tagging Extension (MTE) and there is support
25548 in the kernel for MTE, @value{GDBN} will make memory tagging functionality
25549 available for inspection and editing of logical and allocation tags.
25550 @xref{Memory Tagging}.
25552 To aid debugging, @value{GDBN} will output additional information when SIGSEGV
25553 signals are generated as a result of memory tag failures.
25555 If the tag violation is synchronous, the following will be shown:
25557 @smallexample
25558 Program received signal SIGSEGV, Segmentation fault
25559 Memory tag violation while accessing address 0x0500fffff7ff8000
25560 Allocation tag 0x1
25561 Logical tag 0x5.
25562 @end smallexample
25564 If the tag violation is asynchronous, the fault address is not available.
25565 In this case @value{GDBN} will show the following:
25567 @smallexample
25568 Program received signal SIGSEGV, Segmentation fault
25569 Memory tag violation
25570 Fault address unavailable.
25571 @end smallexample
25573 A special register, @code{tag_ctl}, is made available through the
25574 @code{org.gnu.gdb.aarch64.mte} feature.  This register exposes some
25575 options that can be controlled at runtime and emulates the @code{prctl}
25576 option @code{PR_SET_TAGGED_ADDR_CTRL}.  For further information, see the
25577 documentation in the Linux kernel.
25579 @node i386
25580 @subsection x86 Architecture-specific Issues
25582 @table @code
25583 @item set struct-convention @var{mode}
25584 @kindex set struct-convention
25585 @cindex struct return convention
25586 @cindex struct/union returned in registers
25587 Set the convention used by the inferior to return @code{struct}s and
25588 @code{union}s from functions to @var{mode}.  Possible values of
25589 @var{mode} are @code{"pcc"}, @code{"reg"}, and @code{"default"} (the
25590 default).  @code{"default"} or @code{"pcc"} means that @code{struct}s
25591 are returned on the stack, while @code{"reg"} means that a
25592 @code{struct} or a @code{union} whose size is 1, 2, 4, or 8 bytes will
25593 be returned in a register.
25595 @item show struct-convention
25596 @kindex show struct-convention
25597 Show the current setting of the convention to return @code{struct}s
25598 from functions.
25599 @end table
25602 @subsubsection Intel @dfn{Memory Protection Extensions} (MPX).
25603 @cindex Intel Memory Protection Extensions (MPX).
25605 Memory Protection Extension (MPX) adds the bound registers @samp{BND0}
25606 @footnote{The register named with capital letters represent the architecture
25607 registers.} through @samp{BND3}.  Bound registers store a pair of 64-bit values
25608 which are the lower bound and upper bound.  Bounds are effective addresses or
25609 memory locations.  The upper bounds are architecturally represented in 1's
25610 complement form.  A bound having lower bound = 0, and upper bound = 0
25611 (1's complement of all bits set) will allow access to the entire address space.
25613 @samp{BND0} through @samp{BND3} are represented in @value{GDBN} as @samp{bnd0raw}
25614 through @samp{bnd3raw}.  Pseudo registers @samp{bnd0} through @samp{bnd3}
25615 display the upper bound performing the complement of one operation on the
25616 upper bound value, i.e.@ when upper bound in @samp{bnd0raw} is 0 in the
25617 @value{GDBN} @samp{bnd0} it will be @code{0xfff@dots{}}.  In this sense it
25618 can also be noted that the upper bounds are inclusive.
25620 As an example, assume that the register BND0 holds bounds for a pointer having
25621 access allowed for the range between 0x32 and 0x71.  The values present on
25622 bnd0raw and bnd registers are presented as follows:
25624 @smallexample
25625         bnd0raw = @{0x32, 0xffffffff8e@}
25626         bnd0 = @{lbound = 0x32, ubound = 0x71@} : size 64
25627 @end smallexample
25629 This way the raw value can be accessed via bnd0raw@dots{}bnd3raw.  Any
25630 change on bnd0@dots{}bnd3 or bnd0raw@dots{}bnd3raw is reflect on its
25631 counterpart.  When the bnd0@dots{}bnd3 registers are displayed via
25632 Python, the display includes the memory size, in bits, accessible to
25633 the pointer.
25635 Bounds can also be stored in bounds tables, which are stored in
25636 application memory.  These tables store bounds for pointers by specifying
25637 the bounds pointer's value along with its bounds.  Evaluating and changing
25638 bounds located in bound tables is therefore interesting while investigating
25639 bugs on MPX context.  @value{GDBN} provides commands for this purpose:
25641 @table @code
25642 @item show mpx bound @var{pointer}
25643 @kindex show mpx bound
25644 Display bounds of the given @var{pointer}.
25646 @item set mpx bound @var{pointer}, @var{lbound}, @var{ubound}
25647 @kindex  set mpx bound
25648 Set the bounds of a pointer in the bound table.
25649 This command takes three parameters: @var{pointer} is the pointers
25650 whose bounds are to be changed, @var{lbound} and @var{ubound} are new values
25651 for lower and upper bounds respectively.
25652 @end table
25654 When you call an inferior function on an Intel MPX enabled program,
25655 GDB sets the inferior's bound registers to the init (disabled) state
25656 before calling the function.  As a consequence, bounds checks for the
25657 pointer arguments passed to the function will always pass.
25659 This is necessary because when you call an inferior function, the
25660 program is usually in the middle of the execution of other function.
25661 Since at that point bound registers are in an arbitrary state, not
25662 clearing them would lead to random bound violations in the called
25663 function.
25665 You can still examine the influence of the bound registers on the
25666 execution of the called function by stopping the execution of the
25667 called function at its prologue, setting bound registers, and
25668 continuing the execution.  For example:
25670 @smallexample
25671         $ break *upper
25672         Breakpoint 2 at 0x4009de: file i386-mpx-call.c, line 47.
25673         $ print upper (a, b, c, d, 1)
25674         Breakpoint 2, upper (a=0x0, b=0x6e0000005b, c=0x0, d=0x0, len=48)....
25675         $ print $bnd0
25676         @{lbound = 0x0, ubound = ffffffff@} : size -1
25677 @end smallexample
25679 At this last step the value of bnd0 can be changed for investigation of bound
25680 violations caused along the execution of the call.  In order to know how to
25681 set the bound registers or bound table for the call consult the ABI.
25683 @node Alpha
25684 @subsection Alpha
25686 See the following section.
25688 @node MIPS
25689 @subsection @acronym{MIPS}
25691 @cindex stack on Alpha
25692 @cindex stack on @acronym{MIPS}
25693 @cindex Alpha stack
25694 @cindex @acronym{MIPS} stack
25695 Alpha- and @acronym{MIPS}-based computers use an unusual stack frame, which
25696 sometimes requires @value{GDBN} to search backward in the object code to
25697 find the beginning of a function.
25699 @cindex response time, @acronym{MIPS} debugging
25700 To improve response time (especially for embedded applications, where
25701 @value{GDBN} may be restricted to a slow serial line for this search)
25702 you may want to limit the size of this search, using one of these
25703 commands:
25705 @table @code
25706 @cindex @code{heuristic-fence-post} (Alpha, @acronym{MIPS})
25707 @item set heuristic-fence-post @var{limit}
25708 Restrict @value{GDBN} to examining at most @var{limit} bytes in its
25709 search for the beginning of a function.  A value of @var{0} (the
25710 default) means there is no limit.  However, except for @var{0}, the
25711 larger the limit the more bytes @code{heuristic-fence-post} must search
25712 and therefore the longer it takes to run.  You should only need to use
25713 this command when debugging a stripped executable.
25715 @item show heuristic-fence-post
25716 Display the current limit.
25717 @end table
25719 @noindent
25720 These commands are available @emph{only} when @value{GDBN} is configured
25721 for debugging programs on Alpha or @acronym{MIPS} processors.
25723 Several @acronym{MIPS}-specific commands are available when debugging @acronym{MIPS}
25724 programs:
25726 @table @code
25727 @item set mips abi @var{arg}
25728 @kindex set mips abi
25729 @cindex set ABI for @acronym{MIPS}
25730 Tell @value{GDBN} which @acronym{MIPS} ABI is used by the inferior.  Possible
25731 values of @var{arg} are:
25733 @table @samp
25734 @item auto
25735 The default ABI associated with the current binary (this is the
25736 default).
25737 @item o32
25738 @item o64
25739 @item n32
25740 @item n64
25741 @item eabi32
25742 @item eabi64
25743 @end table
25745 @item show mips abi
25746 @kindex show mips abi
25747 Show the @acronym{MIPS} ABI used by @value{GDBN} to debug the inferior.
25749 @item set mips compression @var{arg}
25750 @kindex set mips compression
25751 @cindex code compression, @acronym{MIPS}
25752 Tell @value{GDBN} which @acronym{MIPS} compressed
25753 @acronym{ISA, Instruction Set Architecture} encoding is used by the
25754 inferior.  @value{GDBN} uses this for code disassembly and other
25755 internal interpretation purposes.  This setting is only referred to
25756 when no executable has been associated with the debugging session or
25757 the executable does not provide information about the encoding it uses.
25758 Otherwise this setting is automatically updated from information
25759 provided by the executable.
25761 Possible values of @var{arg} are @samp{mips16} and @samp{micromips}.
25762 The default compressed @acronym{ISA} encoding is @samp{mips16}, as
25763 executables containing @acronym{MIPS16} code frequently are not
25764 identified as such.
25766 This setting is ``sticky''; that is, it retains its value across
25767 debugging sessions until reset either explicitly with this command or
25768 implicitly from an executable.
25770 The compiler and/or assembler typically add symbol table annotations to
25771 identify functions compiled for the @acronym{MIPS16} or
25772 @acronym{microMIPS} @acronym{ISA}s.  If these function-scope annotations
25773 are present, @value{GDBN} uses them in preference to the global
25774 compressed @acronym{ISA} encoding setting.
25776 @item show mips compression
25777 @kindex show mips compression
25778 Show the @acronym{MIPS} compressed @acronym{ISA} encoding used by
25779 @value{GDBN} to debug the inferior.
25781 @item set mipsfpu
25782 @itemx show mipsfpu
25783 @xref{MIPS Embedded, set mipsfpu}.
25785 @item set mips mask-address @var{arg}
25786 @kindex set mips mask-address
25787 @cindex @acronym{MIPS} addresses, masking
25788 This command determines whether the most-significant 32 bits of 64-bit
25789 @acronym{MIPS} addresses are masked off.  The argument @var{arg} can be
25790 @samp{on}, @samp{off}, or @samp{auto}.  The latter is the default
25791 setting, which lets @value{GDBN} determine the correct value.
25793 @item show mips mask-address
25794 @kindex show mips mask-address
25795 Show whether the upper 32 bits of @acronym{MIPS} addresses are masked off or
25796 not.
25798 @item set remote-mips64-transfers-32bit-regs
25799 @kindex set remote-mips64-transfers-32bit-regs
25800 This command controls compatibility with 64-bit @acronym{MIPS} targets that
25801 transfer data in 32-bit quantities.  If you have an old @acronym{MIPS} 64 target
25802 that transfers 32 bits for some registers, like @sc{sr} and @sc{fsr},
25803 and 64 bits for other registers, set this option to @samp{on}.
25805 @item show remote-mips64-transfers-32bit-regs
25806 @kindex show remote-mips64-transfers-32bit-regs
25807 Show the current setting of compatibility with older @acronym{MIPS} 64 targets.
25809 @item set debug mips
25810 @kindex set debug mips
25811 This command turns on and off debugging messages for the @acronym{MIPS}-specific
25812 target code in @value{GDBN}.
25814 @item show debug mips
25815 @kindex show debug mips
25816 Show the current setting of @acronym{MIPS} debugging messages.
25817 @end table
25820 @node HPPA
25821 @subsection HPPA
25822 @cindex HPPA support
25824 When @value{GDBN} is debugging the HP PA architecture, it provides the
25825 following special commands:
25827 @table @code
25828 @item set debug hppa
25829 @kindex set debug hppa
25830 This command determines whether HPPA architecture-specific debugging
25831 messages are to be displayed.
25833 @item show debug hppa
25834 Show whether HPPA debugging messages are displayed.
25836 @item maint print unwind @var{address}
25837 @kindex maint print unwind@r{, HPPA}
25838 This command displays the contents of the unwind table entry at the
25839 given @var{address}.
25841 @end table
25844 @node PowerPC
25845 @subsection PowerPC
25846 @cindex PowerPC architecture
25848 When @value{GDBN} is debugging the PowerPC architecture, it provides a set of 
25849 pseudo-registers to enable inspection of 128-bit wide Decimal Floating Point
25850 numbers stored in the floating point registers. These values must be stored
25851 in two consecutive registers, always starting at an even register like
25852 @code{f0} or @code{f2}.
25854 The pseudo-registers go from @code{$dl0} through @code{$dl15}, and are formed
25855 by joining the even/odd register pairs @code{f0} and @code{f1} for @code{$dl0},
25856 @code{f2} and @code{f3} for @code{$dl1} and so on.
25858 For POWER7 processors, @value{GDBN} provides a set of pseudo-registers, the 64-bit
25859 wide Extended Floating Point Registers (@samp{f32} through @samp{f63}).
25861 @node Nios II
25862 @subsection Nios II
25863 @cindex Nios II architecture
25865 When @value{GDBN} is debugging the Nios II architecture,
25866 it provides the following special commands:
25868 @table @code
25870 @item set debug nios2
25871 @kindex set debug nios2
25872 This command turns on and off debugging messages for the Nios II
25873 target code in @value{GDBN}.
25875 @item show debug nios2
25876 @kindex show debug nios2
25877 Show the current setting of Nios II debugging messages.
25878 @end table
25880 @node Sparc64
25881 @subsection Sparc64
25882 @cindex Sparc64 support
25883 @cindex Application Data Integrity
25884 @subsubsection ADI Support
25886 The M7 processor supports an Application Data Integrity (ADI) feature that 
25887 detects invalid data accesses.  When software allocates memory and enables 
25888 ADI on the allocated memory, it chooses a 4-bit version number, sets the 
25889 version in the upper 4 bits of the 64-bit pointer to that data, and stores 
25890 the 4-bit version in every cacheline of that data.  Hardware saves the latter 
25891 in spare bits in the cache and memory hierarchy.  On each load and store, 
25892 the processor compares the upper 4 VA (virtual address) bits to the 
25893 cacheline's version.  If there is a mismatch, the processor generates a 
25894 version mismatch trap which can be either precise or disrupting.  The trap 
25895 is an error condition which the kernel delivers to the process as a SIGSEGV 
25896 signal.
25898 Note that only 64-bit applications can use ADI and need to be built with
25899 ADI-enabled.
25901 Values of the ADI version tags, which are in granularity of a 
25902 cacheline (64 bytes), can be viewed or modified. 
25905 @table @code
25906 @kindex adi examine
25907 @item adi (examine | x) [ / @var{n} ] @var{addr}
25909 The @code{adi examine} command displays the value of one ADI version tag per 
25910 cacheline. 
25912 @var{n} is a decimal integer specifying the number in bytes; the default 
25913 is 1.  It specifies how much ADI version information, at the ratio of 1:ADI 
25914 block size, to display. 
25916 @var{addr} is the address in user address space where you want @value{GDBN} 
25917 to begin displaying the ADI version tags. 
25919 Below is an example of displaying ADI versions of variable "shmaddr".
25921 @smallexample
25922 (@value{GDBP}) adi x/100 shmaddr
25923    0xfff800010002c000:     0 0
25924 @end smallexample
25926 @kindex adi assign
25927 @item adi (assign | a) [ / @var{n} ] @var{addr} = @var{tag}
25929 The @code{adi assign} command is used to assign new ADI version tag 
25930 to an address. 
25932 @var{n} is a decimal integer specifying the number in bytes; 
25933 the default is 1.  It specifies how much ADI version information, at the 
25934 ratio of 1:ADI block size, to modify. 
25936 @var{addr} is the address in user address space where you want @value{GDBN} 
25937 to begin modifying the ADI version tags. 
25939 @var{tag} is the new ADI version tag.
25941 For example, do the following to modify then verify ADI versions of 
25942 variable "shmaddr":
25944 @smallexample
25945 (@value{GDBP}) adi a/100 shmaddr = 7
25946 (@value{GDBP}) adi x/100 shmaddr
25947    0xfff800010002c000:     7 7
25948 @end smallexample
25950 @end table
25952 @node S12Z
25953 @subsection S12Z
25954 @cindex S12Z support
25956 When @value{GDBN} is debugging the S12Z architecture,
25957 it provides the following special command:
25959 @table @code
25960 @item maint info bdccsr
25961 @kindex maint info bdccsr@r{, S12Z}
25962 This command displays the current value of the microprocessor's
25963 BDCCSR register.
25964 @end table
25967 @node Controlling GDB
25968 @chapter Controlling @value{GDBN}
25970 You can alter the way @value{GDBN} interacts with you by using the
25971 @code{set} command.  For commands controlling how @value{GDBN} displays
25972 data, see @ref{Print Settings, ,Print Settings}.  Other settings are
25973 described here.
25975 @menu
25976 * Prompt::                      Prompt
25977 * Editing::                     Command editing
25978 * Command History::             Command history
25979 * Screen Size::                 Screen size
25980 * Output Styling::              Output styling
25981 * Numbers::                     Numbers
25982 * ABI::                         Configuring the current ABI
25983 * Auto-loading::                Automatically loading associated files
25984 * Messages/Warnings::           Optional warnings and messages
25985 * Debugging Output::            Optional messages about internal happenings
25986 * Other Misc Settings::         Other Miscellaneous Settings
25987 @end menu
25989 @node Prompt
25990 @section Prompt
25992 @cindex prompt
25994 @value{GDBN} indicates its readiness to read a command by printing a string
25995 called the @dfn{prompt}.  This string is normally @samp{(@value{GDBP})}.  You
25996 can change the prompt string with the @code{set prompt} command.  For
25997 instance, when debugging @value{GDBN} with @value{GDBN}, it is useful to change
25998 the prompt in one of the @value{GDBN} sessions so that you can always tell
25999 which one you are talking to.
26001 @emph{Note:}  @code{set prompt} does not add a space for you after the
26002 prompt you set.  This allows you to set a prompt which ends in a space
26003 or a prompt that does not.
26005 @table @code
26006 @kindex set prompt
26007 @item set prompt @var{newprompt}
26008 Directs @value{GDBN} to use @var{newprompt} as its prompt string henceforth.
26010 @kindex show prompt
26011 @item show prompt
26012 Prints a line of the form: @samp{Gdb's prompt is: @var{your-prompt}}
26013 @end table
26015 Versions of @value{GDBN} that ship with Python scripting enabled have
26016 prompt extensions.  The commands for interacting with these extensions
26017 are:
26019 @table @code
26020 @kindex set extended-prompt
26021 @item set extended-prompt @var{prompt}
26022 Set an extended prompt that allows for substitutions.
26023 @xref{gdb.prompt}, for a list of escape sequences that can be used for
26024 substitution.  Any escape sequences specified as part of the prompt
26025 string are replaced with the corresponding strings each time the prompt
26026 is displayed.
26028 For example:
26030 @smallexample
26031 set extended-prompt Current working directory: \w (gdb)
26032 @end smallexample
26034 Note that when an extended-prompt is set, it takes control of the
26035 @var{prompt_hook} hook.  @xref{prompt_hook}, for further information.
26037 @kindex show extended-prompt
26038 @item show extended-prompt
26039 Prints the extended prompt.  Any escape sequences specified as part of
26040 the prompt string with @code{set extended-prompt}, are replaced with the
26041 corresponding strings each time the prompt is displayed.
26042 @end table
26044 @node Editing
26045 @section Command Editing
26046 @cindex readline
26047 @cindex command line editing
26049 @value{GDBN} reads its input commands via the @dfn{Readline} interface.  This
26050 @sc{gnu} library provides consistent behavior for programs which provide a
26051 command line interface to the user.  Advantages are @sc{gnu} Emacs-style
26052 or @dfn{vi}-style inline editing of commands, @code{csh}-like history
26053 substitution, and a storage and recall of command history across
26054 debugging sessions.
26056 You may control the behavior of command line editing in @value{GDBN} with the
26057 command @code{set}.
26059 @table @code
26060 @kindex set editing
26061 @cindex editing
26062 @item set editing
26063 @itemx set editing on
26064 Enable command line editing (enabled by default).
26066 @item set editing off
26067 Disable command line editing.
26069 @kindex show editing
26070 @item show editing
26071 Show whether command line editing is enabled.
26072 @end table
26074 @ifset SYSTEM_READLINE
26075 @xref{Command Line Editing, , , rluserman, GNU Readline Library},
26076 @end ifset
26077 @ifclear SYSTEM_READLINE
26078 @xref{Command Line Editing},
26079 @end ifclear
26080 for more details about the Readline
26081 interface.  Users unfamiliar with @sc{gnu} Emacs or @code{vi} are
26082 encouraged to read that chapter.
26084 @cindex Readline application name
26085 @value{GDBN} sets the Readline application name to @samp{gdb}.  This
26086 is useful for conditions in @file{.inputrc}.
26088 @cindex operate-and-get-next
26089 @value{GDBN} defines a bindable Readline command,
26090 @code{operate-and-get-next}.  This is bound to @kbd{C-o} by default.
26091 This command accepts the current line for execution and fetches the
26092 next line relative to the current line from the history for editing.
26093 Any argument is ignored.
26095 @node Command History
26096 @section Command History
26097 @cindex command history
26099 @value{GDBN} can keep track of the commands you type during your
26100 debugging sessions, so that you can be certain of precisely what
26101 happened.  Use these commands to manage the @value{GDBN} command
26102 history facility.
26104 @value{GDBN} uses the @sc{gnu} History library, a part of the Readline
26105 package, to provide the history facility.
26106 @ifset SYSTEM_READLINE
26107 @xref{Using History Interactively, , , history, GNU History Library},
26108 @end ifset
26109 @ifclear SYSTEM_READLINE
26110 @xref{Using History Interactively},
26111 @end ifclear
26112 for the detailed description of the History library.
26114 To issue a command to @value{GDBN} without affecting certain aspects of
26115 the state which is seen by users, prefix it with @samp{server }
26116 (@pxref{Server Prefix}).  This
26117 means that this command will not affect the command history, nor will it
26118 affect @value{GDBN}'s notion of which command to repeat if @key{RET} is
26119 pressed on a line by itself.
26121 @cindex @code{server}, command prefix
26122 The server prefix does not affect the recording of values into the value
26123 history; to print a value without recording it into the value history,
26124 use the @code{output} command instead of the @code{print} command.
26126 Here is the description of @value{GDBN} commands related to command
26127 history.
26129 @table @code
26130 @cindex history substitution
26131 @cindex history file
26132 @kindex set history filename
26133 @cindex @env{GDBHISTFILE}, environment variable
26134 @item set history filename @r{[}@var{fname}@r{]}
26135 Set the name of the @value{GDBN} command history file to @var{fname}.
26136 This is the file where @value{GDBN} reads an initial command history
26137 list, and where it writes the command history from this session when it
26138 exits.  You can access this list through history expansion or through
26139 the history command editing characters listed below.  This file defaults
26140 to the value of the environment variable @env{GDBHISTFILE}, or to
26141 @file{./.gdb_history} (@file{./_gdb_history} on MS-DOS) if this variable
26142 is not set.
26144 The @env{GDBHISTFILE} environment variable is read after processing
26145 any @value{GDBN} initialization files (@pxref{Startup}) and after
26146 processing any commands passed using command line options (for
26147 example, @code{-ex}).
26149 If the @var{fname} argument is not given, or if the @env{GDBHISTFILE}
26150 is the empty string then @value{GDBN} will neither try to load an
26151 existing history file, nor will it try to save the history on exit.
26153 @cindex save command history
26154 @kindex set history save
26155 @item set history save
26156 @itemx set history save on
26157 Record command history in a file, whose name may be specified with the
26158 @code{set history filename} command.  By default, this option is
26159 disabled.  The command history will be recorded when @value{GDBN}
26160 exits.  If @code{set history filename} is set to the empty string then
26161 history saving is disabled, even when @code{set history save} is
26162 @code{on}.
26164 @item set history save off
26165 Don't record the command history into the file specified by @code{set
26166 history filename} when @value{GDBN} exits.
26168 @cindex history size
26169 @kindex set history size
26170 @cindex @env{GDBHISTSIZE}, environment variable
26171 @item set history size @var{size}
26172 @itemx set history size unlimited
26173 Set the number of commands which @value{GDBN} keeps in its history list.
26174 This defaults to the value of the environment variable @env{GDBHISTSIZE}, or
26175 to 256 if this variable is not set.  Non-numeric values of @env{GDBHISTSIZE}
26176 are ignored.  If @var{size} is @code{unlimited} or if @env{GDBHISTSIZE} is
26177 either a negative number or the empty string, then the number of commands
26178 @value{GDBN} keeps in the history list is unlimited.
26180 The @env{GDBHISTSIZE} environment variable is read after processing
26181 any @value{GDBN} initialization files (@pxref{Startup}) and after
26182 processing any commands passed using command line options (for
26183 example, @code{-ex}).
26185 @cindex remove duplicate history
26186 @kindex set history remove-duplicates
26187 @item set history remove-duplicates @var{count}
26188 @itemx set history remove-duplicates unlimited
26189 Control the removal of duplicate history entries in the command history list.
26190 If @var{count} is non-zero, @value{GDBN} will look back at the last @var{count}
26191 history entries and remove the first entry that is a duplicate of the current
26192 entry being added to the command history list.  If @var{count} is
26193 @code{unlimited} then this lookbehind is unbounded.  If @var{count} is 0, then
26194 removal of duplicate history entries is disabled.
26196 Only history entries added during the current session are considered for
26197 removal.  This option is set to 0 by default.
26199 @end table
26201 History expansion assigns special meaning to the character @kbd{!}.
26202 @ifset SYSTEM_READLINE
26203 @xref{Event Designators, , , history, GNU History Library},
26204 @end ifset
26205 @ifclear SYSTEM_READLINE
26206 @xref{Event Designators},
26207 @end ifclear
26208 for more details.
26210 @cindex history expansion, turn on/off
26211 Since @kbd{!} is also the logical not operator in C, history expansion
26212 is off by default. If you decide to enable history expansion with the
26213 @code{set history expansion on} command, you may sometimes need to
26214 follow @kbd{!} (when it is used as logical not, in an expression) with
26215 a space or a tab to prevent it from being expanded.  The readline
26216 history facilities do not attempt substitution on the strings
26217 @kbd{!=} and @kbd{!(}, even when history expansion is enabled.
26219 The commands to control history expansion are:
26221 @table @code
26222 @item set history expansion on
26223 @itemx set history expansion
26224 @kindex set history expansion
26225 Enable history expansion.  History expansion is off by default.
26227 @item set history expansion off
26228 Disable history expansion.
26230 @c @group
26231 @kindex show history
26232 @item show history
26233 @itemx show history filename
26234 @itemx show history save
26235 @itemx show history size
26236 @itemx show history expansion
26237 These commands display the state of the @value{GDBN} history parameters.
26238 @code{show history} by itself displays all four states.
26239 @c @end group
26240 @end table
26242 @table @code
26243 @kindex show commands
26244 @cindex show last commands
26245 @cindex display command history
26246 @item show commands
26247 Display the last ten commands in the command history.
26249 @item show commands @var{n}
26250 Print ten commands centered on command number @var{n}.
26252 @item show commands +
26253 Print ten commands just after the commands last printed.
26254 @end table
26256 @node Screen Size
26257 @section Screen Size
26258 @cindex size of screen
26259 @cindex screen size
26260 @cindex pagination
26261 @cindex page size
26262 @cindex pauses in output
26264 Certain commands to @value{GDBN} may produce large amounts of
26265 information output to the screen.  To help you read all of it,
26266 @value{GDBN} pauses and asks you for input at the end of each page of
26267 output.  Type @key{RET} when you want to see one more page of output,
26268 @kbd{q} to discard the remaining output, or @kbd{c} to continue
26269 without paging for the rest of the current command.  Also, the screen
26270 width setting determines when to wrap lines of output.  Depending on
26271 what is being printed, @value{GDBN} tries to break the line at a
26272 readable place, rather than simply letting it overflow onto the
26273 following line.
26275 Normally @value{GDBN} knows the size of the screen from the terminal
26276 driver software.  For example, on Unix @value{GDBN} uses the termcap data base
26277 together with the value of the @env{TERM} environment variable and the
26278 @code{stty rows} and @code{stty cols} settings.  If this is not correct,
26279 you can override it with the @code{set height} and @code{set
26280 width} commands:
26282 @table @code
26283 @kindex set height
26284 @kindex set width
26285 @kindex show width
26286 @kindex show height
26287 @item set height @var{lpp}
26288 @itemx set height unlimited
26289 @itemx show height
26290 @itemx set width @var{cpl}
26291 @itemx set width unlimited
26292 @itemx show width
26293 These @code{set} commands specify a screen height of @var{lpp} lines and
26294 a screen width of @var{cpl} characters.  The associated @code{show}
26295 commands display the current settings.
26297 If you specify a height of either @code{unlimited} or zero lines,
26298 @value{GDBN} does not pause during output no matter how long the
26299 output is.  This is useful if output is to a file or to an editor
26300 buffer.
26302 Likewise, you can specify @samp{set width unlimited} or @samp{set
26303 width 0} to prevent @value{GDBN} from wrapping its output.
26305 @item set pagination on
26306 @itemx set pagination off
26307 @kindex set pagination
26308 Turn the output pagination on or off; the default is on.  Turning
26309 pagination off is the alternative to @code{set height unlimited}.  Note that
26310 running @value{GDBN} with the @option{--batch} option (@pxref{Mode
26311 Options, -batch}) also automatically disables pagination.
26313 @item show pagination
26314 @kindex show pagination
26315 Show the current pagination mode.
26316 @end table
26318 @node Output Styling
26319 @section Output Styling
26320 @cindex styling
26321 @cindex colors
26323 @kindex set style
26324 @kindex show style
26325 @value{GDBN} can style its output on a capable terminal.  This is
26326 enabled by default on most systems, but disabled by default when in
26327 batch mode (@pxref{Mode Options}).  Various style settings are available;
26328 and styles can also be disabled entirely.
26330 @table @code
26331 @item set style enabled @samp{on|off}
26332 Enable or disable all styling.  The default is host-dependent, with
26333 most hosts defaulting to @samp{on}.
26335 @item show style enabled
26336 Show the current state of styling.
26338 @item set style sources @samp{on|off}
26339 Enable or disable source code styling.  This affects whether source
26340 code, such as the output of the @code{list} command, is styled.  The
26341 default is @samp{on}.  Note that source styling only works if styling
26342 in general is enabled, and if a source highlighting library is
26343 available to @value{GDBN}.
26345 There are two ways that highlighting can be done.  First, if
26346 @value{GDBN} was linked with the GNU Source Highlight library, then it
26347 is used.  Otherwise, if @value{GDBN} was configured with Python
26348 scripting support, and if the Python Pygments package is available,
26349 then it will be used.
26351 @item show style sources
26352 Show the current state of source code styling.
26354 @item set style disassembler enabled @samp{on|off}
26355 Enable or disable disassembler styling.  This affects whether
26356 disassembler output, such as the output of the @code{disassemble}
26357 command, is styled.  Disassembler styling only works if styling in
26358 general is enabled (with @code{set style enabled on}), and if a source
26359 highlighting library is available to @value{GDBN}.
26361 To highlight disassembler output, @value{GDBN} must be compiled with
26362 Python support, and the Python Pygments package must be available.  If
26363 these requirements are not met then @value{GDBN} will not highlight
26364 disassembler output, even when this option is @samp{on}.
26366 @item show style disassembler enabled
26367 Show the current state of disassembler styling.
26368 @end table
26370 Subcommands of @code{set style} control specific forms of styling.
26371 These subcommands all follow the same pattern: each style-able object
26372 can be styled with a foreground color, a background color, and an
26373 intensity.
26375 For example, the style of file names can be controlled using the
26376 @code{set style filename} group of commands:
26378 @table @code
26379 @item set style filename background @var{color}
26380 Set the background to @var{color}.  Valid colors are @samp{none}
26381 (meaning the terminal's default color), @samp{black}, @samp{red},
26382 @samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
26383 and@samp{white}.
26385 @item set style filename foreground @var{color}
26386 Set the foreground to @var{color}.  Valid colors are @samp{none}
26387 (meaning the terminal's default color), @samp{black}, @samp{red},
26388 @samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
26389 and@samp{white}.
26391 @item set style filename intensity @var{value}
26392 Set the intensity to @var{value}.  Valid intensities are @samp{normal}
26393 (the default), @samp{bold}, and @samp{dim}.
26394 @end table
26396 The @code{show style} command and its subcommands are styling
26397 a style name in their output using its own style.
26398 So, use @command{show style} to see the complete list of styles,
26399 their characteristics and the visual aspect of each style.
26401 The style-able objects are:
26402 @table @code
26403 @item filename
26404 Control the styling of file names and URLs.  By default, this style's
26405 foreground color is green.
26407 @item function
26408 Control the styling of function names.  These are managed with the
26409 @code{set style function} family of commands.  By default, this
26410 style's foreground color is yellow.
26412 @item variable
26413 Control the styling of variable names.  These are managed with the
26414 @code{set style variable} family of commands.  By default, this style's
26415 foreground color is cyan.
26417 @item address
26418 Control the styling of addresses.  These are managed with the
26419 @code{set style address} family of commands.  By default, this style's
26420 foreground color is blue.
26422 @item version
26423 Control the styling of @value{GDBN}'s version number text.  By
26424 default, this style's foreground color is magenta and it has bold
26425 intensity.  The version number is displayed in two places, the output
26426 of @command{show version}, and when @value{GDBN} starts up.
26428 In order to control how @value{GDBN} styles the version number at
26429 startup, add the @code{set style version} family of commands to the
26430 early initialization command file (@pxref{Initialization
26431 Files}).
26433 @item title
26434 Control the styling of titles.  These are managed with the
26435 @code{set style title} family of commands.  By default, this style's
26436 intensity is bold.  Commands are using the title style to improve
26437 the readability of large output.  For example, the commands
26438 @command{apropos} and @command{help} are using the title style
26439 for the command names.
26441 @item highlight
26442 Control the styling of highlightings.  These are managed with the
26443 @code{set style highlight} family of commands.  By default, this style's
26444 foreground color is red.  Commands are using the highlight style to draw
26445 the user attention to some specific parts of their output.  For example,
26446 the command @command{apropos -v REGEXP} uses the highlight style to
26447 mark the documentation parts matching @var{regexp}.
26449 @item metadata
26450 Control the styling of data annotations added by @value{GDBN} to data
26451 it displays.  By default, this style's intensity is dim.  Metadata
26452 annotations include the @samp{repeats @var{n} times} annotation for
26453 suppressed display of repeated array elements (@pxref{Print Settings}),
26454 @samp{<unavailable>} and @w{@samp{<error @var{descr}>}} annotations
26455 for errors and @samp{<optimized-out>} annotations for optimized-out
26456 values in displaying stack frame information in backtraces
26457 (@pxref{Backtrace}), etc.
26459 @item tui-border
26460 Control the styling of the TUI border.  Note that, unlike other
26461 styling options, only the color of the border can be controlled via
26462 @code{set style}.  This was done for compatibility reasons, as TUI
26463 controls to set the border's intensity predated the addition of
26464 general styling to @value{GDBN}.  @xref{TUI Configuration}.
26466 @item tui-active-border
26467 Control the styling of the active TUI border; that is, the TUI window
26468 that has the focus.
26470 @end table
26472 @node Numbers
26473 @section Numbers
26474 @cindex number representation
26475 @cindex entering numbers
26477 You can always enter numbers in octal, decimal, or hexadecimal in
26478 @value{GDBN} by the usual conventions: octal numbers begin with
26479 @samp{0}, decimal numbers end with @samp{.}, and hexadecimal numbers
26480 begin with @samp{0x}.  Numbers that neither begin with @samp{0} or
26481 @samp{0x}, nor end with a @samp{.} are, by default, entered in base
26482 10; likewise, the default display for numbers---when no particular
26483 format is specified---is base 10.  You can change the default base for
26484 both input and output with the commands described below.
26486 @table @code
26487 @kindex set input-radix
26488 @item set input-radix @var{base}
26489 Set the default base for numeric input.  Supported choices
26490 for @var{base} are decimal 8, 10, or 16.  The base must itself be
26491 specified either unambiguously or using the current input radix; for
26492 example, any of
26494 @smallexample
26495 set input-radix 012
26496 set input-radix 10.
26497 set input-radix 0xa
26498 @end smallexample
26500 @noindent
26501 sets the input base to decimal.  On the other hand, @samp{set input-radix 10}
26502 leaves the input radix unchanged, no matter what it was, since
26503 @samp{10}, being without any leading or trailing signs of its base, is
26504 interpreted in the current radix.  Thus, if the current radix is 16,
26505 @samp{10} is interpreted in hex, i.e.@: as 16 decimal, which doesn't
26506 change the radix.
26508 @kindex set output-radix
26509 @item set output-radix @var{base}
26510 Set the default base for numeric display.  Supported choices
26511 for @var{base} are decimal 8, 10, or 16.  The base must itself be
26512 specified either unambiguously or using the current input radix.
26514 @kindex show input-radix
26515 @item show input-radix
26516 Display the current default base for numeric input.
26518 @kindex show output-radix
26519 @item show output-radix
26520 Display the current default base for numeric display.
26522 @item set radix @r{[}@var{base}@r{]}
26523 @itemx show radix
26524 @kindex set radix
26525 @kindex show radix
26526 These commands set and show the default base for both input and output
26527 of numbers.  @code{set radix} sets the radix of input and output to
26528 the same base; without an argument, it resets the radix back to its
26529 default value of 10.
26531 @end table
26533 @node ABI
26534 @section Configuring the Current ABI
26536 @value{GDBN} can determine the @dfn{ABI} (Application Binary Interface) of your
26537 application automatically.  However, sometimes you need to override its
26538 conclusions.  Use these commands to manage @value{GDBN}'s view of the
26539 current ABI.
26541 @cindex OS ABI
26542 @kindex set osabi
26543 @kindex show osabi
26544 @cindex Newlib OS ABI and its influence on the longjmp handling
26546 One @value{GDBN} configuration can debug binaries for multiple operating
26547 system targets, either via remote debugging or native emulation.
26548 @value{GDBN} will autodetect the @dfn{OS ABI} (Operating System ABI) in use,
26549 but you can override its conclusion using the @code{set osabi} command.
26550 One example where this is useful is in debugging of binaries which use
26551 an alternate C library (e.g.@: @sc{uClibc} for @sc{gnu}/Linux) which does
26552 not have the same identifying marks that the standard C library for your
26553 platform provides.
26555 When @value{GDBN} is debugging the AArch64 architecture, it provides a
26556 ``Newlib'' OS ABI.  This is useful for handling @code{setjmp} and
26557 @code{longjmp} when debugging binaries that use the @sc{newlib} C library.
26558 The ``Newlib'' OS ABI can be selected by @code{set osabi Newlib}.
26560 @table @code
26561 @item show osabi
26562 Show the OS ABI currently in use.
26564 @item set osabi
26565 With no argument, show the list of registered available OS ABI's.
26567 @item set osabi @var{abi}
26568 Set the current OS ABI to @var{abi}.
26569 @end table
26571 @cindex float promotion
26573 Generally, the way that an argument of type @code{float} is passed to a
26574 function depends on whether the function is prototyped.  For a prototyped
26575 (i.e.@: ANSI/ISO style) function, @code{float} arguments are passed unchanged,
26576 according to the architecture's convention for @code{float}.  For unprototyped
26577 (i.e.@: K&R style) functions, @code{float} arguments are first promoted to type
26578 @code{double} and then passed.
26580 Unfortunately, some forms of debug information do not reliably indicate whether
26581 a function is prototyped.  If @value{GDBN} calls a function that is not marked
26582 as prototyped, it consults @kbd{set coerce-float-to-double}.
26584 @table @code
26585 @kindex set coerce-float-to-double
26586 @item set coerce-float-to-double
26587 @itemx set coerce-float-to-double on
26588 Arguments of type @code{float} will be promoted to @code{double} when passed
26589 to an unprototyped function.  This is the default setting.
26591 @item set coerce-float-to-double off
26592 Arguments of type @code{float} will be passed directly to unprototyped
26593 functions.
26595 @kindex show coerce-float-to-double
26596 @item show coerce-float-to-double
26597 Show the current setting of promoting @code{float} to @code{double}.
26598 @end table
26600 @kindex set cp-abi
26601 @kindex show cp-abi
26602 @value{GDBN} needs to know the ABI used for your program's C@t{++}
26603 objects.  The correct C@t{++} ABI depends on which C@t{++} compiler was
26604 used to build your application.  @value{GDBN} only fully supports
26605 programs with a single C@t{++} ABI; if your program contains code using
26606 multiple C@t{++} ABI's or if @value{GDBN} can not identify your
26607 program's ABI correctly, you can tell @value{GDBN} which ABI to use.
26608 Currently supported ABI's include ``gnu-v2'', for @code{g++} versions
26609 before 3.0, ``gnu-v3'', for @code{g++} versions 3.0 and later, and
26610 ``hpaCC'' for the HP ANSI C@t{++} compiler.  Other C@t{++} compilers may
26611 use the ``gnu-v2'' or ``gnu-v3'' ABI's as well.  The default setting is
26612 ``auto''.
26614 @table @code
26615 @item show cp-abi
26616 Show the C@t{++} ABI currently in use.
26618 @item set cp-abi
26619 With no argument, show the list of supported C@t{++} ABI's.
26621 @item set cp-abi @var{abi}
26622 @itemx set cp-abi auto
26623 Set the current C@t{++} ABI to @var{abi}, or return to automatic detection.
26624 @end table
26626 @node Auto-loading
26627 @section Automatically loading associated files
26628 @cindex auto-loading
26630 @value{GDBN} sometimes reads files with commands and settings automatically,
26631 without being explicitly told so by the user.  We call this feature
26632 @dfn{auto-loading}.  While auto-loading is useful for automatically adapting
26633 @value{GDBN} to the needs of your project, it can sometimes produce unexpected
26634 results or introduce security risks (e.g., if the file comes from untrusted
26635 sources).
26637 There are various kinds of files @value{GDBN} can automatically load.
26638 In addition to these files, @value{GDBN} supports auto-loading code written
26639 in various extension languages.  @xref{Auto-loading extensions}.
26641 Note that loading of these associated files (including the local @file{.gdbinit}
26642 file) requires accordingly configured @code{auto-load safe-path}
26643 (@pxref{Auto-loading safe path}).
26645 For these reasons, @value{GDBN} includes commands and options to let you
26646 control when to auto-load files and which files should be auto-loaded.
26648 @table @code
26649 @anchor{set auto-load off}
26650 @kindex set auto-load off
26651 @item set auto-load off
26652 Globally disable loading of all auto-loaded files.
26653 You may want to use this command with the @samp{-iex} option
26654 (@pxref{Option -init-eval-command}) such as:
26655 @smallexample
26656 $ @kbd{gdb -iex "set auto-load off" untrusted-executable corefile}
26657 @end smallexample
26659 Be aware that system init file (@pxref{System-wide configuration})
26660 and init files from your home directory (@pxref{Home Directory Init File})
26661 still get read (as they come from generally trusted directories).
26662 To prevent @value{GDBN} from auto-loading even those init files, use the
26663 @option{-nx} option (@pxref{Mode Options}), in addition to
26664 @code{set auto-load no}.
26666 @anchor{show auto-load}
26667 @kindex show auto-load
26668 @item show auto-load
26669 Show whether auto-loading of each specific @samp{auto-load} file(s) is enabled
26670 or disabled.
26672 @smallexample
26673 (gdb) show auto-load
26674 gdb-scripts:  Auto-loading of canned sequences of commands scripts is on.
26675 libthread-db:  Auto-loading of inferior specific libthread_db is on.
26676 local-gdbinit:  Auto-loading of .gdbinit script from current directory
26677                 is on.
26678 python-scripts:  Auto-loading of Python scripts is on.
26679 safe-path:  List of directories from which it is safe to auto-load files
26680             is $debugdir:$datadir/auto-load.
26681 scripts-directory:  List of directories from which to load auto-loaded scripts
26682                     is $debugdir:$datadir/auto-load.
26683 @end smallexample
26685 @anchor{info auto-load}
26686 @kindex info auto-load
26687 @item info auto-load
26688 Print whether each specific @samp{auto-load} file(s) have been auto-loaded or
26689 not.
26691 @smallexample
26692 (gdb) info auto-load
26693 gdb-scripts:
26694 Loaded  Script
26695 Yes     /home/user/gdb/gdb-gdb.gdb
26696 libthread-db:  No auto-loaded libthread-db.
26697 local-gdbinit:  Local .gdbinit file "/home/user/gdb/.gdbinit" has been
26698                 loaded.
26699 python-scripts:
26700 Loaded  Script
26701 Yes     /home/user/gdb/gdb-gdb.py
26702 @end smallexample
26703 @end table
26705 These are @value{GDBN} control commands for the auto-loading:
26707 @multitable @columnfractions .5 .5
26708 @item @xref{set auto-load off}.
26709 @tab Disable auto-loading globally.
26710 @item @xref{show auto-load}.
26711 @tab Show setting of all kinds of files.
26712 @item @xref{info auto-load}.
26713 @tab Show state of all kinds of files.
26714 @item @xref{set auto-load gdb-scripts}.
26715 @tab Control for @value{GDBN} command scripts.
26716 @item @xref{show auto-load gdb-scripts}.
26717 @tab Show setting of @value{GDBN} command scripts.
26718 @item @xref{info auto-load gdb-scripts}.
26719 @tab Show state of @value{GDBN} command scripts.
26720 @item @xref{set auto-load python-scripts}.
26721 @tab Control for @value{GDBN} Python scripts.
26722 @item @xref{show auto-load python-scripts}.
26723 @tab Show setting of @value{GDBN} Python scripts.
26724 @item @xref{info auto-load python-scripts}.
26725 @tab Show state of @value{GDBN} Python scripts.
26726 @item @xref{set auto-load guile-scripts}.
26727 @tab Control for @value{GDBN} Guile scripts.
26728 @item @xref{show auto-load guile-scripts}.
26729 @tab Show setting of @value{GDBN} Guile scripts.
26730 @item @xref{info auto-load guile-scripts}.
26731 @tab Show state of @value{GDBN} Guile scripts.
26732 @item @xref{set auto-load scripts-directory}.
26733 @tab Control for @value{GDBN} auto-loaded scripts location.
26734 @item @xref{show auto-load scripts-directory}.
26735 @tab Show @value{GDBN} auto-loaded scripts location.
26736 @item @xref{add-auto-load-scripts-directory}.
26737 @tab Add directory for auto-loaded scripts location list.
26738 @item @xref{set auto-load local-gdbinit}.
26739 @tab Control for init file in the current directory.
26740 @item @xref{show auto-load local-gdbinit}.
26741 @tab Show setting of init file in the current directory.
26742 @item @xref{info auto-load local-gdbinit}.
26743 @tab Show state of init file in the current directory.
26744 @item @xref{set auto-load libthread-db}.
26745 @tab Control for thread debugging library.
26746 @item @xref{show auto-load libthread-db}.
26747 @tab Show setting of thread debugging library.
26748 @item @xref{info auto-load libthread-db}.
26749 @tab Show state of thread debugging library.
26750 @item @xref{set auto-load safe-path}.
26751 @tab Control directories trusted for automatic loading.
26752 @item @xref{show auto-load safe-path}.
26753 @tab Show directories trusted for automatic loading.
26754 @item @xref{add-auto-load-safe-path}.
26755 @tab Add directory trusted for automatic loading.
26756 @end multitable
26758 @menu
26759 * Init File in the Current Directory:: @samp{set/show/info auto-load local-gdbinit}
26760 * libthread_db.so.1 file::             @samp{set/show/info auto-load libthread-db}
26762 * Auto-loading safe path::             @samp{set/show/info auto-load safe-path}
26763 * Auto-loading verbose mode::          @samp{set/show debug auto-load}
26764 @end menu
26766 @node Init File in the Current Directory
26767 @subsection Automatically loading init file in the current directory
26768 @cindex auto-loading init file in the current directory
26770 By default, @value{GDBN} reads and executes the canned sequences of commands
26771 from init file (if any) in the current working directory,
26772 see @ref{Init File in the Current Directory during Startup}.
26774 Note that loading of this local @file{.gdbinit} file also requires accordingly
26775 configured @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26777 @table @code
26778 @anchor{set auto-load local-gdbinit}
26779 @kindex set auto-load local-gdbinit
26780 @item set auto-load local-gdbinit [on|off]
26781 Enable or disable the auto-loading of canned sequences of commands
26782 (@pxref{Sequences}) found in init file in the current directory.
26784 @anchor{show auto-load local-gdbinit}
26785 @kindex show auto-load local-gdbinit
26786 @item show auto-load local-gdbinit
26787 Show whether auto-loading of canned sequences of commands from init file in the
26788 current directory is enabled or disabled.
26790 @anchor{info auto-load local-gdbinit}
26791 @kindex info auto-load local-gdbinit
26792 @item info auto-load local-gdbinit
26793 Print whether canned sequences of commands from init file in the
26794 current directory have been auto-loaded.
26795 @end table
26797 @node libthread_db.so.1 file
26798 @subsection Automatically loading thread debugging library
26799 @cindex auto-loading libthread_db.so.1
26801 This feature is currently present only on @sc{gnu}/Linux native hosts.
26803 @value{GDBN} reads in some cases thread debugging library from places specific
26804 to the inferior (@pxref{set libthread-db-search-path}).
26806 The special @samp{libthread-db-search-path} entry @samp{$sdir} is processed
26807 without checking this @samp{set auto-load libthread-db} switch as system
26808 libraries have to be trusted in general.  In all other cases of
26809 @samp{libthread-db-search-path} entries @value{GDBN} checks first if @samp{set
26810 auto-load libthread-db} is enabled before trying to open such thread debugging
26811 library.
26813 Note that loading of this debugging library also requires accordingly configured
26814 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26816 @table @code
26817 @anchor{set auto-load libthread-db}
26818 @kindex set auto-load libthread-db
26819 @item set auto-load libthread-db [on|off]
26820 Enable or disable the auto-loading of inferior specific thread debugging library.
26822 @anchor{show auto-load libthread-db}
26823 @kindex show auto-load libthread-db
26824 @item show auto-load libthread-db
26825 Show whether auto-loading of inferior specific thread debugging library is
26826 enabled or disabled.
26828 @anchor{info auto-load libthread-db}
26829 @kindex info auto-load libthread-db
26830 @item info auto-load libthread-db
26831 Print the list of all loaded inferior specific thread debugging libraries and
26832 for each such library print list of inferior @var{pid}s using it.
26833 @end table
26835 @node Auto-loading safe path
26836 @subsection Security restriction for auto-loading
26837 @cindex auto-loading safe-path
26839 As the files of inferior can come from untrusted source (such as submitted by
26840 an application user) @value{GDBN} does not always load any files automatically.
26841 @value{GDBN} provides the @samp{set auto-load safe-path} setting to list
26842 directories trusted for loading files not explicitly requested by user.
26843 Each directory can also be a shell wildcard pattern.
26845 If the path is not set properly you will see a warning and the file will not
26846 get loaded:
26848 @smallexample
26849 $ ./gdb -q ./gdb
26850 Reading symbols from /home/user/gdb/gdb...
26851 warning: File "/home/user/gdb/gdb-gdb.gdb" auto-loading has been
26852          declined by your `auto-load safe-path' set
26853          to "$debugdir:$datadir/auto-load".
26854 warning: File "/home/user/gdb/gdb-gdb.py" auto-loading has been
26855          declined by your `auto-load safe-path' set
26856          to "$debugdir:$datadir/auto-load".
26857 @end smallexample
26859 @noindent
26860 To instruct @value{GDBN} to go ahead and use the init files anyway,
26861 invoke @value{GDBN} like this:
26863 @smallexample
26864 $ gdb -q -iex "set auto-load safe-path /home/user/gdb" ./gdb
26865 @end smallexample
26867 The list of trusted directories is controlled by the following commands:
26869 @table @code
26870 @anchor{set auto-load safe-path}
26871 @kindex set auto-load safe-path
26872 @item set auto-load safe-path @r{[}@var{directories}@r{]}
26873 Set the list of directories (and their subdirectories) trusted for automatic
26874 loading and execution of scripts.  You can also enter a specific trusted file.
26875 Each directory can also be a shell wildcard pattern; wildcards do not match
26876 directory separator - see @code{FNM_PATHNAME} for system function @code{fnmatch}
26877 (@pxref{Wildcard Matching, fnmatch, , libc, GNU C Library Reference Manual}).
26878 If you omit @var{directories}, @samp{auto-load safe-path} will be reset to
26879 its default value as specified during @value{GDBN} compilation.
26881 The list of directories uses path separator (@samp{:} on GNU and Unix
26882 systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
26883 to the @env{PATH} environment variable.
26885 @anchor{show auto-load safe-path}
26886 @kindex show auto-load safe-path
26887 @item show auto-load safe-path
26888 Show the list of directories trusted for automatic loading and execution of
26889 scripts.
26891 @anchor{add-auto-load-safe-path}
26892 @kindex add-auto-load-safe-path
26893 @item add-auto-load-safe-path
26894 Add an entry (or list of entries) to the list of directories trusted for
26895 automatic loading and execution of scripts.  Multiple entries may be delimited
26896 by the host platform path separator in use.
26897 @end table
26899 This variable defaults to what @code{--with-auto-load-dir} has been configured
26900 to (@pxref{with-auto-load-dir}).  @file{$debugdir} and @file{$datadir}
26901 substitution applies the same as for @ref{set auto-load scripts-directory}.
26902 The default @code{set auto-load safe-path} value can be also overriden by
26903 @value{GDBN} configuration option @option{--with-auto-load-safe-path}.
26905 Setting this variable to @file{/} disables this security protection,
26906 corresponding @value{GDBN} configuration option is
26907 @option{--without-auto-load-safe-path}.
26908 This variable is supposed to be set to the system directories writable by the
26909 system superuser only.  Users can add their source directories in init files in
26910 their home directories (@pxref{Home Directory Init File}).  See also deprecated
26911 init file in the current directory
26912 (@pxref{Init File in the Current Directory during Startup}).
26914 To force @value{GDBN} to load the files it declined to load in the previous
26915 example, you could use one of the following ways:
26917 @table @asis
26918 @item @file{~/.gdbinit}: @samp{add-auto-load-safe-path ~/src/gdb}
26919 Specify this trusted directory (or a file) as additional component of the list.
26920 You have to specify also any existing directories displayed by
26921 by @samp{show auto-load safe-path} (such as @samp{/usr:/bin} in this example).
26923 @item @kbd{gdb -iex "set auto-load safe-path /usr:/bin:~/src/gdb" @dots{}}
26924 Specify this directory as in the previous case but just for a single
26925 @value{GDBN} session.
26927 @item @kbd{gdb -iex "set auto-load safe-path /" @dots{}}
26928 Disable auto-loading safety for a single @value{GDBN} session.
26929 This assumes all the files you debug during this @value{GDBN} session will come
26930 from trusted sources.
26932 @item @kbd{./configure --without-auto-load-safe-path}
26933 During compilation of @value{GDBN} you may disable any auto-loading safety.
26934 This assumes all the files you will ever debug with this @value{GDBN} come from
26935 trusted sources.
26936 @end table
26938 On the other hand you can also explicitly forbid automatic files loading which
26939 also suppresses any such warning messages:
26941 @table @asis
26942 @item @kbd{gdb -iex "set auto-load no" @dots{}}
26943 You can use @value{GDBN} command-line option for a single @value{GDBN} session.
26945 @item @file{~/.gdbinit}: @samp{set auto-load no}
26946 Disable auto-loading globally for the user
26947 (@pxref{Home Directory Init File}).  While it is improbable, you could also
26948 use system init file instead (@pxref{System-wide configuration}).
26949 @end table
26951 This setting applies to the file names as entered by user.  If no entry matches
26952 @value{GDBN} tries as a last resort to also resolve all the file names into
26953 their canonical form (typically resolving symbolic links) and compare the
26954 entries again.  @value{GDBN} already canonicalizes most of the filenames on its
26955 own before starting the comparison so a canonical form of directories is
26956 recommended to be entered.
26958 @node Auto-loading verbose mode
26959 @subsection Displaying files tried for auto-load
26960 @cindex auto-loading verbose mode
26962 For better visibility of all the file locations where you can place scripts to
26963 be auto-loaded with inferior --- or to protect yourself against accidental
26964 execution of untrusted scripts --- @value{GDBN} provides a feature for printing
26965 all the files attempted to be loaded.  Both existing and non-existing files may
26966 be printed.
26968 For example the list of directories from which it is safe to auto-load files
26969 (@pxref{Auto-loading safe path}) applies also to canonicalized filenames which
26970 may not be too obvious while setting it up.
26972 @smallexample
26973 (gdb) set debug auto-load on
26974 (gdb) file ~/src/t/true
26975 auto-load: Loading canned sequences of commands script "/tmp/true-gdb.gdb"
26976            for objfile "/tmp/true".
26977 auto-load: Updating directories of "/usr:/opt".
26978 auto-load: Using directory "/usr".
26979 auto-load: Using directory "/opt".
26980 warning: File "/tmp/true-gdb.gdb" auto-loading has been declined
26981          by your `auto-load safe-path' set to "/usr:/opt".
26982 @end smallexample
26984 @table @code
26985 @anchor{set debug auto-load}
26986 @kindex set debug auto-load
26987 @item set debug auto-load [on|off]
26988 Set whether to print the filenames attempted to be auto-loaded.
26990 @anchor{show debug auto-load}
26991 @kindex show debug auto-load
26992 @item show debug auto-load
26993 Show whether printing of the filenames attempted to be auto-loaded is turned
26994 on or off.
26995 @end table
26997 @node Messages/Warnings
26998 @section Optional Warnings and Messages
27000 @cindex verbose operation
27001 @cindex optional warnings
27002 By default, @value{GDBN} is silent about its inner workings.  If you are
27003 running on a slow machine, you may want to use the @code{set verbose}
27004 command.  This makes @value{GDBN} tell you when it does a lengthy
27005 internal operation, so you will not think it has crashed.
27007 Currently, the messages controlled by @code{set verbose} are those
27008 which announce that the symbol table for a source file is being read;
27009 see @code{symbol-file} in @ref{Files, ,Commands to Specify Files}.
27011 @table @code
27012 @kindex set verbose
27013 @item set verbose on
27014 Enables @value{GDBN} output of certain informational messages.
27016 @item set verbose off
27017 Disables @value{GDBN} output of certain informational messages.
27019 @kindex show verbose
27020 @item show verbose
27021 Displays whether @code{set verbose} is on or off.
27022 @end table
27024 By default, if @value{GDBN} encounters bugs in the symbol table of an
27025 object file, it is silent; but if you are debugging a compiler, you may
27026 find this information useful (@pxref{Symbol Errors, ,Errors Reading
27027 Symbol Files}).
27029 @table @code
27031 @kindex set complaints
27032 @item set complaints @var{limit}
27033 Permits @value{GDBN} to output @var{limit} complaints about each type of
27034 unusual symbols before becoming silent about the problem.  Set
27035 @var{limit} to zero to suppress all complaints; set it to a large number
27036 to prevent complaints from being suppressed.
27038 @kindex show complaints
27039 @item show complaints
27040 Displays how many symbol complaints @value{GDBN} is permitted to produce.
27042 @end table
27044 @anchor{confirmation requests}
27045 By default, @value{GDBN} is cautious, and asks what sometimes seems to be a
27046 lot of stupid questions to confirm certain commands.  For example, if
27047 you try to run a program which is already running:
27049 @smallexample
27050 (@value{GDBP}) run
27051 The program being debugged has been started already.
27052 Start it from the beginning? (y or n)
27053 @end smallexample
27055 If you are willing to unflinchingly face the consequences of your own
27056 commands, you can disable this ``feature'':
27058 @table @code
27060 @kindex set confirm
27061 @cindex flinching
27062 @cindex confirmation
27063 @cindex stupid questions
27064 @item set confirm off
27065 Disables confirmation requests.  Note that running @value{GDBN} with
27066 the @option{--batch} option (@pxref{Mode Options, -batch}) also
27067 automatically disables confirmation requests.
27069 @item set confirm on
27070 Enables confirmation requests (the default).
27072 @kindex show confirm
27073 @item show confirm
27074 Displays state of confirmation requests.
27076 @end table
27078 @cindex command tracing
27079 If you need to debug user-defined commands or sourced files you may find it
27080 useful to enable @dfn{command tracing}.  In this mode each command will be
27081 printed as it is executed, prefixed with one or more @samp{+} symbols, the
27082 quantity denoting the call depth of each command.
27084 @table @code
27085 @kindex set trace-commands
27086 @cindex command scripts, debugging
27087 @item set trace-commands on
27088 Enable command tracing.
27089 @item set trace-commands off
27090 Disable command tracing.
27091 @item show trace-commands
27092 Display the current state of command tracing.
27093 @end table
27095 @node Debugging Output
27096 @section Optional Messages about Internal Happenings
27097 @cindex optional debugging messages
27099 @value{GDBN} has commands that enable optional debugging messages from
27100 various @value{GDBN} subsystems; normally these commands are of
27101 interest to @value{GDBN} maintainers, or when reporting a bug.  This
27102 section documents those commands.
27104 @table @code
27105 @kindex set exec-done-display
27106 @item set exec-done-display
27107 Turns on or off the notification of asynchronous commands'
27108 completion.  When on, @value{GDBN} will print a message when an
27109 asynchronous command finishes its execution.  The default is off.
27110 @kindex show exec-done-display
27111 @item show exec-done-display
27112 Displays the current setting of asynchronous command completion
27113 notification.
27115 @kindex set debug
27116 @cindex ARM AArch64
27117 @item set debug aarch64
27118 Turns on or off display of debugging messages related to ARM AArch64.
27119 The default is off.
27120 @kindex show debug
27121 @item show debug aarch64
27122 Displays the current state of displaying debugging messages related to
27123 ARM AArch64.
27125 @cindex gdbarch debugging info
27126 @cindex architecture debugging info
27127 @item set debug arch
27128 Turns on or off display of gdbarch debugging info.  The default is off
27129 @item show debug arch
27130 Displays the current state of displaying gdbarch debugging info.
27132 @item set debug aix-solib
27133 @cindex AIX shared library debugging
27134 Control display of debugging messages from the AIX shared library
27135 support module.  The default is off.
27136 @item show debug aix-solib
27137 Show the current state of displaying AIX shared library debugging messages.
27139 @item set debug aix-thread
27140 @cindex AIX threads
27141 Display debugging messages about inner workings of the AIX thread
27142 module.
27143 @item show debug aix-thread
27144 Show the current state of AIX thread debugging info display.
27146 @item set debug check-physname
27147 @cindex physname
27148 Check the results of the ``physname'' computation.  When reading DWARF
27149 debugging information for C@t{++}, @value{GDBN} attempts to compute
27150 each entity's name.  @value{GDBN} can do this computation in two
27151 different ways, depending on exactly what information is present.
27152 When enabled, this setting causes @value{GDBN} to compute the names
27153 both ways and display any discrepancies.
27154 @item show debug check-physname
27155 Show the current state of ``physname'' checking.
27157 @item set debug coff-pe-read
27158 @cindex COFF/PE exported symbols
27159 Control display of debugging messages related to reading of COFF/PE
27160 exported symbols.  The default is off.
27161 @item show debug coff-pe-read
27162 Displays the current state of displaying debugging messages related to
27163 reading of COFF/PE exported symbols.
27165 @item set debug dwarf-die
27166 @cindex DWARF DIEs
27167 Dump DWARF DIEs after they are read in.
27168 The value is the number of nesting levels to print.
27169 A value of zero turns off the display.
27170 @item show debug dwarf-die
27171 Show the current state of DWARF DIE debugging.
27173 @item set debug dwarf-line
27174 @cindex DWARF Line Tables
27175 Turns on or off display of debugging messages related to reading
27176 DWARF line tables.  The default is 0 (off).
27177 A value of 1 provides basic information.
27178 A value greater than 1 provides more verbose information.
27179 @item show debug dwarf-line
27180 Show the current state of DWARF line table debugging.
27182 @item set debug dwarf-read
27183 @cindex DWARF Reading
27184 Turns on or off display of debugging messages related to reading
27185 DWARF debug info.  The default is 0 (off).
27186 A value of 1 provides basic information.
27187 A value greater than 1 provides more verbose information.
27188 @item show debug dwarf-read
27189 Show the current state of DWARF reader debugging.
27191 @item set debug displaced
27192 @cindex displaced stepping debugging info
27193 Turns on or off display of @value{GDBN} debugging info for the
27194 displaced stepping support.  The default is off.
27195 @item show debug displaced
27196 Displays the current state of displaying @value{GDBN} debugging info
27197 related to displaced stepping.
27199 @item set debug event
27200 @cindex event debugging info
27201 Turns on or off display of @value{GDBN} event debugging info.  The
27202 default is off.
27203 @item show debug event
27204 Displays the current state of displaying @value{GDBN} event debugging
27205 info.
27207 @item set debug event-loop
27208 @cindex event-loop debugging
27209 Controls output of debugging info about the event loop.  The possible
27210 values are @samp{off}, @samp{all} (shows all debugging info) and
27211 @samp{all-except-ui} (shows all debugging info except those about
27212 UI-related events).
27213 @item show debug event-loop
27214 Shows the current state of displaying debugging info about the event
27215 loop.
27217 @item set debug expression
27218 @cindex expression debugging info
27219 Turns on or off display of debugging info about @value{GDBN}
27220 expression parsing.  The default is off.
27221 @item show debug expression
27222 Displays the current state of displaying debugging info about
27223 @value{GDBN} expression parsing.
27225 @item set debug fbsd-lwp
27226 @cindex FreeBSD LWP debug messages
27227 Turns on or off debugging messages from the FreeBSD LWP debug support.
27228 @item show debug fbsd-lwp
27229 Show the current state of FreeBSD LWP debugging messages.
27231 @item set debug fbsd-nat
27232 @cindex FreeBSD native target debug messages
27233 Turns on or off debugging messages from the FreeBSD native target.
27234 @item show debug fbsd-nat
27235 Show the current state of FreeBSD native target debugging messages.
27237 @item set debug fortran-array-slicing
27238 @cindex fortran array slicing debugging info
27239 Turns on or off display of @value{GDBN} Fortran array slicing
27240 debugging info.  The default is off.
27242 @item show debug fortran-array-slicing
27243 Displays the current state of displaying @value{GDBN} Fortran array
27244 slicing debugging info.
27246 @item set debug frame
27247 @cindex frame debugging info
27248 Turns on or off display of @value{GDBN} frame debugging info.  The
27249 default is off.
27250 @item show debug frame
27251 Displays the current state of displaying @value{GDBN} frame debugging
27252 info.
27254 @item set debug gnu-nat
27255 @cindex @sc{gnu}/Hurd debug messages
27256 Turn on or off debugging messages from the @sc{gnu}/Hurd debug support.
27257 @item show debug gnu-nat
27258 Show the current state of @sc{gnu}/Hurd debugging messages.
27260 @item set debug infrun
27261 @cindex inferior debugging info
27262 Turns on or off display of @value{GDBN} debugging info for running the inferior.
27263 The default is off.  @file{infrun.c} contains GDB's runtime state machine used 
27264 for implementing operations such as single-stepping the inferior.
27265 @item show debug infrun
27266 Displays the current state of @value{GDBN} inferior debugging.
27268 @item set debug jit
27269 @cindex just-in-time compilation, debugging messages
27270 Turn on or off debugging messages from JIT debug support.
27271 @item show debug jit
27272 Displays the current state of @value{GDBN} JIT debugging.
27274 @item set debug linux-nat @r{[}on@r{|}off@r{]}
27275 @cindex @sc{gnu}/Linux native target debug messages
27276 @cindex Linux native targets
27277 Turn on or off debugging messages from the Linux native target debug support.
27278 @item show debug linux-nat
27279 Show the current state of Linux native target debugging messages.
27281 @item set debug linux-namespaces
27282 @cindex @sc{gnu}/Linux namespaces debug messages
27283 Turn on or off debugging messages from the Linux namespaces debug support.
27284 @item show debug linux-namespaces
27285 Show the current state of Linux namespaces debugging messages.
27287 @item set debug mach-o
27288 @cindex Mach-O symbols processing
27289 Control display of debugging messages related to Mach-O symbols
27290 processing.  The default is off.
27291 @item show debug mach-o
27292 Displays the current state of displaying debugging messages related to
27293 reading of COFF/PE exported symbols.
27295 @item set debug notification
27296 @cindex remote async notification debugging info
27297 Turn on or off debugging messages about remote async notification.
27298 The default is off.
27299 @item show debug notification
27300 Displays the current state of remote async notification debugging messages.
27302 @item set debug observer
27303 @cindex observer debugging info
27304 Turns on or off display of @value{GDBN} observer debugging.  This
27305 includes info such as the notification of observable events.
27306 @item show debug observer
27307 Displays the current state of observer debugging.
27309 @item set debug overload
27310 @cindex C@t{++} overload debugging info
27311 Turns on or off display of @value{GDBN} C@t{++} overload debugging
27312 info. This includes info such as ranking of functions, etc.  The default
27313 is off.
27314 @item show debug overload
27315 Displays the current state of displaying @value{GDBN} C@t{++} overload
27316 debugging info.
27318 @cindex expression parser, debugging info
27319 @cindex debug expression parser
27320 @item set debug parser
27321 Turns on or off the display of expression parser debugging output.
27322 Internally, this sets the @code{yydebug} variable in the expression
27323 parser.  @xref{Tracing, , Tracing Your Parser, bison, Bison}, for
27324 details.  The default is off.
27325 @item show debug parser
27326 Show the current state of expression parser debugging.
27328 @cindex packets, reporting on stdout
27329 @cindex serial connections, debugging
27330 @cindex debug remote protocol
27331 @cindex remote protocol debugging
27332 @cindex display remote packets
27333 @item set debug remote
27334 Turns on or off display of reports on all packets sent back and forth across
27335 the serial line to the remote machine.  The info is printed on the
27336 @value{GDBN} standard output stream. The default is off.
27337 @item show debug remote
27338 Displays the state of display of remote packets.
27340 @item set debug remote-packet-max-chars
27341 Sets the maximum number of characters to display for each remote packet when
27342 @code{set debug remote} is on.  This is useful to prevent @value{GDBN} from
27343 displaying lengthy remote packets and polluting the console.
27345 The default value is @code{512}, which means @value{GDBN} will truncate each
27346 remote packet after 512 bytes.
27348 Setting this option to @code{unlimited} will disable truncation and will output
27349 the full length of the remote packets.
27350 @item show debug remote-packet-max-chars
27351 Displays the number of bytes to output for remote packet debugging.
27353 @item set debug separate-debug-file
27354 Turns on or off display of debug output about separate debug file search.
27355 @item show debug separate-debug-file
27356 Displays the state of separate debug file search debug output.
27358 @item set debug serial
27359 Turns on or off display of @value{GDBN} serial debugging info. The
27360 default is off.
27361 @item show debug serial
27362 Displays the current state of displaying @value{GDBN} serial debugging
27363 info.
27365 @item set debug solib-frv
27366 @cindex FR-V shared-library debugging
27367 Turn on or off debugging messages for FR-V shared-library code.
27368 @item show debug solib-frv
27369 Display the current state of FR-V shared-library code debugging
27370 messages.
27372 @item set debug symbol-lookup
27373 @cindex symbol lookup
27374 Turns on or off display of debugging messages related to symbol lookup.
27375 The default is 0 (off).
27376 A value of 1 provides basic information.
27377 A value greater than 1 provides more verbose information.
27378 @item show debug symbol-lookup
27379 Show the current state of symbol lookup debugging messages.
27381 @item set debug symfile
27382 @cindex symbol file functions
27383 Turns on or off display of debugging messages related to symbol file functions.
27384 The default is off.  @xref{Files}.
27385 @item show debug symfile
27386 Show the current state of symbol file debugging messages.
27388 @item set debug symtab-create
27389 @cindex symbol table creation
27390 Turns on or off display of debugging messages related to symbol table creation.
27391 The default is 0 (off).
27392 A value of 1 provides basic information.
27393 A value greater than 1 provides more verbose information.
27394 @item show debug symtab-create
27395 Show the current state of symbol table creation debugging.
27397 @item set debug target
27398 @cindex target debugging info
27399 Turns on or off display of @value{GDBN} target debugging info. This info
27400 includes what is going on at the target level of GDB, as it happens. The
27401 default is 0.  Set it to 1 to track events, and to 2 to also track the
27402 value of large memory transfers.
27403 @item show debug target
27404 Displays the current state of displaying @value{GDBN} target debugging
27405 info.
27407 @item set debug timestamp
27408 @cindex timestamping debugging info
27409 Turns on or off display of timestamps with @value{GDBN} debugging info.
27410 When enabled, seconds and microseconds are displayed before each debugging
27411 message.
27412 @item show debug timestamp
27413 Displays the current state of displaying timestamps with @value{GDBN}
27414 debugging info.
27416 @item set debug varobj
27417 @cindex variable object debugging info
27418 Turns on or off display of @value{GDBN} variable object debugging
27419 info. The default is off.
27420 @item show debug varobj
27421 Displays the current state of displaying @value{GDBN} variable object
27422 debugging info.
27424 @item set debug xml
27425 @cindex XML parser debugging
27426 Turn on or off debugging messages for built-in XML parsers.
27427 @item show debug xml
27428 Displays the current state of XML debugging messages.
27429 @end table
27431 @node Other Misc Settings
27432 @section Other Miscellaneous Settings
27433 @cindex miscellaneous settings
27435 @table @code
27436 @kindex set interactive-mode
27437 @item set interactive-mode
27438 If @code{on}, forces @value{GDBN} to assume that GDB was started
27439 in a terminal.  In practice, this means that @value{GDBN} should wait
27440 for the user to answer queries generated by commands entered at
27441 the command prompt.  If @code{off}, forces @value{GDBN} to operate
27442 in the opposite mode, and it uses the default answers to all queries.
27443 If @code{auto} (the default), @value{GDBN} tries to determine whether
27444 its standard input is a terminal, and works in interactive-mode if it
27445 is, non-interactively otherwise.
27447 In the vast majority of cases, the debugger should be able to guess
27448 correctly which mode should be used.  But this setting can be useful
27449 in certain specific cases, such as running a MinGW @value{GDBN}
27450 inside a cygwin window.
27452 @kindex show interactive-mode
27453 @item show interactive-mode
27454 Displays whether the debugger is operating in interactive mode or not.
27455 @end table
27457 @table @code
27458 @kindex set suppress-cli-notifications
27459 @item set suppress-cli-notifications
27460 If @code{on}, command-line-interface (CLI) notifications that are
27461 printed by @value{GDBN} are suppressed.  If @code{off}, the
27462 notifications are printed as usual.  The default value is @code{off}.
27463 CLI notifications occur when you change the selected context or when
27464 the program being debugged stops, as detailed below.
27466 @table @emph
27467 @item User-selected context changes:
27468 When you change the selected context (i.e.@: the current inferior,
27469 thread and/or the frame), @value{GDBN} prints information about the
27470 new context.  For example, the default behavior is below:
27472 @smallexample
27473 (gdb) inferior 1
27474 [Switching to inferior 1 [process 634] (/tmp/test)]
27475 [Switching to thread 1 (process 634)]
27476 #0  main () at test.c:3
27477 3         return 0;
27478 (gdb)
27479 @end smallexample
27481 When the notifications are suppressed, the new context is not printed:
27483 @smallexample
27484 (gdb) set suppress-cli-notifications on
27485 (gdb) inferior 1
27486 (gdb)
27487 @end smallexample
27489 @item The program being debugged stops:
27490 When the program you are debugging stops (e.g.@: because of hitting a
27491 breakpoint, completing source-stepping, an interrupt, etc.),
27492 @value{GDBN} prints information about the stop event.  For example,
27493 below is a breakpoint hit:
27495 @smallexample
27496 (gdb) break test.c:3
27497 Breakpoint 2 at 0x555555555155: file test.c, line 3.
27498 (gdb) continue
27499 Continuing.
27501 Breakpoint 2, main () at test.c:3
27502 3         return 0;
27503 (gdb)
27504 @end smallexample
27506 When the notifications are suppressed, the output becomes:
27508 @smallexample
27509 (gdb) break test.c:3
27510 Breakpoint 2 at 0x555555555155: file test.c, line 3.
27511 (gdb) set suppress-cli-notifications on
27512 (gdb) continue
27513 Continuing.
27514 (gdb)
27515 @end smallexample
27517 Suppressing CLI notifications may be useful in scripts to obtain a
27518 reduced output from a list of commands.
27519 @end table
27521 @kindex show suppress-cli-notifications
27522 @item show suppress-cli-notifications
27523 Displays whether printing CLI notifications is suppressed or not.
27524 @end table
27526 @node Extending GDB
27527 @chapter Extending @value{GDBN}
27528 @cindex extending GDB
27530 @value{GDBN} provides several mechanisms for extension.
27531 @value{GDBN} also provides the ability to automatically load
27532 extensions when it reads a file for debugging.  This allows the
27533 user to automatically customize @value{GDBN} for the program
27534 being debugged.
27536 To facilitate the use of extension languages, @value{GDBN} is capable
27537 of evaluating the contents of a file.  When doing so, @value{GDBN}
27538 can recognize which extension language is being used by looking at
27539 the filename extension.  Files with an unrecognized filename extension
27540 are always treated as a @value{GDBN} Command Files.
27541 @xref{Command Files,, Command files}.
27543 You can control how @value{GDBN} evaluates these files with the following
27544 setting:
27546 @table @code
27547 @kindex set script-extension
27548 @kindex show script-extension
27549 @item set script-extension off
27550 All scripts are always evaluated as @value{GDBN} Command Files.
27552 @item set script-extension soft
27553 The debugger determines the scripting language based on filename
27554 extension.  If this scripting language is supported, @value{GDBN}
27555 evaluates the script using that language.  Otherwise, it evaluates
27556 the file as a @value{GDBN} Command File.
27558 @item set script-extension strict
27559 The debugger determines the scripting language based on filename
27560 extension, and evaluates the script using that language.  If the
27561 language is not supported, then the evaluation fails.
27563 @item show script-extension
27564 Display the current value of the @code{script-extension} option.
27566 @end table
27568 @ifset SYSTEM_GDBINIT_DIR
27569 This setting is not used for files in the system-wide gdbinit directory.
27570 Files in that directory must have an extension matching their language,
27571 or have a @file{.gdb} extension to be interpreted as regular @value{GDBN}
27572 commands.  @xref{Startup}.
27573 @end ifset
27575 @menu
27576 * Sequences::                Canned Sequences of @value{GDBN} Commands
27577 * Aliases::                  Command Aliases
27578 * Python::                   Extending @value{GDBN} using Python
27579 * Guile::                    Extending @value{GDBN} using Guile
27580 * Auto-loading extensions::  Automatically loading extensions
27581 * Multiple Extension Languages:: Working with multiple extension languages
27582 @end menu
27584 @node Sequences
27585 @section Canned Sequences of Commands
27587 Aside from breakpoint commands (@pxref{Break Commands, ,Breakpoint
27588 Command Lists}), @value{GDBN} provides two ways to store sequences of
27589 commands for execution as a unit: user-defined commands and command
27590 files.
27592 @menu
27593 * Define::             How to define your own commands
27594 * Hooks::              Hooks for user-defined commands
27595 * Command Files::      How to write scripts of commands to be stored in a file
27596 * Output::             Commands for controlled output
27597 * Auto-loading sequences::  Controlling auto-loaded command files
27598 @end menu
27600 @node Define
27601 @subsection User-defined Commands
27603 @cindex user-defined command
27604 @cindex arguments, to user-defined commands
27605 A @dfn{user-defined command} is a sequence of @value{GDBN} commands to
27606 which you assign a new name as a command.  This is done with the
27607 @code{define} command.  User commands may accept an unlimited number of arguments
27608 separated by whitespace.  Arguments are accessed within the user command
27609 via @code{$arg0@dots{}$argN}.  A trivial example:
27611 @smallexample
27612 define adder
27613   print $arg0 + $arg1 + $arg2
27615 @end smallexample
27617 @noindent
27618 To execute the command use:
27620 @smallexample
27621 adder 1 2 3
27622 @end smallexample
27624 @noindent
27625 This defines the command @code{adder}, which prints the sum of
27626 its three arguments.  Note the arguments are text substitutions, so they may
27627 reference variables, use complex expressions, or even perform inferior
27628 functions calls.
27630 @cindex argument count in user-defined commands
27631 @cindex how many arguments (user-defined commands)
27632 In addition, @code{$argc} may be used to find out how many arguments have
27633 been passed.
27635 @smallexample
27636 define adder
27637   if $argc == 2
27638     print $arg0 + $arg1
27639   end
27640   if $argc == 3
27641     print $arg0 + $arg1 + $arg2
27642   end
27644 @end smallexample
27646 Combining with the @code{eval} command (@pxref{eval}) makes it easier
27647 to process a variable number of arguments:
27649 @smallexample
27650 define adder
27651   set $i = 0
27652   set $sum = 0
27653   while $i < $argc
27654     eval "set $sum = $sum + $arg%d", $i
27655     set $i = $i + 1
27656   end
27657   print $sum
27659 @end smallexample
27661 @table @code
27663 @kindex define
27664 @item define @var{commandname}
27665 Define a command named @var{commandname}.  If there is already a command
27666 by that name, you are asked to confirm that you want to redefine it.
27667 The argument @var{commandname} may be a bare command name consisting of letters,
27668 numbers, dashes, dots, and underscores.  It may also start with any
27669 predefined or user-defined prefix command.
27670 For example, @samp{define target my-target} creates
27671 a user-defined @samp{target my-target} command.
27673 The definition of the command is made up of other @value{GDBN} command lines,
27674 which are given following the @code{define} command.  The end of these
27675 commands is marked by a line containing @code{end}.
27677 @kindex document
27678 @kindex end@r{ (user-defined commands)}
27679 @item document @var{commandname}
27680 Document the user-defined command @var{commandname}, so that it can be
27681 accessed by @code{help}.  The command @var{commandname} must already be
27682 defined.  This command reads lines of documentation just as @code{define}
27683 reads the lines of the command definition, ending with @code{end}.
27684 After the @code{document} command is finished, @code{help} on command
27685 @var{commandname} displays the documentation you have written.
27687 You may use the @code{document} command again to change the
27688 documentation of a command.  Redefining the command with @code{define}
27689 does not change the documentation.
27691 @kindex define-prefix
27692 @item define-prefix @var{commandname}
27693 Define or mark the command @var{commandname} as a user-defined prefix
27694 command.  Once marked, @var{commandname} can be used as prefix command
27695 by the  @code{define} command.
27696 Note that @code{define-prefix} can be used with a not yet defined
27697 @var{commandname}.  In such a case, @var{commandname} is defined as
27698 an empty user-defined command.
27699 In case you redefine a command that was marked as a user-defined
27700 prefix command, the subcommands of the redefined command are kept
27701 (and @value{GDBN} indicates so to the user).
27703 Example:
27704 @example
27705 (gdb) define-prefix abc
27706 (gdb) define-prefix abc def
27707 (gdb) define abc def
27708 Type commands for definition of "abc def".
27709 End with a line saying just "end".
27710 >echo command initial def\n
27711 >end
27712 (gdb) define abc def ghi
27713 Type commands for definition of "abc def ghi".
27714 End with a line saying just "end".
27715 >echo command ghi\n
27716 >end
27717 (gdb) define abc def
27718 Keeping subcommands of prefix command "def".
27719 Redefine command "def"? (y or n) y
27720 Type commands for definition of "abc def".
27721 End with a line saying just "end".
27722 >echo command def\n
27723 >end
27724 (gdb) abc def ghi
27725 command ghi
27726 (gdb) abc def
27727 command def
27728 (gdb)
27729 @end example
27731 @kindex dont-repeat
27732 @cindex don't repeat command
27733 @item dont-repeat
27734 Used inside a user-defined command, this tells @value{GDBN} that this
27735 command should not be repeated when the user hits @key{RET}
27736 (@pxref{Command Syntax, repeat last command}).
27738 @kindex help user-defined
27739 @item help user-defined
27740 List all user-defined commands and all python commands defined in class
27741 COMMAND_USER.  The first line of the documentation or docstring is
27742 included (if any).
27744 @kindex show user
27745 @item show user
27746 @itemx show user @var{commandname}
27747 Display the @value{GDBN} commands used to define @var{commandname} (but
27748 not its documentation).  If no @var{commandname} is given, display the
27749 definitions for all user-defined commands.
27750 This does not work for user-defined python commands.
27752 @cindex infinite recursion in user-defined commands
27753 @kindex show max-user-call-depth
27754 @kindex set max-user-call-depth
27755 @item show max-user-call-depth
27756 @itemx set max-user-call-depth
27757 The value of @code{max-user-call-depth} controls how many recursion
27758 levels are allowed in user-defined commands before @value{GDBN} suspects an
27759 infinite recursion and aborts the command.
27760 This does not apply to user-defined python commands.
27761 @end table
27763 In addition to the above commands, user-defined commands frequently
27764 use control flow commands, described in @ref{Command Files}.
27766 When user-defined commands are executed, the
27767 commands of the definition are not printed.  An error in any command
27768 stops execution of the user-defined command.
27770 If used interactively, commands that would ask for confirmation proceed
27771 without asking when used inside a user-defined command.  Many @value{GDBN}
27772 commands that normally print messages to say what they are doing omit the
27773 messages when used in a user-defined command.
27775 @node Hooks
27776 @subsection User-defined Command Hooks
27777 @cindex command hooks
27778 @cindex hooks, for commands
27779 @cindex hooks, pre-command
27781 @kindex hook
27782 You may define @dfn{hooks}, which are a special kind of user-defined
27783 command.  Whenever you run the command @samp{foo}, if the user-defined
27784 command @samp{hook-foo} exists, it is executed (with no arguments)
27785 before that command.
27787 @cindex hooks, post-command
27788 @kindex hookpost
27789 A hook may also be defined which is run after the command you executed.
27790 Whenever you run the command @samp{foo}, if the user-defined command
27791 @samp{hookpost-foo} exists, it is executed (with no arguments) after
27792 that command.  Post-execution hooks may exist simultaneously with
27793 pre-execution hooks, for the same command.
27795 It is valid for a hook to call the command which it hooks.  If this
27796 occurs, the hook is not re-executed, thereby avoiding infinite recursion.
27798 @c It would be nice if hookpost could be passed a parameter indicating
27799 @c if the command it hooks executed properly or not.  FIXME!
27801 @kindex stop@r{, a pseudo-command}
27802 In addition, a pseudo-command, @samp{stop} exists.  Defining
27803 (@samp{hook-stop}) makes the associated commands execute every time
27804 execution stops in your program: before breakpoint commands are run,
27805 displays are printed, or the stack frame is printed.
27807 For example, to ignore @code{SIGALRM} signals while
27808 single-stepping, but treat them normally during normal execution,
27809 you could define:
27811 @smallexample
27812 define hook-stop
27813 handle SIGALRM nopass
27816 define hook-run
27817 handle SIGALRM pass
27820 define hook-continue
27821 handle SIGALRM pass
27823 @end smallexample
27825 As a further example, to hook at the beginning and end of the @code{echo}
27826 command, and to add extra text to the beginning and end of the message,
27827 you could define:
27829 @smallexample
27830 define hook-echo
27831 echo <<<---
27834 define hookpost-echo
27835 echo --->>>\n
27838 (@value{GDBP}) echo Hello World
27839 <<<---Hello World--->>>
27840 (@value{GDBP})
27842 @end smallexample
27844 You can define a hook for any single-word command in @value{GDBN}, but
27845 not for command aliases; you should define a hook for the basic command
27846 name, e.g.@:  @code{backtrace} rather than @code{bt}.
27847 @c FIXME!  So how does Joe User discover whether a command is an alias
27848 @c or not?
27849 You can hook a multi-word command by adding @code{hook-} or
27850 @code{hookpost-} to the last word of the command, e.g.@:
27851 @samp{define target hook-remote} to add a hook to @samp{target remote}.
27853 If an error occurs during the execution of your hook, execution of
27854 @value{GDBN} commands stops and @value{GDBN} issues a prompt
27855 (before the command that you actually typed had a chance to run).
27857 If you try to define a hook which does not match any known command, you
27858 get a warning from the @code{define} command.
27860 @node Command Files
27861 @subsection Command Files
27863 @cindex command files
27864 @cindex scripting commands
27865 A command file for @value{GDBN} is a text file made of lines that are
27866 @value{GDBN} commands.  Comments (lines starting with @kbd{#}) may
27867 also be included.  An empty line in a command file does nothing; it
27868 does not mean to repeat the last command, as it would from the
27869 terminal.
27871 You can request the execution of a command file with the @code{source}
27872 command.  Note that the @code{source} command is also used to evaluate
27873 scripts that are not Command Files.  The exact behavior can be configured
27874 using the @code{script-extension} setting.
27875 @xref{Extending GDB,, Extending GDB}.
27877 @table @code
27878 @kindex source
27879 @cindex execute commands from a file
27880 @item source [-s] [-v] @var{filename}
27881 Execute the command file @var{filename}.
27882 @end table
27884 The lines in a command file are generally executed sequentially,
27885 unless the order of execution is changed by one of the
27886 @emph{flow-control commands} described below.  The commands are not
27887 printed as they are executed.  An error in any command terminates
27888 execution of the command file and control is returned to the console.
27890 @value{GDBN} first searches for @var{filename} in the current directory.
27891 If the file is not found there, and @var{filename} does not specify a
27892 directory, then @value{GDBN} also looks for the file on the source search path
27893 (specified with the @samp{directory} command);
27894 except that @file{$cdir} is not searched because the compilation directory
27895 is not relevant to scripts.
27897 If @code{-s} is specified, then @value{GDBN} searches for @var{filename}
27898 on the search path even if @var{filename} specifies a directory.
27899 The search is done by appending @var{filename} to each element of the
27900 search path.  So, for example, if @var{filename} is @file{mylib/myscript}
27901 and the search path contains @file{/home/user} then @value{GDBN} will
27902 look for the script @file{/home/user/mylib/myscript}.
27903 The search is also done if @var{filename} is an absolute path.
27904 For example, if @var{filename} is @file{/tmp/myscript} and
27905 the search path contains @file{/home/user} then @value{GDBN} will
27906 look for the script @file{/home/user/tmp/myscript}.
27907 For DOS-like systems, if @var{filename} contains a drive specification,
27908 it is stripped before concatenation.  For example, if @var{filename} is
27909 @file{d:myscript} and the search path contains @file{c:/tmp} then @value{GDBN}
27910 will look for the script @file{c:/tmp/myscript}.
27912 If @code{-v}, for verbose mode, is given then @value{GDBN} displays
27913 each command as it is executed.  The option must be given before
27914 @var{filename}, and is interpreted as part of the filename anywhere else.
27916 Commands that would ask for confirmation if used interactively proceed
27917 without asking when used in a command file.  Many @value{GDBN} commands that
27918 normally print messages to say what they are doing omit the messages
27919 when called from command files.
27921 @value{GDBN} also accepts command input from standard input.  In this
27922 mode, normal output goes to standard output and error output goes to
27923 standard error.  Errors in a command file supplied on standard input do
27924 not terminate execution of the command file---execution continues with
27925 the next command.
27927 @smallexample
27928 gdb < cmds > log 2>&1
27929 @end smallexample
27931 (The syntax above will vary depending on the shell used.) This example
27932 will execute commands from the file @file{cmds}. All output and errors
27933 would be directed to @file{log}.
27935 Since commands stored on command files tend to be more general than
27936 commands typed interactively, they frequently need to deal with
27937 complicated situations, such as different or unexpected values of
27938 variables and symbols, changes in how the program being debugged is
27939 built, etc.  @value{GDBN} provides a set of flow-control commands to
27940 deal with these complexities.  Using these commands, you can write
27941 complex scripts that loop over data structures, execute commands
27942 conditionally, etc.
27944 @table @code
27945 @kindex if
27946 @kindex else
27947 @item if
27948 @itemx else
27949 This command allows to include in your script conditionally executed
27950 commands. The @code{if} command takes a single argument, which is an
27951 expression to evaluate.  It is followed by a series of commands that
27952 are executed only if the expression is true (its value is nonzero).
27953 There can then optionally be an @code{else} line, followed by a series
27954 of commands that are only executed if the expression was false.  The
27955 end of the list is marked by a line containing @code{end}.
27957 @kindex while
27958 @item while
27959 This command allows to write loops.  Its syntax is similar to
27960 @code{if}: the command takes a single argument, which is an expression
27961 to evaluate, and must be followed by the commands to execute, one per
27962 line, terminated by an @code{end}.  These commands are called the
27963 @dfn{body} of the loop.  The commands in the body of @code{while} are
27964 executed repeatedly as long as the expression evaluates to true.
27966 @kindex loop_break
27967 @item loop_break
27968 This command exits the @code{while} loop in whose body it is included.
27969 Execution of the script continues after that @code{while}s @code{end}
27970 line.
27972 @kindex loop_continue
27973 @item loop_continue
27974 This command skips the execution of the rest of the body of commands
27975 in the @code{while} loop in whose body it is included.  Execution
27976 branches to the beginning of the @code{while} loop, where it evaluates
27977 the controlling expression.
27979 @kindex end@r{ (if/else/while commands)}
27980 @item end
27981 Terminate the block of commands that are the body of @code{if},
27982 @code{else}, or @code{while} flow-control commands.
27983 @end table
27986 @node Output
27987 @subsection Commands for Controlled Output
27989 During the execution of a command file or a user-defined command, normal
27990 @value{GDBN} output is suppressed; the only output that appears is what is
27991 explicitly printed by the commands in the definition.  This section
27992 describes three commands useful for generating exactly the output you
27993 want.
27995 @table @code
27996 @kindex echo
27997 @item echo @var{text}
27998 @c I do not consider backslash-space a standard C escape sequence
27999 @c because it is not in ANSI.
28000 Print @var{text}.  Nonprinting characters can be included in
28001 @var{text} using C escape sequences, such as @samp{\n} to print a
28002 newline.  @strong{No newline is printed unless you specify one.}
28003 In addition to the standard C escape sequences, a backslash followed
28004 by a space stands for a space.  This is useful for displaying a
28005 string with spaces at the beginning or the end, since leading and
28006 trailing spaces are otherwise trimmed from all arguments.
28007 To print @samp{@w{ }and foo =@w{ }}, use the command
28008 @samp{echo \@w{ }and foo = \@w{ }}.
28010 A backslash at the end of @var{text} can be used, as in C, to continue
28011 the command onto subsequent lines.  For example,
28013 @smallexample
28014 echo This is some text\n\
28015 which is continued\n\
28016 onto several lines.\n
28017 @end smallexample
28019 produces the same output as
28021 @smallexample
28022 echo This is some text\n
28023 echo which is continued\n
28024 echo onto several lines.\n
28025 @end smallexample
28027 @kindex output
28028 @item output @var{expression}
28029 Print the value of @var{expression} and nothing but that value: no
28030 newlines, no @samp{$@var{nn} = }.  The value is not entered in the
28031 value history either.  @xref{Expressions, ,Expressions}, for more information
28032 on expressions.
28034 @item output/@var{fmt} @var{expression}
28035 Print the value of @var{expression} in format @var{fmt}.  You can use
28036 the same formats as for @code{print}.  @xref{Output Formats,,Output
28037 Formats}, for more information.
28039 @kindex printf
28040 @item printf @var{template}, @var{expressions}@dots{}
28041 Print the values of one or more @var{expressions} under the control of
28042 the string @var{template}.  To print several values, make
28043 @var{expressions} be a comma-separated list of individual expressions,
28044 which may be either numbers or pointers.  Their values are printed as
28045 specified by @var{template}, exactly as a C program would do by
28046 executing the code below:
28048 @smallexample
28049 printf (@var{template}, @var{expressions}@dots{});
28050 @end smallexample
28052 As in @code{C} @code{printf}, ordinary characters in @var{template}
28053 are printed verbatim, while @dfn{conversion specification} introduced
28054 by the @samp{%} character cause subsequent @var{expressions} to be
28055 evaluated, their values converted and formatted according to type and
28056 style information encoded in the conversion specifications, and then
28057 printed.
28059 For example, you can print two values in hex like this:
28061 @smallexample
28062 printf "foo, bar-foo = 0x%x, 0x%x\n", foo, bar-foo
28063 @end smallexample
28065 @code{printf} supports all the standard @code{C} conversion
28066 specifications, including the flags and modifiers between the @samp{%}
28067 character and the conversion letter, with the following exceptions:
28069 @itemize @bullet
28070 @item
28071 The argument-ordering modifiers, such as @samp{2$}, are not supported.
28073 @item
28074 The modifier @samp{*} is not supported for specifying precision or
28075 width.
28077 @item
28078 The @samp{'} flag (for separation of digits into groups according to
28079 @code{LC_NUMERIC'}) is not supported.
28081 @item
28082 The type modifiers @samp{hh}, @samp{j}, @samp{t}, and @samp{z} are not
28083 supported.
28085 @item
28086 The conversion letter @samp{n} (as in @samp{%n}) is not supported.
28088 @item
28089 The conversion letters @samp{a} and @samp{A} are not supported.
28090 @end itemize
28092 @noindent
28093 Note that the @samp{ll} type modifier is supported only if the
28094 underlying @code{C} implementation used to build @value{GDBN} supports
28095 the @code{long long int} type, and the @samp{L} type modifier is
28096 supported only if @code{long double} type is available.
28098 As in @code{C}, @code{printf} supports simple backslash-escape
28099 sequences, such as @code{\n}, @samp{\t}, @samp{\\}, @samp{\"},
28100 @samp{\a}, and @samp{\f}, that consist of backslash followed by a
28101 single character.  Octal and hexadecimal escape sequences are not
28102 supported.
28104 Additionally, @code{printf} supports conversion specifications for DFP
28105 (@dfn{Decimal Floating Point}) types using the following length modifiers
28106 together with a floating point specifier.
28107 letters:
28109 @itemize @bullet
28110 @item
28111 @samp{H} for printing @code{Decimal32} types.
28113 @item
28114 @samp{D} for printing @code{Decimal64} types.
28116 @item
28117 @samp{DD} for printing @code{Decimal128} types.
28118 @end itemize
28120 If the underlying @code{C} implementation used to build @value{GDBN} has
28121 support for the three length modifiers for DFP types, other modifiers
28122 such as width and precision will also be available for @value{GDBN} to use.
28124 In case there is no such @code{C} support, no additional modifiers will be
28125 available and the value will be printed in the standard way.
28127 Here's an example of printing DFP types using the above conversion letters:
28128 @smallexample
28129 printf "D32: %Hf - D64: %Df - D128: %DDf\n",1.2345df,1.2E10dd,1.2E1dl
28130 @end smallexample
28132 @anchor{eval}
28133 @kindex eval
28134 @item eval @var{template}, @var{expressions}@dots{}
28135 Convert the values of one or more @var{expressions} under the control of
28136 the string @var{template} to a command line, and call it.
28138 @end table
28140 @node Auto-loading sequences
28141 @subsection Controlling auto-loading native @value{GDBN} scripts
28142 @cindex native script auto-loading
28144 When a new object file is read (for example, due to the @code{file}
28145 command, or because the inferior has loaded a shared library),
28146 @value{GDBN} will look for the command file @file{@var{objfile}-gdb.gdb}.
28147 @xref{Auto-loading extensions}.
28149 Auto-loading can be enabled or disabled,
28150 and the list of auto-loaded scripts can be printed.
28152 @table @code
28153 @anchor{set auto-load gdb-scripts}
28154 @kindex set auto-load gdb-scripts
28155 @item set auto-load gdb-scripts [on|off]
28156 Enable or disable the auto-loading of canned sequences of commands scripts.
28158 @anchor{show auto-load gdb-scripts}
28159 @kindex show auto-load gdb-scripts
28160 @item show auto-load gdb-scripts
28161 Show whether auto-loading of canned sequences of commands scripts is enabled or
28162 disabled.
28164 @anchor{info auto-load gdb-scripts}
28165 @kindex info auto-load gdb-scripts
28166 @cindex print list of auto-loaded canned sequences of commands scripts
28167 @item info auto-load gdb-scripts [@var{regexp}]
28168 Print the list of all canned sequences of commands scripts that @value{GDBN}
28169 auto-loaded.
28170 @end table
28172 If @var{regexp} is supplied only canned sequences of commands scripts with
28173 matching names are printed.
28175 @node Aliases
28176 @section Command Aliases
28177 @cindex aliases for commands
28179 Aliases allow you to define alternate spellings for existing commands.
28180 For example, if a new @value{GDBN} command defined in Python
28181 (@pxref{Python}) has a long name, it is handy to have an abbreviated
28182 version of it that involves less typing.
28184 @value{GDBN} itself uses aliases.  For example @samp{s} is an alias
28185 of the @samp{step} command even though it is otherwise an ambiguous
28186 abbreviation of other commands like @samp{set} and @samp{show}.
28188 Aliases are also used to provide shortened or more common versions
28189 of multi-word commands.  For example, @value{GDBN} provides the
28190 @samp{tty} alias of the @samp{set inferior-tty} command.
28192 You can define a new alias with the @samp{alias} command.
28194 @table @code
28196 @kindex alias
28197 @item alias [-a] [--] @var{alias} = @var{command} [@var{default-args}]
28199 @end table
28201 @var{alias} specifies the name of the new alias.  Each word of
28202 @var{alias} must consist of letters, numbers, dashes and underscores.
28204 @var{command} specifies the name of an existing command
28205 that is being aliased.
28207 @var{command} can also be the name of an existing alias.  In this
28208 case, @var{command} cannot be an alias that has default arguments.
28210 The @samp{-a} option specifies that the new alias is an abbreviation
28211 of the command.  Abbreviations are not used in command completion.
28213 The @samp{--} option specifies the end of options,
28214 and is useful when @var{alias} begins with a dash.
28216 You can specify @var{default-args} for your alias.  These
28217 @var{default-args} will be automatically added before the alias
28218 arguments typed explicitly on the command line.
28220 For example, the below defines an alias @code{btfullall} that shows all local
28221 variables and all frame arguments:
28222 @smallexample
28223 (@value{GDBP}) alias btfullall = backtrace -full -frame-arguments all
28224 @end smallexample
28226 For more information about @var{default-args}, see @ref{Command
28227 aliases default args, ,Default Arguments}.
28229 Here is a simple example showing how to make an abbreviation of a
28230 command so that there is less to type.  Suppose you were tired of
28231 typing @samp{disas}, the current shortest unambiguous abbreviation of
28232 the @samp{disassemble} command and you wanted an even shorter version
28233 named @samp{di}.  The following will accomplish this.
28235 @smallexample
28236 (gdb) alias -a di = disas
28237 @end smallexample
28239 Note that aliases are different from user-defined commands.  With a
28240 user-defined command, you also need to write documentation for it with
28241 the @samp{document} command.  An alias automatically picks up the
28242 documentation of the existing command.
28244 Here is an example where we make @samp{elms} an abbreviation of
28245 @samp{elements} in the @samp{set print elements} command.
28246 This is to show that you can make an abbreviation of any part
28247 of a command.
28249 @smallexample
28250 (gdb) alias -a set print elms = set print elements
28251 (gdb) alias -a show print elms = show print elements
28252 (gdb) set p elms 200
28253 (gdb) show p elms
28254 Limit on string chars or array elements to print is 200.
28255 @end smallexample
28257 Note that if you are defining an alias of a @samp{set} command,
28258 and you want to have an alias for the corresponding @samp{show}
28259 command, then you need to define the latter separately.
28261 Unambiguously abbreviated commands are allowed in @var{command} and
28262 @var{alias}, just as they are normally.
28264 @smallexample
28265 (gdb) alias -a set pr elms = set p ele
28266 @end smallexample
28268 Finally, here is an example showing the creation of a one word
28269 alias for a more complex command.
28270 This creates alias @samp{spe} of the command @samp{set print elements}.
28272 @smallexample
28273 (gdb) alias spe = set print elements
28274 (gdb) spe 20
28275 @end smallexample
28277 @menu
28278 * Command aliases default args::        Default arguments for aliases
28279 @end menu
28281 @node Command aliases default args
28282 @subsection Default Arguments
28283 @cindex aliases for commands, default arguments
28285 You can tell @value{GDBN} to always prepend some default arguments to
28286 the list of arguments provided explicitly by the user when using a
28287 user-defined alias.
28289 If you repeatedly use the same arguments or options for a command, you
28290 can define an alias for this command and tell @value{GDBN} to
28291 automatically prepend these arguments or options to the list of
28292 arguments you type explicitly when using the alias@footnote{@value{GDBN}
28293 could easily accept default arguments for pre-defined commands and aliases,
28294 but it was deemed this would be confusing, and so is not allowed.}.
28296 For example, if you often use the command @code{thread apply all}
28297 specifying to work on the threads in ascending order and to continue in case it
28298 encounters an error, you can tell @value{GDBN} to automatically preprend
28299 the @code{-ascending} and @code{-c} options by using:
28301 @smallexample
28302 (@value{GDBP}) alias thread apply asc-all = thread apply all -ascending -c
28303 @end smallexample
28305 Once you have defined this alias with its default args, any time you type
28306 the @code{thread apply asc-all} followed by @code{some arguments},
28307 @value{GDBN} will execute  @code{thread apply all -ascending -c some arguments}.
28309 To have even less to type, you can also define a one word alias:
28310 @smallexample
28311 (@value{GDBP}) alias t_a_c = thread apply all -ascending -c
28312 @end smallexample
28314 As usual, unambiguous abbreviations can be used for @var{alias}
28315 and @var{default-args}.
28317 The different aliases of a command do not share their default args.
28318 For example, you define a new alias @code{bt_ALL} showing all possible
28319 information and another alias @code{bt_SMALL} showing very limited information
28320 using:
28321 @smallexample
28322 (@value{GDBP}) alias bt_ALL = backtrace -entry-values both -frame-arg all \
28323    -past-main -past-entry -full
28324 (@value{GDBP}) alias bt_SMALL = backtrace -entry-values no -frame-arg none \
28325    -past-main off -past-entry off
28326 @end smallexample
28328 (For more on using the @code{alias} command, see @ref{Aliases}.)
28330 Default args are not limited to the arguments and options of @var{command},
28331 but can specify nested commands if @var{command} accepts such a nested command
28332 as argument.
28333 For example, the below defines @code{faalocalsoftype} that lists the
28334 frames having locals of a certain type, together with the matching
28335 local vars:
28336 @smallexample
28337 (@value{GDBP}) alias faalocalsoftype = frame apply all info locals -q -t
28338 (@value{GDBP}) faalocalsoftype int
28339 #1  0x55554f5e in sleeper_or_burner (v=0xdf50) at sleepers.c:86
28340 i = 0
28341 ret = 21845
28342 @end smallexample
28344 This is also very useful to define an alias for a set of nested @code{with}
28345 commands to have a particular combination of temporary settings.  For example,
28346 the below defines the alias @code{pp10} that pretty prints an expression
28347 argument, with a maximum of 10 elements if the expression is a string or
28348 an array:
28349 @smallexample
28350 (@value{GDBP}) alias pp10 = with print pretty -- with print elements 10 -- print
28351 @end smallexample
28352 This defines the alias  @code{pp10} as being a sequence of 3 commands.
28353 The first part @code{with print pretty --} temporarily activates the setting
28354 @code{set print pretty}, then launches the command that follows the separator
28355 @code{--}.
28356 The command following the first part is also a @code{with} command that
28357 temporarily changes the setting @code{set print elements} to 10, then
28358 launches the command that follows the second separator @code{--}.
28359 The third part @code{print} is the command the @code{pp10} alias will launch,
28360 using the temporary values of the settings and the arguments explicitly given
28361 by the user.
28362 For more information about the @code{with} command usage,
28363 see @ref{Command Settings}.
28365 @c Python docs live in a separate file.
28366 @include python.texi
28368 @c Guile docs live in a separate file.
28369 @include guile.texi
28371 @node Auto-loading extensions
28372 @section Auto-loading extensions
28373 @cindex auto-loading extensions
28375 @value{GDBN} provides two mechanisms for automatically loading
28376 extensions when a new object file is read (for example, due to the
28377 @code{file} command, or because the inferior has loaded a shared
28378 library): @file{@var{objfile}-gdb.@var{ext}} (@pxref{objfile-gdbdotext
28379 file,,The @file{@var{objfile}-gdb.@var{ext}} file}) and the
28380 @code{.debug_gdb_scripts} section of modern file formats like ELF
28381 (@pxref{dotdebug_gdb_scripts section,,The @code{.debug_gdb_scripts}
28382 section}).  For a discussion of the differences between these two
28383 approaches see @ref{Which flavor to choose?}.
28385 The auto-loading feature is useful for supplying application-specific
28386 debugging commands and features.
28388 Auto-loading can be enabled or disabled,
28389 and the list of auto-loaded scripts can be printed.
28390 See the @samp{auto-loading} section of each extension language
28391 for more information.
28392 For @value{GDBN} command files see @ref{Auto-loading sequences}.
28393 For Python files see @ref{Python Auto-loading}.
28395 Note that loading of this script file also requires accordingly configured
28396 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28398 @menu
28399 * objfile-gdbdotext file::              The @file{@var{objfile}-gdb.@var{ext}} file
28400 * dotdebug_gdb_scripts section::        The @code{.debug_gdb_scripts} section
28401 * Which flavor to choose?::             Choosing between these approaches
28402 @end menu
28404 @node objfile-gdbdotext file
28405 @subsection The @file{@var{objfile}-gdb.@var{ext}} file
28406 @cindex @file{@var{objfile}-gdb.gdb}
28407 @cindex @file{@var{objfile}-gdb.py}
28408 @cindex @file{@var{objfile}-gdb.scm}
28410 When a new object file is read, @value{GDBN} looks for a file named
28411 @file{@var{objfile}-gdb.@var{ext}} (we call it @var{script-name} below),
28412 where @var{objfile} is the object file's name and
28413 where @var{ext} is the file extension for the extension language:
28415 @table @code
28416 @item @file{@var{objfile}-gdb.gdb}
28417 GDB's own command language
28418 @item @file{@var{objfile}-gdb.py}
28419 Python
28420 @item @file{@var{objfile}-gdb.scm}
28421 Guile
28422 @end table
28424 @var{script-name} is formed by ensuring that the file name of @var{objfile}
28425 is absolute, following all symlinks, and resolving @code{.} and @code{..}
28426 components, and appending the @file{-gdb.@var{ext}} suffix.
28427 If this file exists and is readable, @value{GDBN} will evaluate it as a
28428 script in the specified extension language.
28430 If this file does not exist, then @value{GDBN} will look for
28431 @var{script-name} file in all of the directories as specified below.
28432 (On MS-Windows/MS-DOS, the drive letter of the executable's leading
28433 directories is converted to a one-letter subdirectory, i.e.@:
28434 @file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
28435 filesystems disallow colons in file names.)
28437 Note that loading of these files requires an accordingly configured
28438 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28440 For object files using @file{.exe} suffix @value{GDBN} tries to load first the
28441 scripts normally according to its @file{.exe} filename.  But if no scripts are
28442 found @value{GDBN} also tries script filenames matching the object file without
28443 its @file{.exe} suffix.  This @file{.exe} stripping is case insensitive and it
28444 is attempted on any platform.  This makes the script filenames compatible
28445 between Unix and MS-Windows hosts.
28447 @table @code
28448 @anchor{set auto-load scripts-directory}
28449 @kindex set auto-load scripts-directory
28450 @item set auto-load scripts-directory @r{[}@var{directories}@r{]}
28451 Control @value{GDBN} auto-loaded scripts location.  Multiple directory entries
28452 may be delimited by the host platform path separator in use
28453 (@samp{:} on Unix, @samp{;} on MS-Windows and MS-DOS).
28455 Each entry here needs to be covered also by the security setting
28456 @code{set auto-load safe-path} (@pxref{set auto-load safe-path}).
28458 @anchor{with-auto-load-dir}
28459 This variable defaults to @file{$debugdir:$datadir/auto-load}.  The default
28460 @code{set auto-load safe-path} value can be also overriden by @value{GDBN}
28461 configuration option @option{--with-auto-load-dir}.
28463 Any reference to @file{$debugdir} will get replaced by
28464 @var{debug-file-directory} value (@pxref{Separate Debug Files}) and any
28465 reference to @file{$datadir} will get replaced by @var{data-directory} which is
28466 determined at @value{GDBN} startup (@pxref{Data Files}).  @file{$debugdir} and
28467 @file{$datadir} must be placed as a directory component --- either alone or
28468 delimited by @file{/} or @file{\} directory separators, depending on the host
28469 platform.
28471 The list of directories uses path separator (@samp{:} on GNU and Unix
28472 systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
28473 to the @env{PATH} environment variable.
28475 @anchor{show auto-load scripts-directory}
28476 @kindex show auto-load scripts-directory
28477 @item show auto-load scripts-directory
28478 Show @value{GDBN} auto-loaded scripts location.
28480 @anchor{add-auto-load-scripts-directory}
28481 @kindex add-auto-load-scripts-directory
28482 @item add-auto-load-scripts-directory @r{[}@var{directories}@dots{}@r{]}
28483 Add an entry (or list of entries) to the list of auto-loaded scripts locations.
28484 Multiple entries may be delimited by the host platform path separator in use.
28485 @end table
28487 @value{GDBN} does not track which files it has already auto-loaded this way.
28488 @value{GDBN} will load the associated script every time the corresponding
28489 @var{objfile} is opened.
28490 So your @file{-gdb.@var{ext}} file should be careful to avoid errors if it
28491 is evaluated more than once.
28493 @node dotdebug_gdb_scripts section
28494 @subsection The @code{.debug_gdb_scripts} section
28495 @cindex @code{.debug_gdb_scripts} section
28497 For systems using file formats like ELF and COFF,
28498 when @value{GDBN} loads a new object file
28499 it will look for a special section named @code{.debug_gdb_scripts}.
28500 If this section exists, its contents is a list of null-terminated entries
28501 specifying scripts to load.  Each entry begins with a non-null prefix byte that
28502 specifies the kind of entry, typically the extension language and whether the
28503 script is in a file or inlined in @code{.debug_gdb_scripts}.
28505 The following entries are supported:
28507 @table @code
28508 @item SECTION_SCRIPT_ID_PYTHON_FILE = 1
28509 @item SECTION_SCRIPT_ID_SCHEME_FILE = 3
28510 @item SECTION_SCRIPT_ID_PYTHON_TEXT = 4
28511 @item SECTION_SCRIPT_ID_SCHEME_TEXT = 6
28512 @end table
28514 @subsubsection Script File Entries
28516 If the entry specifies a file, @value{GDBN} will look for the file first
28517 in the current directory and then along the source search path
28518 (@pxref{Source Path, ,Specifying Source Directories}),
28519 except that @file{$cdir} is not searched, since the compilation
28520 directory is not relevant to scripts.
28522 File entries can be placed in section @code{.debug_gdb_scripts} with,
28523 for example, this GCC macro for Python scripts.
28525 @example
28526 /* Note: The "MS" section flags are to remove duplicates.  */
28527 #define DEFINE_GDB_PY_SCRIPT(script_name) \
28528   asm("\
28529 .pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n\
28530 .byte 1 /* Python */\n\
28531 .asciz \"" script_name "\"\n\
28532 .popsection \n\
28534 @end example
28536 @noindent
28537 For Guile scripts, replace @code{.byte 1} with @code{.byte 3}.
28538 Then one can reference the macro in a header or source file like this:
28540 @example
28541 DEFINE_GDB_PY_SCRIPT ("my-app-scripts.py")
28542 @end example
28544 The script name may include directories if desired.
28546 Note that loading of this script file also requires accordingly configured
28547 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28549 If the macro invocation is put in a header, any application or library
28550 using this header will get a reference to the specified script,
28551 and with the use of @code{"MS"} attributes on the section, the linker
28552 will remove duplicates.
28554 @subsubsection Script Text Entries
28556 Script text entries allow to put the executable script in the entry
28557 itself instead of loading it from a file.
28558 The first line of the entry, everything after the prefix byte and up to
28559 the first newline (@code{0xa}) character, is the script name, and must not
28560 contain any kind of space character, e.g., spaces or tabs.
28561 The rest of the entry, up to the trailing null byte, is the script to
28562 execute in the specified language.  The name needs to be unique among
28563 all script names, as @value{GDBN} executes each script only once based
28564 on its name.
28566 Here is an example from file @file{py-section-script.c} in the @value{GDBN}
28567 testsuite.
28569 @example
28570 #include "symcat.h"
28571 #include "gdb/section-scripts.h"
28572 asm(
28573 ".pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n"
28574 ".byte " XSTRING (SECTION_SCRIPT_ID_PYTHON_TEXT) "\n"
28575 ".ascii \"gdb.inlined-script\\n\"\n"
28576 ".ascii \"class test_cmd (gdb.Command):\\n\"\n"
28577 ".ascii \"  def __init__ (self):\\n\"\n"
28578 ".ascii \"    super (test_cmd, self).__init__ ("
28579     "\\\"test-cmd\\\", gdb.COMMAND_OBSCURE)\\n\"\n"
28580 ".ascii \"  def invoke (self, arg, from_tty):\\n\"\n"
28581 ".ascii \"    print (\\\"test-cmd output, arg = %s\\\" % arg)\\n\"\n"
28582 ".ascii \"test_cmd ()\\n\"\n"
28583 ".byte 0\n"
28584 ".popsection\n"
28586 @end example
28588 Loading of inlined scripts requires a properly configured
28589 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28590 The path to specify in @code{auto-load safe-path} is the path of the file
28591 containing the @code{.debug_gdb_scripts} section.
28593 @node Which flavor to choose?
28594 @subsection Which flavor to choose?
28596 Given the multiple ways of auto-loading extensions, it might not always
28597 be clear which one to choose.  This section provides some guidance.
28599 @noindent
28600 Benefits of the @file{-gdb.@var{ext}} way:
28602 @itemize @bullet
28603 @item
28604 Can be used with file formats that don't support multiple sections.
28606 @item
28607 Ease of finding scripts for public libraries.
28609 Scripts specified in the @code{.debug_gdb_scripts} section are searched for
28610 in the source search path.
28611 For publicly installed libraries, e.g., @file{libstdc++}, there typically
28612 isn't a source directory in which to find the script.
28614 @item
28615 Doesn't require source code additions.
28616 @end itemize
28618 @noindent
28619 Benefits of the @code{.debug_gdb_scripts} way:
28621 @itemize @bullet
28622 @item
28623 Works with static linking.
28625 Scripts for libraries done the @file{-gdb.@var{ext}} way require an objfile to
28626 trigger their loading.  When an application is statically linked the only
28627 objfile available is the executable, and it is cumbersome to attach all the
28628 scripts from all the input libraries to the executable's
28629 @file{-gdb.@var{ext}} script.
28631 @item
28632 Works with classes that are entirely inlined.
28634 Some classes can be entirely inlined, and thus there may not be an associated
28635 shared library to attach a @file{-gdb.@var{ext}} script to.
28637 @item
28638 Scripts needn't be copied out of the source tree.
28640 In some circumstances, apps can be built out of large collections of internal
28641 libraries, and the build infrastructure necessary to install the
28642 @file{-gdb.@var{ext}} scripts in a place where @value{GDBN} can find them is
28643 cumbersome.  It may be easier to specify the scripts in the
28644 @code{.debug_gdb_scripts} section as relative paths, and add a path to the
28645 top of the source tree to the source search path.
28646 @end itemize
28648 @node Multiple Extension Languages
28649 @section Multiple Extension Languages
28651 The Guile and Python extension languages do not share any state,
28652 and generally do not interfere with each other.
28653 There are some things to be aware of, however.
28655 @subsection Python comes first
28657 Python was @value{GDBN}'s first extension language, and to avoid breaking
28658 existing behaviour Python comes first.  This is generally solved by the
28659 ``first one wins'' principle.  @value{GDBN} maintains a list of enabled
28660 extension languages, and when it makes a call to an extension language,
28661 (say to pretty-print a value), it tries each in turn until an extension
28662 language indicates it has performed the request (e.g., has returned the
28663 pretty-printed form of a value).
28664 This extends to errors while performing such requests: If an error happens
28665 while, for example, trying to pretty-print an object then the error is
28666 reported and any following extension languages are not tried.
28668 @node Interpreters
28669 @chapter Command Interpreters
28670 @cindex command interpreters
28672 @value{GDBN} supports multiple command interpreters, and some command
28673 infrastructure to allow users or user interface writers to switch
28674 between interpreters or run commands in other interpreters.
28676 @value{GDBN} currently supports two command interpreters, the console
28677 interpreter (sometimes called the command-line interpreter or @sc{cli})
28678 and the machine interface interpreter (or @sc{gdb/mi}).  This manual
28679 describes both of these interfaces in great detail.
28681 By default, @value{GDBN} will start with the console interpreter.
28682 However, the user may choose to start @value{GDBN} with another
28683 interpreter by specifying the @option{-i} or @option{--interpreter}
28684 startup options.  Defined interpreters include:
28686 @table @code
28687 @item console
28688 @cindex console interpreter
28689 The traditional console or command-line interpreter.  This is the most often
28690 used interpreter with @value{GDBN}. With no interpreter specified at runtime,
28691 @value{GDBN} will use this interpreter.
28693 @item mi
28694 @cindex mi interpreter
28695 The newest @sc{gdb/mi} interface (currently @code{mi3}).  Used primarily
28696 by programs wishing to use @value{GDBN} as a backend for a debugger GUI
28697 or an IDE.  For more information, see @ref{GDB/MI, ,The @sc{gdb/mi}
28698 Interface}.
28700 @item mi3
28701 @cindex mi3 interpreter
28702 The @sc{gdb/mi} interface introduced in @value{GDBN} 9.1.
28704 @item mi2
28705 @cindex mi2 interpreter
28706 The @sc{gdb/mi} interface introduced in @value{GDBN} 6.0.
28708 @item mi1
28709 @cindex mi1 interpreter
28710 The @sc{gdb/mi} interface introduced in @value{GDBN} 5.1.
28712 @end table
28714 @cindex invoke another interpreter
28716 @kindex interpreter-exec
28717 You may execute commands in any interpreter from the current
28718 interpreter using the appropriate command.  If you are running the
28719 console interpreter, simply use the @code{interpreter-exec} command:
28721 @smallexample
28722 interpreter-exec mi "-data-list-register-names"
28723 @end smallexample
28725 @sc{gdb/mi} has a similar command, although it is only available in versions of
28726 @value{GDBN} which support @sc{gdb/mi} version 2 (or greater).
28728 Note that @code{interpreter-exec} only changes the interpreter for the
28729 duration of the specified command.  It does not change the interpreter
28730 permanently.
28732 @cindex start a new independent interpreter
28734 Although you may only choose a single interpreter at startup, it is
28735 possible to run an independent interpreter on a specified input/output
28736 device (usually a tty).
28738 For example, consider a debugger GUI or IDE that wants to provide a
28739 @value{GDBN} console view.  It may do so by embedding a terminal
28740 emulator widget in its GUI, starting @value{GDBN} in the traditional
28741 command-line mode with stdin/stdout/stderr redirected to that
28742 terminal, and then creating an MI interpreter running on a specified
28743 input/output device.  The console interpreter created by @value{GDBN}
28744 at startup handles commands the user types in the terminal widget,
28745 while the GUI controls and synchronizes state with @value{GDBN} using
28746 the separate MI interpreter.
28748 To start a new secondary @dfn{user interface} running MI, use the
28749 @code{new-ui} command:
28751 @kindex new-ui
28752 @cindex new user interface
28753 @smallexample
28754 new-ui @var{interpreter} @var{tty}
28755 @end smallexample
28757 The @var{interpreter} parameter specifies the interpreter to run.
28758 This accepts the same values as the @code{interpreter-exec} command.
28759 For example, @samp{console}, @samp{mi}, @samp{mi2}, etc.  The
28760 @var{tty} parameter specifies the name of the bidirectional file the
28761 interpreter uses for input/output, usually the name of a
28762 pseudoterminal slave on Unix systems.  For example:
28764 @smallexample
28765 (@value{GDBP}) new-ui mi /dev/pts/9
28766 @end smallexample
28768 @noindent
28769 runs an MI interpreter on @file{/dev/pts/9}.
28771 @node TUI
28772 @chapter @value{GDBN} Text User Interface
28773 @cindex TUI
28774 @cindex Text User Interface
28776 The @value{GDBN} Text User Interface (TUI) is a terminal
28777 interface which uses the @code{curses} library to show the source
28778 file, the assembly output, the program registers and @value{GDBN}
28779 commands in separate text windows.  The TUI mode is supported only
28780 on platforms where a suitable version of the @code{curses} library
28781 is available.
28783 The TUI mode is enabled by default when you invoke @value{GDBN} as
28784 @samp{@value{GDBP} -tui}.
28785 You can also switch in and out of TUI mode while @value{GDBN} runs by
28786 using various TUI commands and key bindings, such as @command{tui
28787 enable} or @kbd{C-x C-a}.  @xref{TUI Commands, ,TUI Commands}, and
28788 @ref{TUI Keys, ,TUI Key Bindings}.
28790 @menu
28791 * TUI Overview::                TUI overview
28792 * TUI Keys::                    TUI key bindings
28793 * TUI Single Key Mode::         TUI single key mode
28794 * TUI Mouse Support::           TUI mouse support
28795 * TUI Commands::                TUI-specific commands
28796 * TUI Configuration::           TUI configuration variables
28797 @end menu
28799 @node TUI Overview
28800 @section TUI Overview
28802 In TUI mode, @value{GDBN} can display several text windows:
28804 @table @emph
28805 @item command
28806 This window is the @value{GDBN} command window with the @value{GDBN}
28807 prompt and the @value{GDBN} output.  The @value{GDBN} input is still
28808 managed using readline.
28810 @item source
28811 The source window shows the source file of the program.  The current
28812 line and active breakpoints are displayed in this window.
28814 @item assembly
28815 The assembly window shows the disassembly output of the program.
28817 @item register
28818 This window shows the processor registers.  Registers are highlighted
28819 when their values change.
28820 @end table
28822 The source and assembly windows show the current program position
28823 by highlighting the current line and marking it with a @samp{>} marker.
28824 Breakpoints are indicated with two markers.  The first marker
28825 indicates the breakpoint type:
28827 @table @code
28828 @item B
28829 Breakpoint which was hit at least once.
28831 @item b
28832 Breakpoint which was never hit.
28834 @item H
28835 Hardware breakpoint which was hit at least once.
28837 @item h
28838 Hardware breakpoint which was never hit.
28839 @end table
28841 The second marker indicates whether the breakpoint is enabled or not:
28843 @table @code
28844 @item +
28845 Breakpoint is enabled.
28847 @item -
28848 Breakpoint is disabled.
28849 @end table
28851 The source, assembly and register windows are updated when the current
28852 thread changes, when the frame changes, or when the program counter
28853 changes.
28855 These windows are not all visible at the same time.  The command
28856 window is always visible.  The others can be arranged in several
28857 layouts:
28859 @itemize @bullet
28860 @item
28861 source only,
28863 @item
28864 assembly only,
28866 @item
28867 source and assembly,
28869 @item
28870 source and registers, or
28872 @item
28873 assembly and registers.
28874 @end itemize
28876 These are the standard layouts, but other layouts can be defined.
28878 A status line above the command window shows the following information:
28880 @table @emph
28881 @item target
28882 Indicates the current @value{GDBN} target.
28883 (@pxref{Targets, ,Specifying a Debugging Target}).
28885 @item process
28886 Gives the current process or thread number.
28887 When no process is being debugged, this field is set to @code{No process}.
28889 @item function
28890 Gives the current function name for the selected frame.
28891 The name is demangled if demangling is turned on (@pxref{Print Settings}).
28892 When there is no symbol corresponding to the current program counter,
28893 the string @code{??} is displayed.
28895 @item line
28896 Indicates the current line number for the selected frame.
28897 When the current line number is not known, the string @code{??} is displayed.
28899 @item pc
28900 Indicates the current program counter address.
28901 @end table
28903 @node TUI Keys
28904 @section TUI Key Bindings
28905 @cindex TUI key bindings
28907 The TUI installs several key bindings in the readline keymaps
28908 @ifset SYSTEM_READLINE
28909 (@pxref{Command Line Editing, , , rluserman, GNU Readline Library}).
28910 @end ifset
28911 @ifclear SYSTEM_READLINE
28912 (@pxref{Command Line Editing}).
28913 @end ifclear
28914 The following key bindings are installed for both TUI mode and the
28915 @value{GDBN} standard mode.
28917 @table @kbd
28918 @kindex C-x C-a
28919 @item C-x C-a
28920 @kindex C-x a
28921 @itemx C-x a
28922 @kindex C-x A
28923 @itemx C-x A
28924 Enter or leave the TUI mode.  When leaving the TUI mode,
28925 the curses window management stops and @value{GDBN} operates using
28926 its standard mode, writing on the terminal directly.  When reentering
28927 the TUI mode, control is given back to the curses windows.
28928 The screen is then refreshed.
28930 This key binding uses the bindable Readline function
28931 @code{tui-switch-mode}.
28933 @kindex C-x 1
28934 @item C-x 1
28935 Use a TUI layout with only one window.  The layout will
28936 either be @samp{source} or @samp{assembly}.  When the TUI mode
28937 is not active, it will switch to the TUI mode.
28939 Think of this key binding as the Emacs @kbd{C-x 1} binding.
28941 This key binding uses the bindable Readline function
28942 @code{tui-delete-other-windows}.
28944 @kindex C-x 2
28945 @item C-x 2
28946 Use a TUI layout with at least two windows.  When the current
28947 layout already has two windows, the next layout with two windows is used.
28948 When a new layout is chosen, one window will always be common to the
28949 previous layout and the new one.
28951 Think of it as the Emacs @kbd{C-x 2} binding.
28953 This key binding uses the bindable Readline function
28954 @code{tui-change-windows}.
28956 @kindex C-x o
28957 @item C-x o
28958 Change the active window.  The TUI associates several key bindings
28959 (like scrolling and arrow keys) with the active window.  This command
28960 gives the focus to the next TUI window.
28962 Think of it as the Emacs @kbd{C-x o} binding.
28964 This key binding uses the bindable Readline function
28965 @code{tui-other-window}.
28967 @kindex C-x s
28968 @item C-x s
28969 Switch in and out of the TUI SingleKey mode that binds single
28970 keys to @value{GDBN} commands (@pxref{TUI Single Key Mode}).
28972 This key binding uses the bindable Readline function
28973 @code{next-keymap}.
28974 @end table
28976 The following key bindings only work in the TUI mode:
28978 @table @asis
28979 @kindex PgUp
28980 @item @key{PgUp}
28981 Scroll the active window one page up.
28983 @kindex PgDn
28984 @item @key{PgDn}
28985 Scroll the active window one page down.
28987 @kindex Up
28988 @item @key{Up}
28989 Scroll the active window one line up.
28991 @kindex Down
28992 @item @key{Down}
28993 Scroll the active window one line down.
28995 @kindex Left
28996 @item @key{Left}
28997 Scroll the active window one column left.
28999 @kindex Right
29000 @item @key{Right}
29001 Scroll the active window one column right.
29003 @kindex C-L
29004 @item @kbd{C-L}
29005 Refresh the screen.
29006 @end table
29008 Because the arrow keys scroll the active window in the TUI mode, they
29009 are not available for their normal use by readline unless the command
29010 window has the focus.  When another window is active, you must use
29011 other readline key bindings such as @kbd{C-p}, @kbd{C-n}, @kbd{C-b}
29012 and @kbd{C-f} to control the command window.
29014 @node TUI Single Key Mode
29015 @section TUI Single Key Mode
29016 @cindex TUI single key mode
29018 The TUI also provides a @dfn{SingleKey} mode, which binds several
29019 frequently used @value{GDBN} commands to single keys.  Type @kbd{C-x s} to
29020 switch into this mode, where the following key bindings are used:
29022 @table @kbd
29023 @kindex c @r{(SingleKey TUI key)}
29024 @item c
29025 continue
29027 @kindex d @r{(SingleKey TUI key)}
29028 @item d
29029 down
29031 @kindex f @r{(SingleKey TUI key)}
29032 @item f
29033 finish
29035 @kindex n @r{(SingleKey TUI key)}
29036 @item n
29037 next
29039 @kindex o @r{(SingleKey TUI key)}
29040 @item o
29041 nexti.  The shortcut letter @samp{o} stands for ``step Over''.
29043 @kindex q @r{(SingleKey TUI key)}
29044 @item q
29045 exit the SingleKey mode.
29047 @kindex r @r{(SingleKey TUI key)}
29048 @item r
29051 @kindex s @r{(SingleKey TUI key)}
29052 @item s
29053 step
29055 @kindex i @r{(SingleKey TUI key)}
29056 @item i
29057 stepi.  The shortcut letter @samp{i} stands for ``step Into''.
29059 @kindex u @r{(SingleKey TUI key)}
29060 @item u
29063 @kindex v @r{(SingleKey TUI key)}
29064 @item v
29065 info locals
29067 @kindex w @r{(SingleKey TUI key)}
29068 @item w
29069 where
29070 @end table
29072 Other keys temporarily switch to the @value{GDBN} command prompt.
29073 The key that was pressed is inserted in the editing buffer so that
29074 it is possible to type most @value{GDBN} commands without interaction
29075 with the TUI SingleKey mode.  Once the command is entered the TUI
29076 SingleKey mode is restored.  The only way to permanently leave
29077 this mode is by typing @kbd{q} or @kbd{C-x s}.
29079 @cindex SingleKey keymap name
29080 If @value{GDBN} was built with Readline 8.0 or later, the TUI
29081 SingleKey keymap will be named @samp{SingleKey}.  This can be used in
29082 @file{.inputrc} to add additional bindings to this keymap.
29084 @node TUI Mouse Support
29085 @section TUI Mouse Support
29086 @cindex TUI mouse support
29088 If the curses library supports the mouse, the TUI supports mouse
29089 actions.
29091 The mouse wheel scrolls the appropriate window under the mouse cursor.
29093 The TUI itself does not directly support copying/pasting with the
29094 mouse.  However, on Unix terminals, you can typically press and hold
29095 the @key{SHIFT} key on your keyboard to temporarily bypass
29096 @value{GDBN}'s TUI and access the terminal's native mouse copy/paste
29097 functionality (commonly, click-drag-release or double-click to select
29098 text, middle-click to paste).  This copy/paste works with the
29099 terminal's selection buffer, as opposed to the TUI's buffer.
29101 @node TUI Commands
29102 @section TUI-specific Commands
29103 @cindex TUI commands
29105 The TUI has specific commands to control the text windows.
29106 These commands are always available, even when @value{GDBN} is not in
29107 the TUI mode.  When @value{GDBN} is in the standard mode, most
29108 of these commands will automatically switch to the TUI mode.
29110 Note that if @value{GDBN}'s @code{stdout} is not connected to a
29111 terminal, or @value{GDBN} has been started with the machine interface
29112 interpreter (@pxref{GDB/MI, ,The @sc{gdb/mi} Interface}), most of
29113 these commands will fail with an error, because it would not be
29114 possible or desirable to enable curses window management.
29116 @table @code
29117 @item tui enable
29118 @kindex tui enable
29119 Activate TUI mode.  The last active TUI window layout will be used if
29120 TUI mode has previously been used in the current debugging session,
29121 otherwise a default layout is used.
29123 @item tui disable
29124 @kindex tui disable
29125 Disable TUI mode, returning to the console interpreter.
29127 @anchor{info_win_command}
29128 @item info win
29129 @kindex info win
29130 List the names and sizes of all currently displayed windows.
29132 @item tui new-layout @var{name} @var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}
29133 @kindex tui new-layout
29134 Create a new TUI layout.  The new layout will be named @var{name}, and
29135 can be accessed using the @code{layout} command (see below).
29137 Each @var{window} parameter is either the name of a window to display,
29138 or a window description.  The windows will be displayed from top to
29139 bottom in the order listed.
29141 The names of the windows are the same as the ones given to the
29142 @code{focus} command (see below); additional, the @code{status}
29143 window can be specified.  Note that, because it is of fixed height,
29144 the weight assigned to the status window is of no importance.  It is
29145 conventional to use @samp{0} here.
29147 A window description looks a bit like an invocation of @code{tui
29148 new-layout}, and is of the form
29149 @{@r{[}@code{-horizontal}@r{]}@var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}@}.
29151 This specifies a sub-layout.  If @code{-horizontal} is given, the
29152 windows in this description will be arranged side-by-side, rather than
29153 top-to-bottom.
29155 Each @var{weight} is an integer.  It is the weight of this window
29156 relative to all the other windows in the layout.  These numbers are
29157 used to calculate how much of the screen is given to each window.
29159 For example:
29161 @example
29162 (gdb) tui new-layout example src 1 regs 1 status 0 cmd 1
29163 @end example
29165 Here, the new layout is called @samp{example}.  It shows the source
29166 and register windows, followed by the status window, and then finally
29167 the command window.  The non-status windows all have the same weight,
29168 so the terminal will be split into three roughly equal sections.
29170 Here is a more complex example, showing a horizontal layout:
29172 @example
29173 (gdb) tui new-layout example @{-horizontal src 1 asm 1@} 2 status 0 cmd 1
29174 @end example
29176 This will result in side-by-side source and assembly windows; with the
29177 status and command window being beneath these, filling the entire
29178 width of the terminal.  Because they have weight 2, the source and
29179 assembly windows will be twice the height of the command window.
29181 @kindex tui layout
29182 @kindex layout
29183 @item tui layout @var{name}
29184 @itemx layout @var{name}
29185 Changes which TUI windows are displayed.  The @var{name} parameter
29186 controls which layout is shown.  It can be either one of the built-in
29187 layout names, or the name of a layout defined by the user using
29188 @code{tui new-layout}.
29190 The built-in layouts are as follows:
29192 @table @code
29193 @item next
29194 Display the next layout.
29196 @item prev
29197 Display the previous layout.
29199 @item src
29200 Display the source and command windows.
29202 @item asm
29203 Display the assembly and command windows.
29205 @item split
29206 Display the source, assembly, and command windows.
29208 @item regs
29209 When in @code{src} layout display the register, source, and command
29210 windows.  When in @code{asm} or @code{split} layout display the
29211 register, assembler, and command windows.
29212 @end table
29214 @kindex focus
29215 @item tui focus @var{name}
29216 @itemx focus @var{name}
29217 Changes which TUI window is currently active for scrolling.  The
29218 @var{name} parameter can be any of the following:
29220 @table @code
29221 @item next
29222 Make the next window active for scrolling.
29224 @item prev
29225 Make the previous window active for scrolling.
29227 @item src
29228 Make the source window active for scrolling.
29230 @item asm
29231 Make the assembly window active for scrolling.
29233 @item regs
29234 Make the register window active for scrolling.
29236 @item cmd
29237 Make the command window active for scrolling.
29238 @end table
29240 @kindex tui refresh
29241 @kindex refresh
29242 @item tui refresh
29243 @itemx refresh
29244 Refresh the screen.  This is similar to typing @kbd{C-L}.
29246 @item tui reg @var{group}
29247 @kindex tui reg
29248 Changes the register group displayed in the tui register window to
29249 @var{group}.  If the register window is not currently displayed this
29250 command will cause the register window to be displayed.  The list of
29251 register groups, as well as their order is target specific. The
29252 following groups are available on most targets:
29253 @table @code
29254 @item next
29255 Repeatedly selecting this group will cause the display to cycle
29256 through all of the available register groups.
29258 @item prev
29259 Repeatedly selecting this group will cause the display to cycle
29260 through all of the available register groups in the reverse order to
29261 @var{next}.
29263 @item general
29264 Display the general registers.
29265 @item float
29266 Display the floating point registers.
29267 @item system
29268 Display the system registers.
29269 @item vector
29270 Display the vector registers.
29271 @item all
29272 Display all registers.
29273 @end table
29275 @item update
29276 @kindex update
29277 Update the source window and the current execution point.
29279 @kindex tui window height
29280 @kindex winheight
29281 @item tui window height @var{name} +@var{count}
29282 @itemx tui window height @var{name} -@var{count}
29283 @itemx winheight @var{name} +@var{count}
29284 @itemx winheight @var{name} -@var{count}
29285 Change the height of the window @var{name} by @var{count} lines.
29286 Positive counts increase the height, while negative counts decrease
29287 it.  The @var{name} parameter can be the name of any currently visible
29288 window.  The names of the currently visible windows can be discovered
29289 using @kbd{info win} (@pxref{info_win_command,,info win}).
29291 The set of currently visible windows must always fill the terminal,
29292 and so, it is only possible to resize on window if there are other
29293 visible windows that can either give or receive the extra terminal
29294 space.
29296 @kindex tui window width
29297 @kindex winwidth
29298 @item tui window width @var{name} +@var{count}
29299 @itemx tui window width @var{name} -@var{count}
29300 @itemx winwidth @var{name} +@var{count}
29301 @itemx winwidth @var{name} -@var{count}
29302 Change the width of the window @var{name} by @var{count} columns.
29303 Positive counts increase the width, while negative counts decrease it.
29304 The @var{name} parameter can be the name of any currently visible
29305 window.  The names of the currently visible windows can be discovered
29306 using @code{info win} (@pxref{info_win_command,,info win}).
29308 The set of currently visible windows must always fill the terminal,
29309 and so, it is only possible to resize on window if there are other
29310 visible windows that can either give or receive the extra terminal
29311 space.
29312 @end table
29314 @node TUI Configuration
29315 @section TUI Configuration Variables
29316 @cindex TUI configuration variables
29318 Several configuration variables control the appearance of TUI windows.
29320 @table @code
29321 @item set tui border-kind @var{kind}
29322 @kindex set tui border-kind
29323 Select the border appearance for the source, assembly and register windows.
29324 The possible values are the following:
29325 @table @code
29326 @item space
29327 Use a space character to draw the border.
29329 @item ascii
29330 Use @sc{ascii} characters @samp{+}, @samp{-} and @samp{|} to draw the border.
29332 @item acs
29333 Use the Alternate Character Set to draw the border.  The border is
29334 drawn using character line graphics if the terminal supports them.
29335 @end table
29337 @item set tui border-mode @var{mode}
29338 @kindex set tui border-mode
29339 @itemx set tui active-border-mode @var{mode}
29340 @kindex set tui active-border-mode
29341 Select the display attributes for the borders of the inactive windows
29342 or the active window.  The @var{mode} can be one of the following:
29343 @table @code
29344 @item normal
29345 Use normal attributes to display the border.
29347 @item standout
29348 Use standout mode.
29350 @item reverse
29351 Use reverse video mode.
29353 @item half
29354 Use half bright mode.
29356 @item half-standout
29357 Use half bright and standout mode.
29359 @item bold
29360 Use extra bright or bold mode.
29362 @item bold-standout
29363 Use extra bright or bold and standout mode.
29364 @end table
29366 @item set tui tab-width @var{nchars}
29367 @kindex set tui tab-width
29368 @kindex tabset
29369 Set the width of tab stops to be @var{nchars} characters.  This
29370 setting affects the display of TAB characters in the source and
29371 assembly windows.
29373 @item set tui compact-source @r{[}on@r{|}off@r{]}
29374 @kindex set tui compact-source
29375 Set whether the TUI source window is displayed in ``compact'' form.
29376 The default display uses more space for line numbers and starts the
29377 source text at the next tab stop; the compact display uses only as
29378 much space as is needed for the line numbers in the current file, and
29379 only a single space to separate the line numbers from the source.
29381 @kindex set debug tui
29382 @item set debug tui @r{[}on|off@r{]}
29383 Turn on or off display of @value{GDBN} internal debug messages relating
29384 to the TUI.
29386 @kindex show debug tui
29387 @item show debug tui
29388 Show the current status of displaying @value{GDBN} internal debug
29389 messages relating to the TUI.
29391 @end table
29393 Note that the colors of the TUI borders can be controlled using the
29394 appropriate @code{set style} commands.  @xref{Output Styling}.
29396 @node Emacs
29397 @chapter Using @value{GDBN} under @sc{gnu} Emacs
29399 @cindex Emacs
29400 @cindex @sc{gnu} Emacs
29401 A special interface allows you to use @sc{gnu} Emacs to view (and
29402 edit) the source files for the program you are debugging with
29403 @value{GDBN}.
29405 To use this interface, use the command @kbd{M-x gdb} in Emacs.  Give the
29406 executable file you want to debug as an argument.  This command starts
29407 @value{GDBN} as a subprocess of Emacs, with input and output through a newly
29408 created Emacs buffer.
29409 @c (Do not use the @code{-tui} option to run @value{GDBN} from Emacs.)
29411 Running @value{GDBN} under Emacs can be just like running @value{GDBN} normally except for two
29412 things:
29414 @itemize @bullet
29415 @item
29416 All ``terminal'' input and output goes through an Emacs buffer, called
29417 the GUD buffer.
29419 This applies both to @value{GDBN} commands and their output, and to the input
29420 and output done by the program you are debugging.
29422 This is useful because it means that you can copy the text of previous
29423 commands and input them again; you can even use parts of the output
29424 in this way.
29426 All the facilities of Emacs' Shell mode are available for interacting
29427 with your program.  In particular, you can send signals the usual
29428 way---for example, @kbd{C-c C-c} for an interrupt, @kbd{C-c C-z} for a
29429 stop.
29431 @item
29432 @value{GDBN} displays source code through Emacs.
29434 Each time @value{GDBN} displays a stack frame, Emacs automatically finds the
29435 source file for that frame and puts an arrow (@samp{=>}) at the
29436 left margin of the current line.  Emacs uses a separate buffer for
29437 source display, and splits the screen to show both your @value{GDBN} session
29438 and the source.
29440 Explicit @value{GDBN} @code{list} or search commands still produce output as
29441 usual, but you probably have no reason to use them from Emacs.
29442 @end itemize
29444 We call this @dfn{text command mode}.  Emacs 22.1, and later, also uses
29445 a graphical mode, enabled by default, which provides further buffers
29446 that can control the execution and describe the state of your program.
29447 @xref{GDB Graphical Interface,,, Emacs, The @sc{gnu} Emacs Manual}.
29449 If you specify an absolute file name when prompted for the @kbd{M-x
29450 gdb} argument, then Emacs sets your current working directory to where
29451 your program resides.  If you only specify the file name, then Emacs
29452 sets your current working directory to the directory associated
29453 with the previous buffer.  In this case, @value{GDBN} may find your
29454 program by searching your environment's @env{PATH} variable, but on
29455 some operating systems it might not find the source.  So, although the
29456 @value{GDBN} input and output session proceeds normally, the auxiliary
29457 buffer does not display the current source and line of execution.
29459 The initial working directory of @value{GDBN} is printed on the top
29460 line of the GUD buffer and this serves as a default for the commands
29461 that specify files for @value{GDBN} to operate on.  @xref{Files,
29462 ,Commands to Specify Files}.
29464 By default, @kbd{M-x gdb} calls the program called @file{gdb}.  If you
29465 need to call @value{GDBN} by a different name (for example, if you
29466 keep several configurations around, with different names) you can
29467 customize the Emacs variable @code{gud-gdb-command-name} to run the
29468 one you want.
29470 In the GUD buffer, you can use these special Emacs commands in
29471 addition to the standard Shell mode commands:
29473 @table @kbd
29474 @item C-h m
29475 Describe the features of Emacs' GUD Mode.
29477 @item C-c C-s
29478 Execute to another source line, like the @value{GDBN} @code{step} command; also
29479 update the display window to show the current file and location.
29481 @item C-c C-n
29482 Execute to next source line in this function, skipping all function
29483 calls, like the @value{GDBN} @code{next} command.  Then update the display window
29484 to show the current file and location.
29486 @item C-c C-i
29487 Execute one instruction, like the @value{GDBN} @code{stepi} command; update
29488 display window accordingly.
29490 @item C-c C-f
29491 Execute until exit from the selected stack frame, like the @value{GDBN}
29492 @code{finish} command.
29494 @item C-c C-r
29495 Continue execution of your program, like the @value{GDBN} @code{continue}
29496 command.
29498 @item C-c <
29499 Go up the number of frames indicated by the numeric argument
29500 (@pxref{Arguments, , Numeric Arguments, Emacs, The @sc{gnu} Emacs Manual}),
29501 like the @value{GDBN} @code{up} command.
29503 @item C-c >
29504 Go down the number of frames indicated by the numeric argument, like the
29505 @value{GDBN} @code{down} command.
29506 @end table
29508 In any source file, the Emacs command @kbd{C-x @key{SPC}} (@code{gud-break})
29509 tells @value{GDBN} to set a breakpoint on the source line point is on.
29511 In text command mode, if you type @kbd{M-x speedbar}, Emacs displays a
29512 separate frame which shows a backtrace when the GUD buffer is current.
29513 Move point to any frame in the stack and type @key{RET} to make it
29514 become the current frame and display the associated source in the
29515 source buffer.  Alternatively, click @kbd{Mouse-2} to make the
29516 selected frame become the current one.  In graphical mode, the
29517 speedbar displays watch expressions.
29519 If you accidentally delete the source-display buffer, an easy way to get
29520 it back is to type the command @code{f} in the @value{GDBN} buffer, to
29521 request a frame display; when you run under Emacs, this recreates
29522 the source buffer if necessary to show you the context of the current
29523 frame.
29525 The source files displayed in Emacs are in ordinary Emacs buffers
29526 which are visiting the source files in the usual way.  You can edit
29527 the files with these buffers if you wish; but keep in mind that @value{GDBN}
29528 communicates with Emacs in terms of line numbers.  If you add or
29529 delete lines from the text, the line numbers that @value{GDBN} knows cease
29530 to correspond properly with the code.
29532 A more detailed description of Emacs' interaction with @value{GDBN} is
29533 given in the Emacs manual (@pxref{Debuggers,,, Emacs, The @sc{gnu}
29534 Emacs Manual}).
29536 @node GDB/MI
29537 @chapter The @sc{gdb/mi} Interface
29539 @unnumberedsec Function and Purpose
29541 @cindex @sc{gdb/mi}, its purpose
29542 @sc{gdb/mi} is a line based machine oriented text interface to
29543 @value{GDBN} and is activated by specifying using the
29544 @option{--interpreter} command line option (@pxref{Mode Options}).  It
29545 is specifically intended to support the development of systems which
29546 use the debugger as just one small component of a larger system.
29548 This chapter is a specification of the @sc{gdb/mi} interface.  It is written
29549 in the form of a reference manual.
29551 Note that @sc{gdb/mi} is still under construction, so some of the
29552 features described below are incomplete and subject to change
29553 (@pxref{GDB/MI Development and Front Ends, , @sc{gdb/mi} Development and Front Ends}).  
29555 @unnumberedsec Notation and Terminology
29557 @cindex notational conventions, for @sc{gdb/mi}
29558 This chapter uses the following notation:
29560 @itemize @bullet
29561 @item
29562 @code{|} separates two alternatives.
29564 @item
29565 @code{[ @var{something} ]} indicates that @var{something} is optional:
29566 it may or may not be given.
29568 @item
29569 @code{( @var{group} )*} means that @var{group} inside the parentheses
29570 may repeat zero or more times.
29572 @item
29573 @code{( @var{group} )+} means that @var{group} inside the parentheses
29574 may repeat one or more times.
29576 @item
29577 @code{"@var{string}"} means a literal @var{string}.
29578 @end itemize
29580 @ignore
29581 @heading Dependencies
29582 @end ignore
29584 @menu
29585 * GDB/MI General Design::
29586 * GDB/MI Command Syntax::
29587 * GDB/MI Compatibility with CLI::
29588 * GDB/MI Development and Front Ends::
29589 * GDB/MI Output Records::
29590 * GDB/MI Simple Examples::
29591 * GDB/MI Command Description Format::
29592 * GDB/MI Breakpoint Commands::
29593 * GDB/MI Catchpoint Commands::
29594 * GDB/MI Program Context::
29595 * GDB/MI Thread Commands::
29596 * GDB/MI Ada Tasking Commands::
29597 * GDB/MI Program Execution::
29598 * GDB/MI Stack Manipulation::
29599 * GDB/MI Variable Objects::
29600 * GDB/MI Data Manipulation::
29601 * GDB/MI Tracepoint Commands::
29602 * GDB/MI Symbol Query::
29603 * GDB/MI File Commands::
29604 @ignore
29605 * GDB/MI Kod Commands::
29606 * GDB/MI Memory Overlay Commands::
29607 * GDB/MI Signal Handling Commands::
29608 @end ignore
29609 * GDB/MI Target Manipulation::
29610 * GDB/MI File Transfer Commands::
29611 * GDB/MI Ada Exceptions Commands::
29612 * GDB/MI Support Commands::
29613 * GDB/MI Miscellaneous Commands::
29614 @end menu
29616 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29617 @node GDB/MI General Design
29618 @section @sc{gdb/mi} General Design
29619 @cindex GDB/MI General Design
29621 Interaction of a @sc{GDB/MI} frontend with @value{GDBN} involves three
29622 parts---commands sent to @value{GDBN}, responses to those commands
29623 and notifications.  Each command results in exactly one response,
29624 indicating either successful completion of the command, or an error.
29625 For the commands that do not resume the target, the response contains the
29626 requested information.  For the commands that resume the target, the
29627 response only indicates whether the target was successfully resumed.
29628 Notifications is the mechanism for reporting changes in the state of the
29629 target, or in @value{GDBN} state, that cannot conveniently be associated with
29630 a command and reported as part of that command response.
29632 The important examples of notifications are:
29633 @itemize @bullet
29635 @item 
29636 Exec notifications.  These are used to report changes in
29637 target state---when a target is resumed, or stopped.  It would not
29638 be feasible to include this information in response of resuming
29639 commands, because one resume commands can result in multiple events in
29640 different threads.  Also, quite some time may pass before any event
29641 happens in the target, while a frontend needs to know whether the resuming
29642 command itself was successfully executed.
29644 @item 
29645 Console output, and status notifications.  Console output
29646 notifications are used to report output of CLI commands, as well as
29647 diagnostics for other commands.  Status notifications are used to
29648 report the progress of a long-running operation.  Naturally, including
29649 this information in command response would mean no output is produced
29650 until the command is finished, which is undesirable.
29652 @item
29653 General notifications.  Commands may have various side effects on
29654 the @value{GDBN} or target state beyond their official purpose.  For example,
29655 a command may change the selected thread.  Although such changes can
29656 be included in command response, using notification allows for more
29657 orthogonal frontend design.
29659 @end itemize
29661 There's no guarantee that whenever an MI command reports an error,
29662 @value{GDBN} or the target are in any specific state, and especially,
29663 the state is not reverted to the state before the MI command was
29664 processed.  Therefore, whenever an MI command results in an error, 
29665 we recommend that the frontend refreshes all the information shown in 
29666 the user interface.
29669 @menu
29670 * Context management::
29671 * Asynchronous and non-stop modes::
29672 * Thread groups::
29673 @end menu
29675 @node Context management
29676 @subsection Context management
29678 @subsubsection Threads and Frames
29680 In most cases when @value{GDBN} accesses the target, this access is
29681 done in context of a specific thread and frame (@pxref{Frames}).
29682 Often, even when accessing global data, the target requires that a thread
29683 be specified.  The CLI interface maintains the selected thread and frame,
29684 and supplies them to target on each command.  This is convenient,
29685 because a command line user would not want to specify that information
29686 explicitly on each command, and because user interacts with
29687 @value{GDBN} via a single terminal, so no confusion is possible as 
29688 to what thread and frame are the current ones.
29690 In the case of MI, the concept of selected thread and frame is less
29691 useful.  First, a frontend can easily remember this information
29692 itself.  Second, a graphical frontend can have more than one window,
29693 each one used for debugging a different thread, and the frontend might
29694 want to access additional threads for internal purposes.  This
29695 increases the risk that by relying on implicitly selected thread, the
29696 frontend may be operating on a wrong one.  Therefore, each MI command
29697 should explicitly specify which thread and frame to operate on.  To
29698 make it possible, each MI command accepts the @samp{--thread} and
29699 @samp{--frame} options, the value to each is @value{GDBN} global
29700 identifier for thread and frame to operate on.
29702 Usually, each top-level window in a frontend allows the user to select
29703 a thread and a frame, and remembers the user selection for further
29704 operations.  However, in some cases @value{GDBN} may suggest that the
29705 current thread or frame be changed.  For example, when stopping on a
29706 breakpoint it is reasonable to switch to the thread where breakpoint is
29707 hit.  For another example, if the user issues the CLI @samp{thread} or
29708 @samp{frame} commands via the frontend, it is desirable to change the
29709 frontend's selection to the one specified by user.  @value{GDBN}
29710 communicates the suggestion to change current thread and frame using the
29711 @samp{=thread-selected} notification.
29713 Note that historically, MI shares the selected thread with CLI, so 
29714 frontends used the @code{-thread-select} to execute commands in the
29715 right context.  However, getting this to work right is cumbersome.  The
29716 simplest way is for frontend to emit @code{-thread-select} command
29717 before every command.  This doubles the number of commands that need
29718 to be sent.  The alternative approach is to suppress @code{-thread-select}
29719 if the selected thread in @value{GDBN} is supposed to be identical to the
29720 thread the frontend wants to operate on.  However, getting this
29721 optimization right can be tricky.  In particular, if the frontend
29722 sends several commands to @value{GDBN}, and one of the commands changes the
29723 selected thread, then the behaviour of subsequent commands will
29724 change.  So, a frontend should either wait for response from such
29725 problematic commands, or explicitly add @code{-thread-select} for
29726 all subsequent commands.  No frontend is known to do this exactly
29727 right, so it is suggested to just always pass the @samp{--thread} and
29728 @samp{--frame} options.
29730 @subsubsection Language
29732 The execution of several commands depends on which language is selected.
29733 By default, the current language (@pxref{show language}) is used.
29734 But for commands known to be language-sensitive, it is recommended
29735 to use the @samp{--language} option.  This option takes one argument,
29736 which is the name of the language to use while executing the command.
29737 For instance:
29739 @smallexample
29740 -data-evaluate-expression --language c "sizeof (void*)"
29741 ^done,value="4"
29742 (gdb) 
29743 @end smallexample
29745 The valid language names are the same names accepted by the
29746 @samp{set language} command (@pxref{Manually}), excluding @samp{auto},
29747 @samp{local} or @samp{unknown}.
29749 @node Asynchronous and non-stop modes
29750 @subsection Asynchronous command execution and non-stop mode
29752 On some targets, @value{GDBN} is capable of processing MI commands
29753 even while the target is running.  This is called @dfn{asynchronous
29754 command execution} (@pxref{Background Execution}).  The frontend may
29755 specify a preference for asynchronous execution using the
29756 @code{-gdb-set mi-async 1} command, which should be emitted before
29757 either running the executable or attaching to the target.  After the
29758 frontend has started the executable or attached to the target, it can
29759 find if asynchronous execution is enabled using the
29760 @code{-list-target-features} command.
29762 @table @code
29763 @cindex foreground execution
29764 @cindex background execution
29765 @cindex asynchronous execution
29766 @cindex execution, foreground, background and asynchronous
29767 @kindex set mi-async
29768 @item -gdb-set mi-async @r{[}on@r{|}off@r{]}
29769 Set whether MI is in asynchronous mode.
29771 When @code{off}, which is the default, MI execution commands (e.g.,
29772 @code{-exec-continue}) are foreground commands, and @value{GDBN} waits
29773 for the program to stop before processing further commands.
29775 When @code{on}, MI execution commands are background execution
29776 commands (e.g., @code{-exec-continue} becomes the equivalent of the
29777 @code{c&} CLI command), and so @value{GDBN} is capable of processing
29778 MI commands even while the target is running.
29780 @kindex show mi-async
29781 @item -gdb-show mi-async
29782 Show whether MI asynchronous mode is enabled.
29783 @end table
29785 Note: In @value{GDBN} version 7.7 and earlier, this option was called
29786 @code{target-async} instead of @code{mi-async}, and it had the effect
29787 of both putting MI in asynchronous mode and making CLI background
29788 commands possible.  CLI background commands are now always possible
29789 ``out of the box'' if the target supports them.  The old spelling is
29790 kept as a deprecated alias for backwards compatibility.
29792 Even if @value{GDBN} can accept a command while target is running,
29793 many commands that access the target do not work when the target is
29794 running.  Therefore, asynchronous command execution is most useful
29795 when combined with non-stop mode (@pxref{Non-Stop Mode}).  Then,
29796 it is possible to examine the state of one thread, while other threads
29797 are running.
29799 When a given thread is running, MI commands that try to access the
29800 target in the context of that thread may not work, or may work only on
29801 some targets.  In particular, commands that try to operate on thread's
29802 stack will not work, on any target.  Commands that read memory, or
29803 modify breakpoints, may work or not work, depending on the target.  Note
29804 that even commands that operate on global state, such as @code{print},
29805 @code{set}, and breakpoint commands, still access the target in the
29806 context of a specific thread,  so frontend should try to find a
29807 stopped thread and perform the operation on that thread (using the
29808 @samp{--thread} option).
29810 Which commands will work in the context of a running thread is
29811 highly target dependent.  However, the two commands
29812 @code{-exec-interrupt}, to stop a thread, and @code{-thread-info},
29813 to find the state of a thread, will always work.
29815 @node Thread groups
29816 @subsection Thread groups
29817 @value{GDBN} may be used to debug several processes at the same time.
29818 On some platforms, @value{GDBN} may support debugging of several
29819 hardware systems, each one having several cores with several different
29820 processes running on each core.  This section describes the MI
29821 mechanism to support such debugging scenarios.
29823 The key observation is that regardless of the structure of the 
29824 target, MI can have a global list of threads, because most commands that 
29825 accept the @samp{--thread} option do not need to know what process that
29826 thread belongs to.  Therefore, it is not necessary to introduce
29827 neither additional @samp{--process} option, nor an notion of the
29828 current process in the MI interface.  The only strictly new feature
29829 that is required is the ability to find how the threads are grouped
29830 into processes.
29832 To allow the user to discover such grouping, and to support arbitrary
29833 hierarchy of machines/cores/processes, MI introduces the concept of a
29834 @dfn{thread group}.  Thread group is a collection of threads and other
29835 thread groups.  A thread group always has a string identifier, a type,
29836 and may have additional attributes specific to the type.  A new
29837 command, @code{-list-thread-groups}, returns the list of top-level
29838 thread groups, which correspond to processes that @value{GDBN} is
29839 debugging at the moment.  By passing an identifier of a thread group
29840 to the @code{-list-thread-groups} command, it is possible to obtain
29841 the members of specific thread group.
29843 To allow the user to easily discover processes, and other objects, he
29844 wishes to debug, a concept of @dfn{available thread group} is
29845 introduced.  Available thread group is an thread group that
29846 @value{GDBN} is not debugging, but that can be attached to, using the
29847 @code{-target-attach} command.  The list of available top-level thread
29848 groups can be obtained using @samp{-list-thread-groups --available}.
29849 In general, the content of a thread group may be only retrieved only
29850 after attaching to that thread group.
29852 Thread groups are related to inferiors (@pxref{Inferiors Connections and
29853 Programs}).  Each inferior corresponds to a thread group of a special
29854 type @samp{process}, and some additional operations are permitted on
29855 such thread groups.
29857 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29858 @node GDB/MI Command Syntax
29859 @section @sc{gdb/mi} Command Syntax
29861 @menu
29862 * GDB/MI Input Syntax::
29863 * GDB/MI Output Syntax::
29864 @end menu
29866 @node GDB/MI Input Syntax
29867 @subsection @sc{gdb/mi} Input Syntax
29869 @cindex input syntax for @sc{gdb/mi}
29870 @cindex @sc{gdb/mi}, input syntax
29871 @table @code
29872 @item @var{command} @expansion{}
29873 @code{@var{cli-command} | @var{mi-command}}
29875 @item @var{cli-command} @expansion{}
29876 @code{[ @var{token} ] @var{cli-command} @var{nl}}, where
29877 @var{cli-command} is any existing @value{GDBN} CLI command.
29879 @item @var{mi-command} @expansion{}
29880 @code{[ @var{token} ] "-" @var{operation} ( " " @var{option} )*
29881 @code{[} " --" @code{]} ( " " @var{parameter} )* @var{nl}}
29883 @item @var{token} @expansion{}
29884 "any sequence of digits"
29886 @item @var{option} @expansion{}
29887 @code{"-" @var{parameter} [ " " @var{parameter} ]}
29889 @item @var{parameter} @expansion{}
29890 @code{@var{non-blank-sequence} | @var{c-string}}
29892 @item @var{operation} @expansion{}
29893 @emph{any of the operations described in this chapter}
29895 @item @var{non-blank-sequence} @expansion{}
29896 @emph{anything, provided it doesn't contain special characters such as
29897 "-", @var{nl}, """ and of course " "}
29899 @item @var{c-string} @expansion{}
29900 @code{""" @var{seven-bit-iso-c-string-content} """}
29902 @item @var{nl} @expansion{}
29903 @code{CR | CR-LF}
29904 @end table
29906 @noindent
29907 Notes:
29909 @itemize @bullet
29910 @item
29911 The CLI commands are still handled by the @sc{mi} interpreter; their
29912 output is described below.
29914 @item
29915 The @code{@var{token}}, when present, is passed back when the command
29916 finishes.
29918 @item
29919 Some @sc{mi} commands accept optional arguments as part of the parameter
29920 list.  Each option is identified by a leading @samp{-} (dash) and may be
29921 followed by an optional argument parameter.  Options occur first in the
29922 parameter list and can be delimited from normal parameters using
29923 @samp{--} (this is useful when some parameters begin with a dash).
29924 @end itemize
29926 Pragmatics:
29928 @itemize @bullet
29929 @item
29930 We want easy access to the existing CLI syntax (for debugging).
29932 @item
29933 We want it to be easy to spot a @sc{mi} operation.
29934 @end itemize
29936 @node GDB/MI Output Syntax
29937 @subsection @sc{gdb/mi} Output Syntax
29939 @cindex output syntax of @sc{gdb/mi}
29940 @cindex @sc{gdb/mi}, output syntax
29941 The output from @sc{gdb/mi} consists of zero or more out-of-band records
29942 followed, optionally, by a single result record.  This result record
29943 is for the most recent command.  The sequence of output records is
29944 terminated by @samp{(gdb)}.
29946 If an input command was prefixed with a @code{@var{token}} then the
29947 corresponding output for that command will also be prefixed by that same
29948 @var{token}.
29950 @table @code
29951 @item @var{output} @expansion{}
29952 @code{( @var{out-of-band-record} )* [ @var{result-record} ] "(gdb)" @var{nl}}
29954 @item @var{result-record} @expansion{}
29955 @code{ [ @var{token} ] "^" @var{result-class} ( "," @var{result} )* @var{nl}}
29957 @item @var{out-of-band-record} @expansion{}
29958 @code{@var{async-record} | @var{stream-record}}
29960 @item @var{async-record} @expansion{}
29961 @code{@var{exec-async-output} | @var{status-async-output} | @var{notify-async-output}}
29963 @item @var{exec-async-output} @expansion{}
29964 @code{[ @var{token} ] "*" @var{async-output nl}}
29966 @item @var{status-async-output} @expansion{}
29967 @code{[ @var{token} ] "+" @var{async-output nl}}
29969 @item @var{notify-async-output} @expansion{}
29970 @code{[ @var{token} ] "=" @var{async-output nl}}
29972 @item @var{async-output} @expansion{}
29973 @code{@var{async-class} ( "," @var{result} )*}
29975 @item @var{result-class} @expansion{}
29976 @code{"done" | "running" | "connected" | "error" | "exit"}
29978 @item @var{async-class} @expansion{}
29979 @code{"stopped" | @var{others}} (where @var{others} will be added
29980 depending on the needs---this is still in development).
29982 @item @var{result} @expansion{}
29983 @code{ @var{variable} "=" @var{value}}
29985 @item @var{variable} @expansion{}
29986 @code{ @var{string} }
29988 @item @var{value} @expansion{}
29989 @code{ @var{const} | @var{tuple} | @var{list} }
29991 @item @var{const} @expansion{}
29992 @code{@var{c-string}}
29994 @item @var{tuple} @expansion{}
29995 @code{ "@{@}" | "@{" @var{result} ( "," @var{result} )* "@}" }
29997 @item @var{list} @expansion{}
29998 @code{ "[]" | "[" @var{value} ( "," @var{value} )* "]" | "["
29999 @var{result} ( "," @var{result} )* "]" }
30001 @item @var{stream-record} @expansion{}
30002 @code{@var{console-stream-output} | @var{target-stream-output} | @var{log-stream-output}}
30004 @item @var{console-stream-output} @expansion{}
30005 @code{"~" @var{c-string nl}}
30007 @item @var{target-stream-output} @expansion{}
30008 @code{"@@" @var{c-string nl}}
30010 @item @var{log-stream-output} @expansion{}
30011 @code{"&" @var{c-string nl}}
30013 @item @var{nl} @expansion{}
30014 @code{CR | CR-LF}
30016 @item @var{token} @expansion{}
30017 @emph{any sequence of digits}.
30018 @end table
30020 @noindent
30021 Notes:
30023 @itemize @bullet
30024 @item
30025 All output sequences end in a single line containing a period.
30027 @item
30028 The @code{@var{token}} is from the corresponding request.  Note that
30029 for all async output, while the token is allowed by the grammar and
30030 may be output by future versions of @value{GDBN} for select async
30031 output messages, it is generally omitted.  Frontends should treat
30032 all async output as reporting general changes in the state of the
30033 target and there should be no need to associate async output to any
30034 prior command.
30036 @item
30037 @cindex status output in @sc{gdb/mi}
30038 @var{status-async-output} contains on-going status information about the
30039 progress of a slow operation.  It can be discarded.  All status output is
30040 prefixed by @samp{+}.
30042 @item
30043 @cindex async output in @sc{gdb/mi}
30044 @var{exec-async-output} contains asynchronous state change on the target
30045 (stopped, started, disappeared).  All async output is prefixed by
30046 @samp{*}.
30048 @item
30049 @cindex notify output in @sc{gdb/mi}
30050 @var{notify-async-output} contains supplementary information that the
30051 client should handle (e.g., a new breakpoint information).  All notify
30052 output is prefixed by @samp{=}.
30054 @item
30055 @cindex console output in @sc{gdb/mi}
30056 @var{console-stream-output} is output that should be displayed as is in the
30057 console.  It is the textual response to a CLI command.  All the console
30058 output is prefixed by @samp{~}.
30060 @item
30061 @cindex target output in @sc{gdb/mi}
30062 @var{target-stream-output} is the output produced by the target program.
30063 All the target output is prefixed by @samp{@@}.
30065 @item
30066 @cindex log output in @sc{gdb/mi}
30067 @var{log-stream-output} is output text coming from @value{GDBN}'s internals, for
30068 instance messages that should be displayed as part of an error log.  All
30069 the log output is prefixed by @samp{&}.
30071 @item
30072 @cindex list output in @sc{gdb/mi}
30073 New @sc{gdb/mi} commands should only output @var{lists} containing
30074 @var{values}.
30077 @end itemize
30079 @xref{GDB/MI Stream Records, , @sc{gdb/mi} Stream Records}, for more
30080 details about the various output records.
30082 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30083 @node GDB/MI Compatibility with CLI
30084 @section @sc{gdb/mi} Compatibility with CLI
30086 @cindex compatibility, @sc{gdb/mi} and CLI
30087 @cindex @sc{gdb/mi}, compatibility with CLI
30089 For the developers convenience CLI commands can be entered directly,
30090 but there may be some unexpected behaviour.  For example, commands
30091 that query the user will behave as if the user replied yes, breakpoint
30092 command lists are not executed and some CLI commands, such as
30093 @code{if}, @code{when} and @code{define}, prompt for further input with
30094 @samp{>}, which is not valid MI output.
30096 This feature may be removed at some stage in the future and it is
30097 recommended that front ends use the @code{-interpreter-exec} command
30098 (@pxref{-interpreter-exec}).
30100 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30101 @node GDB/MI Development and Front Ends
30102 @section @sc{gdb/mi} Development and Front Ends
30103 @cindex @sc{gdb/mi} development
30105 The application which takes the MI output and presents the state of the
30106 program being debugged to the user is called a @dfn{front end}.
30108 Since @sc{gdb/mi} is used by a variety of front ends to @value{GDBN}, changes
30109 to the MI interface may break existing usage.  This section describes how the
30110 protocol changes and how to request previous version of the protocol when it
30111 does.
30113 Some changes in MI need not break a carefully designed front end, and
30114 for these the MI version will remain unchanged.  The following is a
30115 list of changes that may occur within one level, so front ends should
30116 parse MI output in a way that can handle them:
30118 @itemize @bullet
30119 @item
30120 New MI commands may be added.
30122 @item
30123 New fields may be added to the output of any MI command.
30125 @item
30126 The range of values for fields with specified values, e.g.,
30127 @code{in_scope} (@pxref{-var-update}) may be extended.
30129 @c The format of field's content e.g type prefix, may change so parse it
30130 @c   at your own risk.  Yes, in general?
30132 @c The order of fields may change?  Shouldn't really matter but it might
30133 @c resolve inconsistencies.
30134 @end itemize
30136 If the changes are likely to break front ends, the MI version level
30137 will be increased by one.  The new versions of the MI protocol are not compatible
30138 with the old versions.  Old versions of MI remain available, allowing front ends
30139 to keep using them until they are modified to use the latest MI version.
30141 Since @code{--interpreter=mi} always points to the latest MI version, it is
30142 recommended that front ends request a specific version of MI when launching
30143 @value{GDBN} (e.g.@: @code{--interpreter=mi2}) to make sure they get an
30144 interpreter with the MI version they expect.
30146 The following table gives a summary of the released versions of the MI
30147 interface: the version number, the version of GDB in which it first appeared
30148 and the breaking changes compared to the previous version.
30150 @multitable @columnfractions .05 .05 .9
30151 @headitem MI version @tab GDB version @tab Breaking changes
30153 @item
30154 @center 1
30155 @tab
30156 @center 5.1
30157 @tab
30158 None
30160 @item
30161 @center 2
30162 @tab
30163 @center 6.0
30164 @tab
30166 @itemize
30167 @item
30168 The @code{-environment-pwd}, @code{-environment-directory} and
30169 @code{-environment-path} commands now returns values using the MI output
30170 syntax, rather than CLI output syntax.
30172 @item
30173 @code{-var-list-children}'s @code{children} result field is now a list, rather
30174 than a tuple.
30176 @item
30177 @code{-var-update}'s @code{changelist} result field is now a list, rather than
30178 a tuple.
30179 @end itemize
30181 @item
30182 @center 3
30183 @tab
30184 @center 9.1
30185 @tab
30187 @itemize
30188 @item
30189 The output of information about multi-location breakpoints has changed in the
30190 responses to the @code{-break-insert} and @code{-break-info} commands, as well
30191 as in the @code{=breakpoint-created} and @code{=breakpoint-modified} events.
30192 The multiple locations are now placed in a @code{locations} field, whose value
30193 is a list.
30194 @end itemize
30196 @end multitable
30198 If your front end cannot yet migrate to a more recent version of the
30199 MI protocol, you can nevertheless selectively enable specific features
30200 available in those recent MI versions, using the following commands:
30202 @table @code
30204 @item -fix-multi-location-breakpoint-output
30205 Use the output for multi-location breakpoints which was introduced by
30206 MI 3, even when using MI versions 2 or 1.  This command has no
30207 effect when using MI version 3 or later.
30209 @end table
30211 The best way to avoid unexpected changes in MI that might break your front
30212 end is to make your project known to @value{GDBN} developers and
30213 follow development on @email{gdb@@sourceware.org} and
30214 @email{gdb-patches@@sourceware.org}.
30215 @cindex mailing lists
30217 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30218 @node GDB/MI Output Records
30219 @section @sc{gdb/mi} Output Records
30221 @menu
30222 * GDB/MI Result Records::
30223 * GDB/MI Stream Records::
30224 * GDB/MI Async Records::
30225 * GDB/MI Breakpoint Information::
30226 * GDB/MI Frame Information::
30227 * GDB/MI Thread Information::
30228 * GDB/MI Ada Exception Information::
30229 @end menu
30231 @node GDB/MI Result Records
30232 @subsection @sc{gdb/mi} Result Records
30234 @cindex result records in @sc{gdb/mi}
30235 @cindex @sc{gdb/mi}, result records
30236 In addition to a number of out-of-band notifications, the response to a
30237 @sc{gdb/mi} command includes one of the following result indications:
30239 @table @code
30240 @findex ^done
30241 @item "^done" [ "," @var{results} ]
30242 The synchronous operation was successful, @code{@var{results}} are the return
30243 values.
30245 @item "^running"
30246 @findex ^running
30247 This result record is equivalent to @samp{^done}.  Historically, it
30248 was output instead of @samp{^done} if the command has resumed the
30249 target.  This behaviour is maintained for backward compatibility, but
30250 all frontends should treat @samp{^done} and @samp{^running}
30251 identically and rely on the @samp{*running} output record to determine
30252 which threads are resumed.
30254 @item "^connected"
30255 @findex ^connected
30256 @value{GDBN} has connected to a remote target.
30258 @item "^error" "," "msg=" @var{c-string} [ "," "code=" @var{c-string} ]
30259 @findex ^error
30260 The operation failed.  The @code{msg=@var{c-string}} variable contains
30261 the corresponding error message.
30263 If present, the @code{code=@var{c-string}} variable provides an error
30264 code on which consumers can rely on to detect the corresponding
30265 error condition.  At present, only one error code is defined:
30267 @table @samp
30268 @item "undefined-command"
30269 Indicates that the command causing the error does not exist.
30270 @end table
30272 @item "^exit"
30273 @findex ^exit
30274 @value{GDBN} has terminated.
30276 @end table
30278 @node GDB/MI Stream Records
30279 @subsection @sc{gdb/mi} Stream Records
30281 @cindex @sc{gdb/mi}, stream records
30282 @cindex stream records in @sc{gdb/mi}
30283 @value{GDBN} internally maintains a number of output streams: the console, the
30284 target, and the log.  The output intended for each of these streams is
30285 funneled through the @sc{gdb/mi} interface using @dfn{stream records}.
30287 Each stream record begins with a unique @dfn{prefix character} which
30288 identifies its stream (@pxref{GDB/MI Output Syntax, , @sc{gdb/mi} Output
30289 Syntax}).  In addition to the prefix, each stream record contains a
30290 @code{@var{string-output}}.  This is either raw text (with an implicit new
30291 line) or a quoted C string (which does not contain an implicit newline).
30293 @table @code
30294 @item "~" @var{string-output}
30295 The console output stream contains text that should be displayed in the
30296 CLI console window.  It contains the textual responses to CLI commands.
30298 @item "@@" @var{string-output}
30299 The target output stream contains any textual output from the running
30300 target.  This is only present when GDB's event loop is truly
30301 asynchronous, which is currently only the case for remote targets.
30303 @item "&" @var{string-output}
30304 The log stream contains debugging messages being produced by @value{GDBN}'s
30305 internals.
30306 @end table
30308 @node GDB/MI Async Records
30309 @subsection @sc{gdb/mi} Async Records
30311 @cindex async records in @sc{gdb/mi}
30312 @cindex @sc{gdb/mi}, async records
30313 @dfn{Async} records are used to notify the @sc{gdb/mi} client of
30314 additional changes that have occurred.  Those changes can either be a
30315 consequence of @sc{gdb/mi} commands (e.g., a breakpoint modified) or a result of
30316 target activity (e.g., target stopped).
30318 The following is the list of possible async records:
30320 @table @code
30322 @item *running,thread-id="@var{thread}"
30323 The target is now running.  The @var{thread} field can be the global
30324 thread ID of the thread that is now running, and it can be
30325 @samp{all} if all threads are running.  The frontend should assume
30326 that no interaction with a running thread is possible after this
30327 notification is produced.  The frontend should not assume that this
30328 notification is output only once for any command.  @value{GDBN} may
30329 emit this notification several times, either for different threads,
30330 because it cannot resume all threads together, or even for a single
30331 thread, if the thread must be stepped though some code before letting
30332 it run freely.
30334 @item *stopped,reason="@var{reason}",thread-id="@var{id}",stopped-threads="@var{stopped}",core="@var{core}"
30335 The target has stopped.  The @var{reason} field can have one of the
30336 following values:
30338 @table @code
30339 @item breakpoint-hit
30340 A breakpoint was reached.
30341 @item watchpoint-trigger
30342 A watchpoint was triggered.
30343 @item read-watchpoint-trigger
30344 A read watchpoint was triggered.
30345 @item access-watchpoint-trigger 
30346 An access watchpoint was triggered.
30347 @item function-finished
30348 An -exec-finish or similar CLI command was accomplished.
30349 @item location-reached
30350 An -exec-until or similar CLI command was accomplished.
30351 @item watchpoint-scope
30352 A watchpoint has gone out of scope.
30353 @item end-stepping-range
30354 An -exec-next, -exec-next-instruction, -exec-step, -exec-step-instruction or 
30355 similar CLI command was accomplished.
30356 @item exited-signalled 
30357 The inferior exited because of a signal.
30358 @item exited 
30359 The inferior exited.
30360 @item exited-normally 
30361 The inferior exited normally.
30362 @item signal-received 
30363 A signal was received by the inferior.
30364 @item solib-event
30365 The inferior has stopped due to a library being loaded or unloaded.
30366 This can happen when @code{stop-on-solib-events} (@pxref{Files}) is
30367 set or when a @code{catch load} or @code{catch unload} catchpoint is
30368 in use (@pxref{Set Catchpoints}).
30369 @item fork
30370 The inferior has forked.  This is reported when @code{catch fork}
30371 (@pxref{Set Catchpoints}) has been used.
30372 @item vfork
30373 The inferior has vforked.  This is reported in when @code{catch vfork}
30374 (@pxref{Set Catchpoints}) has been used.
30375 @item syscall-entry
30376 The inferior entered a system call.  This is reported when @code{catch
30377 syscall} (@pxref{Set Catchpoints}) has been used.
30378 @item syscall-return
30379 The inferior returned from a system call.  This is reported when
30380 @code{catch syscall} (@pxref{Set Catchpoints}) has been used.
30381 @item exec
30382 The inferior called @code{exec}.  This is reported when @code{catch exec}
30383 (@pxref{Set Catchpoints}) has been used.
30384 @end table
30386 The @var{id} field identifies the global thread ID of the thread
30387 that directly caused the stop -- for example by hitting a breakpoint.
30388 Depending on whether all-stop
30389 mode is in effect (@pxref{All-Stop Mode}), @value{GDBN} may either
30390 stop all threads, or only the thread that directly triggered the stop.
30391 If all threads are stopped, the @var{stopped} field will have the
30392 value of @code{"all"}.  Otherwise, the value of the @var{stopped}
30393 field will be a list of thread identifiers.  Presently, this list will
30394 always include a single thread, but frontend should be prepared to see
30395 several threads in the list.  The @var{core} field reports the
30396 processor core on which the stop event has happened.  This field may be absent
30397 if such information is not available.
30399 @item =thread-group-added,id="@var{id}"
30400 @itemx =thread-group-removed,id="@var{id}"
30401 A thread group was either added or removed.  The @var{id} field
30402 contains the @value{GDBN} identifier of the thread group.  When a thread
30403 group is added, it generally might not be associated with a running
30404 process.  When a thread group is removed, its id becomes invalid and
30405 cannot be used in any way.
30407 @item =thread-group-started,id="@var{id}",pid="@var{pid}"
30408 A thread group became associated with a running program,
30409 either because the program was just started or the thread group
30410 was attached to a program.  The @var{id} field contains the
30411 @value{GDBN} identifier of the thread group.  The @var{pid} field
30412 contains process identifier, specific to the operating system.
30414 @item =thread-group-exited,id="@var{id}"[,exit-code="@var{code}"]
30415 A thread group is no longer associated with a running program,
30416 either because the program has exited, or because it was detached
30417 from.  The @var{id} field contains the @value{GDBN} identifier of the
30418 thread group.  The @var{code} field is the exit code of the inferior; it exists
30419 only when the inferior exited with some code.
30421 @item =thread-created,id="@var{id}",group-id="@var{gid}"
30422 @itemx =thread-exited,id="@var{id}",group-id="@var{gid}"
30423 A thread either was created, or has exited.  The @var{id} field
30424 contains the global @value{GDBN} identifier of the thread.  The @var{gid}
30425 field identifies the thread group this thread belongs to.
30427 @item =thread-selected,id="@var{id}"[,frame="@var{frame}"]
30428 Informs that the selected thread or frame were changed.  This notification
30429 is not emitted as result of the @code{-thread-select} or
30430 @code{-stack-select-frame} commands, but is emitted whenever an MI command
30431 that is not documented to change the selected thread and frame actually
30432 changes them.  In particular, invoking, directly or indirectly
30433 (via user-defined command), the CLI @code{thread} or @code{frame} commands,
30434 will generate this notification.  Changing the thread or frame from another
30435 user interface (see @ref{Interpreters}) will also generate this notification.
30437 The @var{frame} field is only present if the newly selected thread is
30438 stopped.  See @ref{GDB/MI Frame Information} for the format of its value.
30440 We suggest that in response to this notification, front ends
30441 highlight the selected thread and cause subsequent commands to apply to
30442 that thread.
30444 @item =library-loaded,...
30445 Reports that a new library file was loaded by the program.  This
30446 notification has 5 fields---@var{id}, @var{target-name},
30447 @var{host-name}, @var{symbols-loaded} and @var{ranges}.  The @var{id} field is an
30448 opaque identifier of the library.  For remote debugging case,
30449 @var{target-name} and @var{host-name} fields give the name of the
30450 library file on the target, and on the host respectively.  For native
30451 debugging, both those fields have the same value.  The
30452 @var{symbols-loaded} field is emitted only for backward compatibility
30453 and should not be relied on to convey any useful information.  The
30454 @var{thread-group} field, if present, specifies the id of the thread
30455 group in whose context the library was loaded.  If the field is
30456 absent, it means the library was loaded in the context of all present
30457 thread groups.  The @var{ranges} field specifies the ranges of addresses belonging
30458 to this library.
30460 @item =library-unloaded,...
30461 Reports that a library was unloaded by the program.  This notification
30462 has 3 fields---@var{id}, @var{target-name} and @var{host-name} with
30463 the same meaning as for the @code{=library-loaded} notification.
30464 The @var{thread-group} field, if present, specifies the id of the
30465 thread group in whose context the library was unloaded.  If the field is
30466 absent, it means the library was unloaded in the context of all present
30467 thread groups.
30469 @item =traceframe-changed,num=@var{tfnum},tracepoint=@var{tpnum}
30470 @itemx =traceframe-changed,end
30471 Reports that the trace frame was changed and its new number is
30472 @var{tfnum}.  The number of the tracepoint associated with this trace
30473 frame is @var{tpnum}.
30475 @item =tsv-created,name=@var{name},initial=@var{initial}
30476 Reports that the new trace state variable @var{name} is created with
30477 initial value @var{initial}.
30479 @item =tsv-deleted,name=@var{name}
30480 @itemx =tsv-deleted
30481 Reports that the trace state variable @var{name} is deleted or all
30482 trace state variables are deleted.
30484 @item =tsv-modified,name=@var{name},initial=@var{initial}[,current=@var{current}]
30485 Reports that the trace state variable @var{name} is modified with
30486 the initial value @var{initial}. The current value @var{current} of
30487 trace state variable is optional and is reported if the current
30488 value of trace state variable is known.
30490 @item =breakpoint-created,bkpt=@{...@}
30491 @itemx =breakpoint-modified,bkpt=@{...@}
30492 @itemx =breakpoint-deleted,id=@var{number}
30493 Reports that a breakpoint was created, modified, or deleted,
30494 respectively.  Only user-visible breakpoints are reported to the MI
30495 user.
30497 The @var{bkpt} argument is of the same form as returned by the various
30498 breakpoint commands; @xref{GDB/MI Breakpoint Commands}.  The
30499 @var{number} is the ordinal number of the breakpoint.
30501 Note that if a breakpoint is emitted in the result record of a
30502 command, then it will not also be emitted in an async record.
30504 @item =record-started,thread-group="@var{id}",method="@var{method}"[,format="@var{format}"]
30505 @itemx =record-stopped,thread-group="@var{id}"
30506 Execution log recording was either started or stopped on an
30507 inferior.  The @var{id} is the @value{GDBN} identifier of the thread
30508 group corresponding to the affected inferior.
30510 The @var{method} field indicates the method used to record execution.  If the
30511 method in use supports multiple recording formats, @var{format} will be present
30512 and contain the currently used format.  @xref{Process Record and Replay},
30513 for existing method and format values.
30515 @item =cmd-param-changed,param=@var{param},value=@var{value}
30516 Reports that a parameter of the command @code{set @var{param}} is
30517 changed to @var{value}.  In the multi-word @code{set} command,
30518 the @var{param} is the whole parameter list to @code{set} command.
30519 For example, In command @code{set check type on}, @var{param}
30520 is @code{check type} and @var{value} is @code{on}.
30522 @item =memory-changed,thread-group=@var{id},addr=@var{addr},len=@var{len}[,type="code"]
30523 Reports that bytes from @var{addr} to @var{data} + @var{len} were
30524 written in an inferior.  The @var{id} is the identifier of the
30525 thread group corresponding to the affected inferior.  The optional
30526 @code{type="code"} part is reported if the memory written to holds
30527 executable code.
30528 @end table
30530 @node GDB/MI Breakpoint Information
30531 @subsection @sc{gdb/mi} Breakpoint Information
30533 When @value{GDBN} reports information about a breakpoint, a
30534 tracepoint, a watchpoint, or a catchpoint, it uses a tuple with the
30535 following fields:
30537 @table @code
30538 @item number
30539 The breakpoint number.
30541 @item type
30542 The type of the breakpoint.  For ordinary breakpoints this will be
30543 @samp{breakpoint}, but many values are possible.
30545 @item catch-type
30546 If the type of the breakpoint is @samp{catchpoint}, then this
30547 indicates the exact type of catchpoint.
30549 @item disp
30550 This is the breakpoint disposition---either @samp{del}, meaning that
30551 the breakpoint will be deleted at the next stop, or @samp{keep},
30552 meaning that the breakpoint will not be deleted.
30554 @item enabled
30555 This indicates whether the breakpoint is enabled, in which case the
30556 value is @samp{y}, or disabled, in which case the value is @samp{n}.
30557 Note that this is not the same as the field @code{enable}.
30559 @item addr
30560 The address of the breakpoint.  This may be a hexidecimal number,
30561 giving the address; or the string @samp{<PENDING>}, for a pending
30562 breakpoint; or the string @samp{<MULTIPLE>}, for a breakpoint with
30563 multiple locations.  This field will not be present if no address can
30564 be determined.  For example, a watchpoint does not have an address.
30566 @item addr_flags
30567 Optional field containing any flags related to the address.  These flags are
30568 architecture-dependent; see @ref{Architectures} for their meaning for a
30569 particular CPU.
30571 @item func
30572 If known, the function in which the breakpoint appears.
30573 If not known, this field is not present.
30575 @item filename
30576 The name of the source file which contains this function, if known.
30577 If not known, this field is not present.
30579 @item fullname
30580 The full file name of the source file which contains this function, if
30581 known.  If not known, this field is not present.
30583 @item line
30584 The line number at which this breakpoint appears, if known.
30585 If not known, this field is not present.
30587 @item at
30588 If the source file is not known, this field may be provided.  If
30589 provided, this holds the address of the breakpoint, possibly followed
30590 by a symbol name.
30592 @item pending
30593 If this breakpoint is pending, this field is present and holds the
30594 text used to set the breakpoint, as entered by the user.
30596 @item evaluated-by
30597 Where this breakpoint's condition is evaluated, either @samp{host} or
30598 @samp{target}.
30600 @item thread
30601 If this is a thread-specific breakpoint, then this identifies the
30602 thread in which the breakpoint can trigger.
30604 @item task
30605 If this breakpoint is restricted to a particular Ada task, then this
30606 field will hold the task identifier.
30608 @item cond
30609 If the breakpoint is conditional, this is the condition expression.
30611 @item ignore
30612 The ignore count of the breakpoint.
30614 @item enable
30615 The enable count of the breakpoint.
30617 @item traceframe-usage
30618 FIXME.
30620 @item static-tracepoint-marker-string-id
30621 For a static tracepoint, the name of the static tracepoint marker.
30623 @item mask
30624 For a masked watchpoint, this is the mask.
30626 @item pass
30627 A tracepoint's pass count.
30629 @item original-location
30630 The location of the breakpoint as originally specified by the user.
30631 This field is optional.
30633 @item times
30634 The number of times the breakpoint has been hit.
30636 @item installed
30637 This field is only given for tracepoints.  This is either @samp{y},
30638 meaning that the tracepoint is installed, or @samp{n}, meaning that it
30639 is not.
30641 @item what
30642 Some extra data, the exact contents of which are type-dependent.
30644 @item locations
30645 This field is present if the breakpoint has multiple locations.  It is also
30646 exceptionally present if the breakpoint is enabled and has a single, disabled
30647 location.
30649 The value is a list of locations.  The format of a location is described below.
30651 @end table
30653 A location in a multi-location breakpoint is represented as a tuple with the
30654 following fields:
30656 @table @code
30658 @item number
30659 The location number as a dotted pair, like @samp{1.2}.  The first digit is the
30660 number of the parent breakpoint.  The second digit is the number of the
30661 location within that breakpoint.
30663 @item enabled
30664 There are three possible values, with the following meanings:
30665 @table @code
30666 @item y
30667 The location is enabled.
30668 @item n
30669 The location is disabled by the user.
30670 @item N
30671 The location is disabled because the breakpoint condition is invalid
30672 at this location.
30673 @end table
30675 @item addr
30676 The address of this location as an hexidecimal number.
30678 @item addr_flags
30679 Optional field containing any flags related to the address.  These flags are
30680 architecture-dependent; see @ref{Architectures} for their meaning for a
30681 particular CPU.
30683 @item func
30684 If known, the function in which the location appears.
30685 If not known, this field is not present.
30687 @item file
30688 The name of the source file which contains this location, if known.
30689 If not known, this field is not present.
30691 @item fullname
30692 The full file name of the source file which contains this location, if
30693 known.  If not known, this field is not present.
30695 @item line
30696 The line number at which this location appears, if known.
30697 If not known, this field is not present.
30699 @item thread-groups
30700 The thread groups this location is in.
30702 @end table
30704 For example, here is what the output of @code{-break-insert}
30705 (@pxref{GDB/MI Breakpoint Commands}) might be:
30707 @smallexample
30708 -> -break-insert main
30709 <- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30710     enabled="y",addr="0x08048564",func="main",file="myprog.c",
30711     fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30712     times="0"@}
30713 <- (gdb)
30714 @end smallexample
30716 @node GDB/MI Frame Information
30717 @subsection @sc{gdb/mi} Frame Information
30719 Response from many MI commands includes an information about stack
30720 frame.  This information is a tuple that may have the following
30721 fields:
30723 @table @code
30724 @item level
30725 The level of the stack frame.  The innermost frame has the level of
30726 zero.  This field is always present.
30728 @item func
30729 The name of the function corresponding to the frame.  This field may
30730 be absent if @value{GDBN} is unable to determine the function name.
30732 @item addr
30733 The code address for the frame.  This field is always present.
30735 @item addr_flags
30736 Optional field containing any flags related to the address.  These flags are
30737 architecture-dependent; see @ref{Architectures} for their meaning for a
30738 particular CPU.
30740 @item file
30741 The name of the source files that correspond to the frame's code
30742 address.  This field may be absent.
30744 @item line
30745 The source line corresponding to the frames' code address.  This field
30746 may be absent.
30748 @item from
30749 The name of the binary file (either executable or shared library) the
30750 corresponds to the frame's code address.  This field may be absent.
30752 @end table
30754 @node GDB/MI Thread Information
30755 @subsection @sc{gdb/mi} Thread Information
30757 Whenever @value{GDBN} has to report an information about a thread, it
30758 uses a tuple with the following fields.  The fields are always present unless
30759 stated otherwise.
30761 @table @code
30762 @item id
30763 The global numeric id assigned to the thread by @value{GDBN}.
30765 @item target-id
30766 The target-specific string identifying the thread.
30768 @item details
30769 Additional information about the thread provided by the target.
30770 It is supposed to be human-readable and not interpreted by the
30771 frontend.  This field is optional.
30773 @item name
30774 The name of the thread.  If the user specified a name using the
30775 @code{thread name} command, then this name is given.  Otherwise, if
30776 @value{GDBN} can extract the thread name from the target, then that
30777 name is given.  If @value{GDBN} cannot find the thread name, then this
30778 field is omitted.
30780 @item state
30781 The execution state of the thread, either @samp{stopped} or @samp{running},
30782 depending on whether the thread is presently running.
30784 @item frame
30785 The stack frame currently executing in the thread.  This field is only present
30786 if the thread is stopped.  Its format is documented in
30787 @ref{GDB/MI Frame Information}.
30789 @item core
30790 The value of this field is an integer number of the processor core the
30791 thread was last seen on.  This field is optional.
30792 @end table
30794 @node GDB/MI Ada Exception Information
30795 @subsection @sc{gdb/mi} Ada Exception Information
30797 Whenever a @code{*stopped} record is emitted because the program
30798 stopped after hitting an exception catchpoint (@pxref{Set Catchpoints}),
30799 @value{GDBN} provides the name of the exception that was raised via
30800 the @code{exception-name} field.  Also, for exceptions that were raised
30801 with an exception message, @value{GDBN} provides that message via
30802 the @code{exception-message} field.
30804 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30805 @node GDB/MI Simple Examples
30806 @section Simple Examples of @sc{gdb/mi} Interaction
30807 @cindex @sc{gdb/mi}, simple examples
30809 This subsection presents several simple examples of interaction using
30810 the @sc{gdb/mi} interface.  In these examples, @samp{->} means that the
30811 following line is passed to @sc{gdb/mi} as input, while @samp{<-} means
30812 the output received from @sc{gdb/mi}.
30814 Note the line breaks shown in the examples are here only for
30815 readability, they don't appear in the real output.
30817 @subheading Setting a Breakpoint
30819 Setting a breakpoint generates synchronous output which contains detailed
30820 information of the breakpoint.
30822 @smallexample
30823 -> -break-insert main
30824 <- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30825     enabled="y",addr="0x08048564",func="main",file="myprog.c",
30826     fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30827     times="0"@}
30828 <- (gdb)
30829 @end smallexample
30831 @subheading Program Execution
30833 Program execution generates asynchronous records and MI gives the
30834 reason that execution stopped.
30836 @smallexample
30837 -> -exec-run
30838 <- ^running
30839 <- (gdb)
30840 <- *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
30841    frame=@{addr="0x08048564",func="main",
30842    args=[@{name="argc",value="1"@},@{name="argv",value="0xbfc4d4d4"@}],
30843    file="myprog.c",fullname="/home/nickrob/myprog.c",line="68",
30844    arch="i386:x86_64"@}
30845 <- (gdb)
30846 -> -exec-continue
30847 <- ^running
30848 <- (gdb)
30849 <- *stopped,reason="exited-normally"
30850 <- (gdb)
30851 @end smallexample
30853 @subheading Quitting @value{GDBN}
30855 Quitting @value{GDBN} just prints the result class @samp{^exit}.
30857 @smallexample
30858 -> (gdb)
30859 <- -gdb-exit
30860 <- ^exit
30861 @end smallexample
30863 Please note that @samp{^exit} is printed immediately, but it might
30864 take some time for @value{GDBN} to actually exit.  During that time, @value{GDBN}
30865 performs necessary cleanups, including killing programs being debugged
30866 or disconnecting from debug hardware, so the frontend should wait till
30867 @value{GDBN} exits and should only forcibly kill @value{GDBN} if it
30868 fails to exit in reasonable time.
30870 @subheading A Bad Command
30872 Here's what happens if you pass a non-existent command:
30874 @smallexample
30875 -> -rubbish
30876 <- ^error,msg="Undefined MI command: rubbish"
30877 <- (gdb)
30878 @end smallexample
30881 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30882 @node GDB/MI Command Description Format
30883 @section @sc{gdb/mi} Command Description Format
30885 The remaining sections describe blocks of commands.  Each block of
30886 commands is laid out in a fashion similar to this section.
30888 @subheading Motivation
30890 The motivation for this collection of commands.
30892 @subheading Introduction
30894 A brief introduction to this collection of commands as a whole.
30896 @subheading Commands
30898 For each command in the block, the following is described:
30900 @subsubheading Synopsis
30902 @smallexample
30903  -command @var{args}@dots{}
30904 @end smallexample
30906 @subsubheading Result
30908 @subsubheading @value{GDBN} Command
30910 The corresponding @value{GDBN} CLI command(s), if any.
30912 @subsubheading Example
30914 Example(s) formatted for readability.  Some of the described commands  have
30915 not been implemented yet and these are labeled N.A.@: (not available).
30918 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30919 @node GDB/MI Breakpoint Commands
30920 @section @sc{gdb/mi} Breakpoint Commands
30922 @cindex breakpoint commands for @sc{gdb/mi}
30923 @cindex @sc{gdb/mi}, breakpoint commands
30924 This section documents @sc{gdb/mi} commands for manipulating
30925 breakpoints.
30927 @subheading The @code{-break-after} Command
30928 @findex -break-after
30930 @subsubheading Synopsis
30932 @smallexample
30933  -break-after @var{number} @var{count}
30934 @end smallexample
30936 The breakpoint number @var{number} is not in effect until it has been
30937 hit @var{count} times.  To see how this is reflected in the output of
30938 the @samp{-break-list} command, see the description of the
30939 @samp{-break-list} command below.
30941 @subsubheading @value{GDBN} Command
30943 The corresponding @value{GDBN} command is @samp{ignore}.
30945 @subsubheading Example
30947 @smallexample
30948 (gdb)
30949 -break-insert main
30950 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30951 enabled="y",addr="0x000100d0",func="main",file="hello.c",
30952 fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
30953 times="0"@}
30954 (gdb)
30955 -break-after 1 3
30957 ^done
30958 (gdb)
30959 -break-list
30960 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30961 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30962 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30963 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30964 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30965 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30966 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
30967 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
30968 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
30969 line="5",thread-groups=["i1"],times="0",ignore="3"@}]@}
30970 (gdb)
30971 @end smallexample
30973 @ignore
30974 @subheading The @code{-break-catch} Command
30975 @findex -break-catch
30976 @end ignore
30978 @subheading The @code{-break-commands} Command
30979 @findex -break-commands
30981 @subsubheading Synopsis
30983 @smallexample
30984  -break-commands @var{number} [ @var{command1} ... @var{commandN} ]
30985 @end smallexample
30987 Specifies the CLI commands that should be executed when breakpoint
30988 @var{number} is hit.  The parameters @var{command1} to @var{commandN}
30989 are the commands.  If no command is specified, any previously-set
30990 commands are cleared.  @xref{Break Commands}.  Typical use of this
30991 functionality is tracing a program, that is, printing of values of
30992 some variables whenever breakpoint is hit and then continuing.
30994 @subsubheading @value{GDBN} Command
30996 The corresponding @value{GDBN} command is @samp{commands}.
30998 @subsubheading Example
31000 @smallexample
31001 (gdb)
31002 -break-insert main
31003 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
31004 enabled="y",addr="0x000100d0",func="main",file="hello.c",
31005 fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
31006 times="0"@}
31007 (gdb)
31008 -break-commands 1 "print v" "continue"
31009 ^done
31010 (gdb)
31011 @end smallexample
31013 @subheading The @code{-break-condition} Command
31014 @findex -break-condition
31016 @subsubheading Synopsis
31018 @smallexample
31019  -break-condition [ --force ] @var{number} [ @var{expr} ]
31020 @end smallexample
31022 Breakpoint @var{number} will stop the program only if the condition in
31023 @var{expr} is true.  The condition becomes part of the
31024 @samp{-break-list} output (see the description of the @samp{-break-list}
31025 command below).  If the @samp{--force} flag is passed, the condition
31026 is forcibly defined even when it is invalid for all locations of
31027 breakpoint @var{number}.  If the @var{expr} argument is omitted,
31028 breakpoint @var{number} becomes unconditional.
31030 @subsubheading @value{GDBN} Command
31032 The corresponding @value{GDBN} command is @samp{condition}.
31034 @subsubheading Example
31036 @smallexample
31037 (gdb)
31038 -break-condition 1 1
31039 ^done
31040 (gdb)
31041 -break-list
31042 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31043 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31044 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31045 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31046 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31047 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31048 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31049 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31050 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31051 line="5",cond="1",thread-groups=["i1"],times="0",ignore="3"@}]@}
31052 (gdb)
31053 @end smallexample
31055 @subheading The @code{-break-delete} Command
31056 @findex -break-delete
31058 @subsubheading Synopsis
31060 @smallexample
31061  -break-delete ( @var{breakpoint} )+
31062 @end smallexample
31064 Delete the breakpoint(s) whose number(s) are specified in the argument
31065 list.  This is obviously reflected in the breakpoint list.
31067 @subsubheading @value{GDBN} Command
31069 The corresponding @value{GDBN} command is @samp{delete}.
31071 @subsubheading Example
31073 @smallexample
31074 (gdb)
31075 -break-delete 1
31076 ^done
31077 (gdb)
31078 -break-list
31079 ^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
31080 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31081 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31082 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31083 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31084 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31085 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31086 body=[]@}
31087 (gdb)
31088 @end smallexample
31090 @subheading The @code{-break-disable} Command
31091 @findex -break-disable
31093 @subsubheading Synopsis
31095 @smallexample
31096  -break-disable ( @var{breakpoint} )+
31097 @end smallexample
31099 Disable the named @var{breakpoint}(s).  The field @samp{enabled} in the
31100 break list is now set to @samp{n} for the named @var{breakpoint}(s).
31102 @subsubheading @value{GDBN} Command
31104 The corresponding @value{GDBN} command is @samp{disable}.
31106 @subsubheading Example
31108 @smallexample
31109 (gdb)
31110 -break-disable 2
31111 ^done
31112 (gdb)
31113 -break-list
31114 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31115 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31116 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31117 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31118 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31119 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31120 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31121 body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="n",
31122 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31123 line="5",thread-groups=["i1"],times="0"@}]@}
31124 (gdb)
31125 @end smallexample
31127 @subheading The @code{-break-enable} Command
31128 @findex -break-enable
31130 @subsubheading Synopsis
31132 @smallexample
31133  -break-enable ( @var{breakpoint} )+
31134 @end smallexample
31136 Enable (previously disabled) @var{breakpoint}(s).
31138 @subsubheading @value{GDBN} Command
31140 The corresponding @value{GDBN} command is @samp{enable}.
31142 @subsubheading Example
31144 @smallexample
31145 (gdb)
31146 -break-enable 2
31147 ^done
31148 (gdb)
31149 -break-list
31150 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31151 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31152 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31153 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31154 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31155 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31156 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31157 body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
31158 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31159 line="5",thread-groups=["i1"],times="0"@}]@}
31160 (gdb)
31161 @end smallexample
31163 @subheading The @code{-break-info} Command
31164 @findex -break-info
31166 @subsubheading Synopsis
31168 @smallexample
31169  -break-info @var{breakpoint}
31170 @end smallexample
31172 @c REDUNDANT???
31173 Get information about a single breakpoint.
31175 The result is a table of breakpoints.  @xref{GDB/MI Breakpoint
31176 Information}, for details on the format of each breakpoint in the
31177 table.
31179 @subsubheading @value{GDBN} Command
31181 The corresponding @value{GDBN} command is @samp{info break @var{breakpoint}}.
31183 @subsubheading Example
31184 N.A.
31186 @subheading The @code{-break-insert} Command
31187 @findex -break-insert
31188 @anchor{-break-insert}
31190 @subsubheading Synopsis
31192 @smallexample
31193  -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] [ --qualified ]
31194     [ -c @var{condition} ] [ --force-condition ] [ -i @var{ignore-count} ]
31195     [ -p @var{thread-id} ] [ @var{location} ]
31196 @end smallexample
31198 @noindent
31199 If specified, @var{location}, can be one of:
31201 @table @var
31202 @item linespec location
31203 A linespec location.  @xref{Linespec Locations}.
31205 @item explicit location
31206 An explicit location.  @sc{gdb/mi} explicit locations are
31207 analogous to the CLI's explicit locations using the option names
31208 listed below.  @xref{Explicit Locations}.
31210 @table @samp
31211 @item --source @var{filename}
31212 The source file name of the location.  This option requires the use
31213 of either @samp{--function} or @samp{--line}.
31215 @item --function @var{function}
31216 The name of a function or method.
31218 @item --label @var{label}
31219 The name of a label.
31221 @item --line @var{lineoffset}
31222 An absolute or relative line offset from the start of the location.
31223 @end table
31225 @item address location
31226 An address location, *@var{address}.  @xref{Address Locations}.
31227 @end table
31229 @noindent
31230 The possible optional parameters of this command are:
31232 @table @samp
31233 @item -t
31234 Insert a temporary breakpoint.
31235 @item -h
31236 Insert a hardware breakpoint.
31237 @item -f
31238 If @var{location} cannot be parsed (for example if it
31239 refers to unknown files or functions), create a pending
31240 breakpoint. Without this flag, @value{GDBN} will report
31241 an error, and won't create a breakpoint, if @var{location}
31242 cannot be parsed.
31243 @item -d
31244 Create a disabled breakpoint.
31245 @item -a
31246 Create a tracepoint.  @xref{Tracepoints}.  When this parameter
31247 is used together with @samp{-h}, a fast tracepoint is created.
31248 @item -c @var{condition}
31249 Make the breakpoint conditional on @var{condition}.
31250 @item --force-condition
31251 Forcibly define the breakpoint even if the condition is invalid at
31252 all of the breakpoint locations.
31253 @item -i @var{ignore-count}
31254 Initialize the @var{ignore-count}.
31255 @item -p @var{thread-id}
31256 Restrict the breakpoint to the thread with the specified global
31257 @var{thread-id}.
31258 @item --qualified
31259 This option makes @value{GDBN} interpret a function name specified as
31260 a complete fully-qualified name.
31261 @end table
31263 @subsubheading Result
31265 @xref{GDB/MI Breakpoint Information}, for details on the format of the
31266 resulting breakpoint.
31268 Note: this format is open to change.
31269 @c An out-of-band breakpoint instead of part of the result?
31271 @subsubheading @value{GDBN} Command
31273 The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak},
31274 @samp{hbreak}, and @samp{thbreak}. @c and @samp{rbreak}.
31276 @subsubheading Example
31278 @smallexample
31279 (gdb)
31280 -break-insert main
31281 ^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",
31282 fullname="/home/foo/recursive2.c,line="4",thread-groups=["i1"],
31283 times="0"@}
31284 (gdb)
31285 -break-insert -t foo
31286 ^done,bkpt=@{number="2",addr="0x00010774",file="recursive2.c",
31287 fullname="/home/foo/recursive2.c,line="11",thread-groups=["i1"],
31288 times="0"@}
31289 (gdb)
31290 -break-list
31291 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31292 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31293 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31294 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31295 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31296 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31297 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31298 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31299 addr="0x0001072c", func="main",file="recursive2.c",
31300 fullname="/home/foo/recursive2.c,"line="4",thread-groups=["i1"],
31301 times="0"@},
31302 bkpt=@{number="2",type="breakpoint",disp="del",enabled="y",
31303 addr="0x00010774",func="foo",file="recursive2.c",
31304 fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
31305 times="0"@}]@}
31306 (gdb)
31307 @c -break-insert -r foo.*
31308 @c ~int foo(int, int);
31309 @c ^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c,
31310 @c "fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
31311 @c times="0"@}
31312 @c (gdb)
31313 @end smallexample
31315 @subheading The @code{-dprintf-insert} Command
31316 @findex -dprintf-insert
31318 @subsubheading Synopsis
31320 @smallexample
31321  -dprintf-insert [ -t ] [ -f ] [ -d ] [ --qualified ]
31322     [ -c @var{condition} ] [--force-condition] [ -i @var{ignore-count} ]
31323     [ -p @var{thread-id} ] [ @var{location} ] [ @var{format} ]
31324     [ @var{argument} ]
31325 @end smallexample
31327 @noindent
31328 If supplied, @var{location} and @code{--qualified} may be specified
31329 the same way as for the @code{-break-insert} command.
31330 @xref{-break-insert}.
31332 The possible optional parameters of this command are:
31334 @table @samp
31335 @item -t
31336 Insert a temporary breakpoint.
31337 @item -f
31338 If @var{location} cannot be parsed (for example, if it
31339 refers to unknown files or functions), create a pending
31340 breakpoint.  Without this flag, @value{GDBN} will report
31341 an error, and won't create a breakpoint, if @var{location}
31342 cannot be parsed.
31343 @item -d
31344 Create a disabled breakpoint.
31345 @item -c @var{condition}
31346 Make the breakpoint conditional on @var{condition}.
31347 @item --force-condition
31348 Forcibly define the breakpoint even if the condition is invalid at
31349 all of the breakpoint locations.
31350 @item -i @var{ignore-count}
31351 Set the ignore count of the breakpoint (@pxref{Conditions, ignore count})
31352 to @var{ignore-count}.
31353 @item -p @var{thread-id}
31354 Restrict the breakpoint to the thread with the specified global
31355 @var{thread-id}.
31356 @end table
31358 @subsubheading Result
31360 @xref{GDB/MI Breakpoint Information}, for details on the format of the
31361 resulting breakpoint.
31363 @c An out-of-band breakpoint instead of part of the result?
31365 @subsubheading @value{GDBN} Command
31367 The corresponding @value{GDBN} command is @samp{dprintf}.
31369 @subsubheading Example
31371 @smallexample
31372 (gdb)
31373 4-dprintf-insert foo "At foo entry\n"
31374 4^done,bkpt=@{number="1",type="dprintf",disp="keep",enabled="y",
31375 addr="0x000000000040061b",func="foo",file="mi-dprintf.c",
31376 fullname="mi-dprintf.c",line="25",thread-groups=["i1"],
31377 times="0",script=@{"printf \"At foo entry\\n\"","continue"@},
31378 original-location="foo"@}
31379 (gdb)
31380 5-dprintf-insert 26 "arg=%d, g=%d\n" arg g
31381 5^done,bkpt=@{number="2",type="dprintf",disp="keep",enabled="y",
31382 addr="0x000000000040062a",func="foo",file="mi-dprintf.c",
31383 fullname="mi-dprintf.c",line="26",thread-groups=["i1"],
31384 times="0",script=@{"printf \"arg=%d, g=%d\\n\", arg, g","continue"@},
31385 original-location="mi-dprintf.c:26"@}
31386 (gdb)
31387 @end smallexample
31389 @subheading The @code{-break-list} Command
31390 @findex -break-list
31392 @subsubheading Synopsis
31394 @smallexample
31395  -break-list
31396 @end smallexample
31398 Displays the list of inserted breakpoints, showing the following fields:
31400 @table @samp
31401 @item Number
31402 number of the breakpoint
31403 @item Type
31404 type of the breakpoint: @samp{breakpoint} or @samp{watchpoint}
31405 @item Disposition
31406 should the breakpoint be deleted or disabled when it is hit: @samp{keep}
31407 or @samp{nokeep}
31408 @item Enabled
31409 is the breakpoint enabled or no: @samp{y} or @samp{n}
31410 @item Address
31411 memory location at which the breakpoint is set
31412 @item What
31413 logical location of the breakpoint, expressed by function name, file
31414 name, line number
31415 @item Thread-groups
31416 list of thread groups to which this breakpoint applies
31417 @item Times
31418 number of times the breakpoint has been hit
31419 @end table
31421 If there are no breakpoints or watchpoints, the @code{BreakpointTable}
31422 @code{body} field is an empty list.
31424 @subsubheading @value{GDBN} Command
31426 The corresponding @value{GDBN} command is @samp{info break}.
31428 @subsubheading Example
31430 @smallexample
31431 (gdb)
31432 -break-list
31433 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31434 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31435 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31436 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31437 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31438 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31439 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31440 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31441 addr="0x000100d0",func="main",file="hello.c",line="5",thread-groups=["i1"],
31442 times="0"@},
31443 bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
31444 addr="0x00010114",func="foo",file="hello.c",fullname="/home/foo/hello.c",
31445 line="13",thread-groups=["i1"],times="0"@}]@}
31446 (gdb)
31447 @end smallexample
31449 Here's an example of the result when there are no breakpoints:
31451 @smallexample
31452 (gdb)
31453 -break-list
31454 ^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
31455 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31456 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31457 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31458 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31459 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31460 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31461 body=[]@}
31462 (gdb)
31463 @end smallexample
31465 @subheading The @code{-break-passcount} Command
31466 @findex -break-passcount
31468 @subsubheading Synopsis
31470 @smallexample
31471  -break-passcount @var{tracepoint-number} @var{passcount}
31472 @end smallexample
31474 Set the passcount for tracepoint @var{tracepoint-number} to
31475 @var{passcount}.  If the breakpoint referred to by @var{tracepoint-number}
31476 is not a tracepoint, error is emitted.  This corresponds to CLI
31477 command @samp{passcount}.
31479 @subheading The @code{-break-watch} Command
31480 @findex -break-watch
31482 @subsubheading Synopsis
31484 @smallexample
31485  -break-watch [ -a | -r ]
31486 @end smallexample
31488 Create a watchpoint.  With the @samp{-a} option it will create an
31489 @dfn{access} watchpoint, i.e., a watchpoint that triggers either on a
31490 read from or on a write to the memory location.  With the @samp{-r}
31491 option, the watchpoint created is a @dfn{read} watchpoint, i.e., it will
31492 trigger only when the memory location is accessed for reading.  Without
31493 either of the options, the watchpoint created is a regular watchpoint,
31494 i.e., it will trigger when the memory location is accessed for writing.
31495 @xref{Set Watchpoints, , Setting Watchpoints}.
31497 Note that @samp{-break-list} will report a single list of watchpoints and
31498 breakpoints inserted.
31500 @subsubheading @value{GDBN} Command
31502 The corresponding @value{GDBN} commands are @samp{watch}, @samp{awatch}, and
31503 @samp{rwatch}.
31505 @subsubheading Example
31507 Setting a watchpoint on a variable in the @code{main} function:
31509 @smallexample
31510 (gdb)
31511 -break-watch x
31512 ^done,wpt=@{number="2",exp="x"@}
31513 (gdb)
31514 -exec-continue
31515 ^running
31516 (gdb)
31517 *stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="x"@},
31518 value=@{old="-268439212",new="55"@},
31519 frame=@{func="main",args=[],file="recursive2.c",
31520 fullname="/home/foo/bar/recursive2.c",line="5",arch="i386:x86_64"@}
31521 (gdb)
31522 @end smallexample
31524 Setting a watchpoint on a variable local to a function.  @value{GDBN} will stop
31525 the program execution twice: first for the variable changing value, then
31526 for the watchpoint going out of scope.
31528 @smallexample
31529 (gdb)
31530 -break-watch C
31531 ^done,wpt=@{number="5",exp="C"@}
31532 (gdb)
31533 -exec-continue
31534 ^running
31535 (gdb)
31536 *stopped,reason="watchpoint-trigger",
31537 wpt=@{number="5",exp="C"@},value=@{old="-276895068",new="3"@},
31538 frame=@{func="callee4",args=[],
31539 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31540 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31541 arch="i386:x86_64"@}
31542 (gdb)
31543 -exec-continue
31544 ^running
31545 (gdb)
31546 *stopped,reason="watchpoint-scope",wpnum="5",
31547 frame=@{func="callee3",args=[@{name="strarg",
31548 value="0x11940 \"A string argument.\""@}],
31549 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31550 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31551 arch="i386:x86_64"@}
31552 (gdb)
31553 @end smallexample
31555 Listing breakpoints and watchpoints, at different points in the program
31556 execution.  Note that once the watchpoint goes out of scope, it is
31557 deleted.
31559 @smallexample
31560 (gdb)
31561 -break-watch C
31562 ^done,wpt=@{number="2",exp="C"@}
31563 (gdb)
31564 -break-list
31565 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31566 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31567 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31568 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31569 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31570 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31571 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31572 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31573 addr="0x00010734",func="callee4",
31574 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31575 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c"line="8",thread-groups=["i1"],
31576 times="1"@},
31577 bkpt=@{number="2",type="watchpoint",disp="keep",
31578 enabled="y",addr="",what="C",thread-groups=["i1"],times="0"@}]@}
31579 (gdb)
31580 -exec-continue
31581 ^running
31582 (gdb)
31583 *stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="C"@},
31584 value=@{old="-276895068",new="3"@},
31585 frame=@{func="callee4",args=[],
31586 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31587 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31588 arch="i386:x86_64"@}
31589 (gdb)
31590 -break-list
31591 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31592 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31593 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31594 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31595 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31596 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31597 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31598 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31599 addr="0x00010734",func="callee4",
31600 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31601 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",thread-groups=["i1"],
31602 times="1"@},
31603 bkpt=@{number="2",type="watchpoint",disp="keep",
31604 enabled="y",addr="",what="C",thread-groups=["i1"],times="-5"@}]@}
31605 (gdb)
31606 -exec-continue
31607 ^running
31608 ^done,reason="watchpoint-scope",wpnum="2",
31609 frame=@{func="callee3",args=[@{name="strarg",
31610 value="0x11940 \"A string argument.\""@}],
31611 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31612 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31613 arch="i386:x86_64"@}
31614 (gdb)
31615 -break-list
31616 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31617 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31618 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31619 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31620 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31621 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31622 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31623 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31624 addr="0x00010734",func="callee4",
31625 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31626 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
31627 thread-groups=["i1"],times="1"@}]@}
31628 (gdb)
31629 @end smallexample
31632 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31633 @node GDB/MI Catchpoint Commands
31634 @section @sc{gdb/mi} Catchpoint Commands
31636 This section documents @sc{gdb/mi} commands for manipulating
31637 catchpoints.
31639 @menu
31640 * Shared Library GDB/MI Catchpoint Commands::
31641 * Ada Exception GDB/MI Catchpoint Commands::
31642 * C++ Exception GDB/MI Catchpoint Commands::
31643 @end menu
31645 @node Shared Library GDB/MI Catchpoint Commands
31646 @subsection Shared Library @sc{gdb/mi} Catchpoints
31648 @subheading The @code{-catch-load} Command
31649 @findex -catch-load
31651 @subsubheading Synopsis
31653 @smallexample
31654  -catch-load [ -t ] [ -d ] @var{regexp}
31655 @end smallexample
31657 Add a catchpoint for library load events.  If the @samp{-t} option is used,
31658 the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31659 Breakpoints}).  If the @samp{-d} option is used, the catchpoint is created
31660 in a disabled state.  The @samp{regexp} argument is a regular
31661 expression used to match the name of the loaded library.
31664 @subsubheading @value{GDBN} Command
31666 The corresponding @value{GDBN} command is @samp{catch load}.
31668 @subsubheading Example
31670 @smallexample
31671 -catch-load -t foo.so
31672 ^done,bkpt=@{number="1",type="catchpoint",disp="del",enabled="y",
31673 what="load of library matching foo.so",catch-type="load",times="0"@}
31674 (gdb)
31675 @end smallexample
31678 @subheading The @code{-catch-unload} Command
31679 @findex -catch-unload
31681 @subsubheading Synopsis
31683 @smallexample
31684  -catch-unload [ -t ] [ -d ] @var{regexp}
31685 @end smallexample
31687 Add a catchpoint for library unload events.  If the @samp{-t} option is
31688 used, the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31689 Breakpoints}).  If the @samp{-d} option is used, the catchpoint is
31690 created in a disabled state.  The @samp{regexp} argument is a regular
31691 expression used to match the name of the unloaded library.
31693 @subsubheading @value{GDBN} Command
31695 The corresponding @value{GDBN} command is @samp{catch unload}.
31697 @subsubheading Example
31699 @smallexample
31700 -catch-unload -d bar.so
31701 ^done,bkpt=@{number="2",type="catchpoint",disp="keep",enabled="n",
31702 what="load of library matching bar.so",catch-type="unload",times="0"@}
31703 (gdb)
31704 @end smallexample
31706 @node Ada Exception GDB/MI Catchpoint Commands
31707 @subsection Ada Exception @sc{gdb/mi} Catchpoints
31709 The following @sc{gdb/mi} commands can be used to create catchpoints
31710 that stop the execution when Ada exceptions are being raised.
31712 @subheading The @code{-catch-assert} Command
31713 @findex -catch-assert
31715 @subsubheading Synopsis
31717 @smallexample
31718  -catch-assert [ -c @var{condition}] [ -d ] [ -t ]
31719 @end smallexample
31721 Add a catchpoint for failed Ada assertions.
31723 The possible optional parameters for this command are:
31725 @table @samp
31726 @item -c @var{condition}
31727 Make the catchpoint conditional on @var{condition}.
31728 @item -d
31729 Create a disabled catchpoint.
31730 @item -t
31731 Create a temporary catchpoint.
31732 @end table
31734 @subsubheading @value{GDBN} Command
31736 The corresponding @value{GDBN} command is @samp{catch assert}.
31738 @subsubheading Example
31740 @smallexample
31741 -catch-assert
31742 ^done,bkptno="5",bkpt=@{number="5",type="breakpoint",disp="keep",
31743 enabled="y",addr="0x0000000000404888",what="failed Ada assertions",
31744 thread-groups=["i1"],times="0",
31745 original-location="__gnat_debug_raise_assert_failure"@}
31746 (gdb)
31747 @end smallexample
31749 @subheading The @code{-catch-exception} Command
31750 @findex -catch-exception
31752 @subsubheading Synopsis
31754 @smallexample
31755  -catch-exception [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31756     [ -t ] [ -u ]
31757 @end smallexample
31759 Add a catchpoint stopping when Ada exceptions are raised.
31760 By default, the command stops the program when any Ada exception
31761 gets raised.  But it is also possible, by using some of the
31762 optional parameters described below, to create more selective
31763 catchpoints.
31765 The possible optional parameters for this command are:
31767 @table @samp
31768 @item -c @var{condition}
31769 Make the catchpoint conditional on @var{condition}.
31770 @item -d
31771 Create a disabled catchpoint.
31772 @item -e @var{exception-name}
31773 Only stop when @var{exception-name} is raised.  This option cannot
31774 be used combined with @samp{-u}.
31775 @item -t
31776 Create a temporary catchpoint.
31777 @item -u
31778 Stop only when an unhandled exception gets raised.  This option
31779 cannot be used combined with @samp{-e}.
31780 @end table
31782 @subsubheading @value{GDBN} Command
31784 The corresponding @value{GDBN} commands are @samp{catch exception}
31785 and @samp{catch exception unhandled}.
31787 @subsubheading Example
31789 @smallexample
31790 -catch-exception -e Program_Error
31791 ^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31792 enabled="y",addr="0x0000000000404874",
31793 what="`Program_Error' Ada exception", thread-groups=["i1"],
31794 times="0",original-location="__gnat_debug_raise_exception"@}
31795 (gdb)
31796 @end smallexample
31798 @subheading The @code{-catch-handlers} Command
31799 @findex -catch-handlers
31801 @subsubheading Synopsis
31803 @smallexample
31804  -catch-handlers [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31805     [ -t ]
31806 @end smallexample
31808 Add a catchpoint stopping when Ada exceptions are handled.
31809 By default, the command stops the program when any Ada exception
31810 gets handled.  But it is also possible, by using some of the
31811 optional parameters described below, to create more selective
31812 catchpoints.
31814 The possible optional parameters for this command are:
31816 @table @samp
31817 @item -c @var{condition}
31818 Make the catchpoint conditional on @var{condition}.
31819 @item -d
31820 Create a disabled catchpoint.
31821 @item -e @var{exception-name}
31822 Only stop when @var{exception-name} is handled.
31823 @item -t
31824 Create a temporary catchpoint.
31825 @end table
31827 @subsubheading @value{GDBN} Command
31829 The corresponding @value{GDBN} command is @samp{catch handlers}.
31831 @subsubheading Example
31833 @smallexample
31834 -catch-handlers -e Constraint_Error
31835 ^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31836 enabled="y",addr="0x0000000000402f68",
31837 what="`Constraint_Error' Ada exception handlers",thread-groups=["i1"],
31838 times="0",original-location="__gnat_begin_handler"@}
31839 (gdb)
31840 @end smallexample
31842 @node C++ Exception GDB/MI Catchpoint Commands
31843 @subsection C@t{++} Exception @sc{gdb/mi} Catchpoints
31845 The following @sc{gdb/mi} commands can be used to create catchpoints
31846 that stop the execution when C@t{++} exceptions are being throw, rethrown,
31847 or caught.
31849 @subheading The @code{-catch-throw} Command
31850 @findex -catch-throw
31852 @subsubheading Synopsis
31854 @smallexample
31855  -catch-throw [ -t ] [ -r @var{regexp}]
31856 @end smallexample
31858 Stop when the debuggee throws a C@t{++} exception.  If @var{regexp} is
31859 given, then only exceptions whose type matches the regular expression
31860 will be caught.
31862 If @samp{-t} is given, then the catchpoint is enabled only for one
31863 stop, the catchpoint is automatically deleted after stopping once for
31864 the event.
31866 @subsubheading @value{GDBN} Command
31868 The corresponding @value{GDBN} commands are @samp{catch throw}
31869 and @samp{tcatch throw} (@pxref{Set Catchpoints}).
31871 @subsubheading Example
31873 @smallexample
31874 -catch-throw -r exception_type
31875 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31876   what="exception throw",catch-type="throw",
31877   thread-groups=["i1"],
31878   regexp="exception_type",times="0"@}
31879 (gdb)
31880 -exec-run
31881 ^running
31882 (gdb)
31883 ~"\n"
31884 ~"Catchpoint 1 (exception thrown), 0x00007ffff7ae00ed
31885   in __cxa_throw () from /lib64/libstdc++.so.6\n"
31886 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31887   frame=@{addr="0x00007ffff7ae00ed",func="__cxa_throw",
31888   args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31889   thread-id="1",stopped-threads="all",core="6"
31890 (gdb)
31891 @end smallexample
31893 @subheading The @code{-catch-rethrow} Command
31894 @findex -catch-rethrow
31896 @subsubheading Synopsis
31898 @smallexample
31899  -catch-rethrow [ -t ] [ -r @var{regexp}]
31900 @end smallexample
31902 Stop when a C@t{++} exception is re-thrown.  If @var{regexp} is given,
31903 then only exceptions whose type matches the regular expression will be
31904 caught.
31906 If @samp{-t} is given, then the catchpoint is enabled only for one
31907 stop, the catchpoint is automatically deleted after the first event is
31908 caught.
31910 @subsubheading @value{GDBN} Command
31912 The corresponding @value{GDBN} commands are @samp{catch rethrow}
31913 and @samp{tcatch rethrow} (@pxref{Set Catchpoints}).
31915 @subsubheading Example
31917 @smallexample
31918 -catch-rethrow -r exception_type
31919 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31920   what="exception rethrow",catch-type="rethrow",
31921   thread-groups=["i1"],
31922   regexp="exception_type",times="0"@}
31923 (gdb)
31924 -exec-run
31925 ^running
31926 (gdb)
31927 ~"\n"
31928 ~"Catchpoint 1 (exception rethrown), 0x00007ffff7ae00ed
31929   in __cxa_rethrow () from /lib64/libstdc++.so.6\n"
31930 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31931   frame=@{addr="0x00007ffff7ae00ed",func="__cxa_rethrow",
31932   args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31933   thread-id="1",stopped-threads="all",core="6"
31934 (gdb)
31935 @end smallexample
31937 @subheading The @code{-catch-catch} Command
31938 @findex -catch-catch
31940 @subsubheading Synopsis
31942 @smallexample
31943  -catch-catch [ -t ] [ -r @var{regexp}]
31944 @end smallexample
31946 Stop when the debuggee catches a C@t{++} exception.  If @var{regexp}
31947 is given, then only exceptions whose type matches the regular
31948 expression will be caught.
31950 If @samp{-t} is given, then the catchpoint is enabled only for one
31951 stop, the catchpoint is automatically deleted after the first event is
31952 caught.
31954 @subsubheading @value{GDBN} Command
31956 The corresponding @value{GDBN} commands are @samp{catch catch}
31957 and @samp{tcatch catch} (@pxref{Set Catchpoints}).
31959 @subsubheading Example
31961 @smallexample
31962 -catch-catch -r exception_type
31963 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31964   what="exception catch",catch-type="catch",
31965   thread-groups=["i1"],
31966   regexp="exception_type",times="0"@}
31967 (gdb)
31968 -exec-run
31969 ^running
31970 (gdb)
31971 ~"\n"
31972 ~"Catchpoint 1 (exception caught), 0x00007ffff7ae00ed
31973   in __cxa_begin_catch () from /lib64/libstdc++.so.6\n"
31974 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31975   frame=@{addr="0x00007ffff7ae00ed",func="__cxa_begin_catch",
31976   args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31977   thread-id="1",stopped-threads="all",core="6"
31978 (gdb)
31979 @end smallexample
31981 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31982 @node GDB/MI Program Context
31983 @section @sc{gdb/mi}  Program Context
31985 @subheading The @code{-exec-arguments} Command
31986 @findex -exec-arguments
31989 @subsubheading Synopsis
31991 @smallexample
31992  -exec-arguments @var{args}
31993 @end smallexample
31995 Set the inferior program arguments, to be used in the next
31996 @samp{-exec-run}.
31998 @subsubheading @value{GDBN} Command
32000 The corresponding @value{GDBN} command is @samp{set args}.
32002 @subsubheading Example
32004 @smallexample
32005 (gdb)
32006 -exec-arguments -v word
32007 ^done
32008 (gdb)
32009 @end smallexample
32012 @ignore
32013 @subheading The @code{-exec-show-arguments} Command
32014 @findex -exec-show-arguments
32016 @subsubheading Synopsis
32018 @smallexample
32019  -exec-show-arguments
32020 @end smallexample
32022 Print the arguments of the program.
32024 @subsubheading @value{GDBN} Command
32026 The corresponding @value{GDBN} command is @samp{show args}.
32028 @subsubheading Example
32029 N.A.
32030 @end ignore
32033 @subheading The @code{-environment-cd} Command
32034 @findex -environment-cd
32036 @subsubheading Synopsis
32038 @smallexample
32039  -environment-cd @var{pathdir}
32040 @end smallexample
32042 Set @value{GDBN}'s working directory.
32044 @subsubheading @value{GDBN} Command
32046 The corresponding @value{GDBN} command is @samp{cd}.
32048 @subsubheading Example
32050 @smallexample
32051 (gdb)
32052 -environment-cd /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
32053 ^done
32054 (gdb)
32055 @end smallexample
32058 @subheading The @code{-environment-directory} Command
32059 @findex -environment-directory
32061 @subsubheading Synopsis
32063 @smallexample
32064  -environment-directory [ -r ] [ @var{pathdir} ]+
32065 @end smallexample
32067 Add directories @var{pathdir} to beginning of search path for source files.
32068 If the @samp{-r} option is used, the search path is reset to the default
32069 search path.  If directories @var{pathdir} are supplied in addition to the
32070 @samp{-r} option, the search path is first reset and then addition
32071 occurs as normal.
32072 Multiple directories may be specified, separated by blanks.  Specifying
32073 multiple directories in a single command
32074 results in the directories added to the beginning of the
32075 search path in the same order they were presented in the command.
32076 If blanks are needed as
32077 part of a directory name, double-quotes should be used around
32078 the name.  In the command output, the path will show up separated
32079 by the system directory-separator character.  The directory-separator
32080 character must not be used
32081 in any directory name.
32082 If no directories are specified, the current search path is displayed.
32084 @subsubheading @value{GDBN} Command
32086 The corresponding @value{GDBN} command is @samp{dir}.
32088 @subsubheading Example
32090 @smallexample
32091 (gdb)
32092 -environment-directory /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
32093 ^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
32094 (gdb)
32095 -environment-directory ""
32096 ^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
32097 (gdb)
32098 -environment-directory -r /home/jjohnstn/src/gdb /usr/src
32099 ^done,source-path="/home/jjohnstn/src/gdb:/usr/src:$cdir:$cwd"
32100 (gdb)
32101 -environment-directory -r
32102 ^done,source-path="$cdir:$cwd"
32103 (gdb)
32104 @end smallexample
32107 @subheading The @code{-environment-path} Command
32108 @findex -environment-path
32110 @subsubheading Synopsis
32112 @smallexample
32113  -environment-path [ -r ] [ @var{pathdir} ]+
32114 @end smallexample
32116 Add directories @var{pathdir} to beginning of search path for object files.
32117 If the @samp{-r} option is used, the search path is reset to the original
32118 search path that existed at gdb start-up.  If directories @var{pathdir} are
32119 supplied in addition to the
32120 @samp{-r} option, the search path is first reset and then addition
32121 occurs as normal.
32122 Multiple directories may be specified, separated by blanks.  Specifying
32123 multiple directories in a single command
32124 results in the directories added to the beginning of the
32125 search path in the same order they were presented in the command.
32126 If blanks are needed as
32127 part of a directory name, double-quotes should be used around
32128 the name.  In the command output, the path will show up separated
32129 by the system directory-separator character.  The directory-separator
32130 character must not be used
32131 in any directory name.
32132 If no directories are specified, the current path is displayed.
32135 @subsubheading @value{GDBN} Command
32137 The corresponding @value{GDBN} command is @samp{path}.
32139 @subsubheading Example
32141 @smallexample
32142 (gdb)
32143 -environment-path
32144 ^done,path="/usr/bin"
32145 (gdb)
32146 -environment-path /kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb /bin
32147 ^done,path="/kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb:/bin:/usr/bin"
32148 (gdb)
32149 -environment-path -r /usr/local/bin
32150 ^done,path="/usr/local/bin:/usr/bin"
32151 (gdb)
32152 @end smallexample
32155 @subheading The @code{-environment-pwd} Command
32156 @findex -environment-pwd
32158 @subsubheading Synopsis
32160 @smallexample
32161  -environment-pwd
32162 @end smallexample
32164 Show the current working directory.
32166 @subsubheading @value{GDBN} Command
32168 The corresponding @value{GDBN} command is @samp{pwd}.
32170 @subsubheading Example
32172 @smallexample
32173 (gdb)
32174 -environment-pwd
32175 ^done,cwd="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb"
32176 (gdb)
32177 @end smallexample
32179 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32180 @node GDB/MI Thread Commands
32181 @section @sc{gdb/mi} Thread Commands
32184 @subheading The @code{-thread-info} Command
32185 @findex -thread-info
32187 @subsubheading Synopsis
32189 @smallexample
32190  -thread-info [ @var{thread-id} ]
32191 @end smallexample
32193 Reports information about either a specific thread, if the
32194 @var{thread-id} parameter is present, or about all threads.
32195 @var{thread-id} is the thread's global thread ID.  When printing
32196 information about all threads, also reports the global ID of the
32197 current thread.
32199 @subsubheading @value{GDBN} Command
32201 The @samp{info thread} command prints the same information
32202 about all threads.
32204 @subsubheading Result
32206 The result contains the following attributes:
32208 @table @samp
32209 @item threads
32210 A list of threads.  The format of the elements of the list is described in
32211 @ref{GDB/MI Thread Information}.
32213 @item current-thread-id
32214 The global id of the currently selected thread.  This field is omitted if there
32215 is no selected thread (for example, when the selected inferior is not running,
32216 and therefore has no threads) or if a @var{thread-id} argument was passed to
32217 the command.
32219 @end table
32221 @subsubheading Example
32223 @smallexample
32224 -thread-info
32225 ^done,threads=[
32226 @{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
32227    frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",
32228            args=[]@},state="running"@},
32229 @{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
32230    frame=@{level="0",addr="0x0804891f",func="foo",
32231            args=[@{name="i",value="10"@}],
32232            file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},
32233            state="running"@}],
32234 current-thread-id="1"
32235 (gdb)
32236 @end smallexample
32238 @subheading The @code{-thread-list-ids} Command
32239 @findex -thread-list-ids
32241 @subsubheading Synopsis
32243 @smallexample
32244  -thread-list-ids
32245 @end smallexample
32247 Produces a list of the currently known global @value{GDBN} thread ids.
32248 At the end of the list it also prints the total number of such
32249 threads.
32251 This command is retained for historical reasons, the
32252 @code{-thread-info} command should be used instead.
32254 @subsubheading @value{GDBN} Command
32256 Part of @samp{info threads} supplies the same information.
32258 @subsubheading Example
32260 @smallexample
32261 (gdb)
32262 -thread-list-ids
32263 ^done,thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
32264 current-thread-id="1",number-of-threads="3"
32265 (gdb)
32266 @end smallexample
32269 @subheading The @code{-thread-select} Command
32270 @findex -thread-select
32272 @subsubheading Synopsis
32274 @smallexample
32275  -thread-select @var{thread-id}
32276 @end smallexample
32278 Make thread with global thread number @var{thread-id} the current
32279 thread.  It prints the number of the new current thread, and the
32280 topmost frame for that thread.
32282 This command is deprecated in favor of explicitly using the
32283 @samp{--thread} option to each command.
32285 @subsubheading @value{GDBN} Command
32287 The corresponding @value{GDBN} command is @samp{thread}.
32289 @subsubheading Example
32291 @smallexample
32292 (gdb)
32293 -exec-next
32294 ^running
32295 (gdb)
32296 *stopped,reason="end-stepping-range",thread-id="2",line="187",
32297 file="../../../devo/gdb/testsuite/gdb.threads/linux-dp.c"
32298 (gdb)
32299 -thread-list-ids
32300 ^done,
32301 thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
32302 number-of-threads="3"
32303 (gdb)
32304 -thread-select 3
32305 ^done,new-thread-id="3",
32306 frame=@{level="0",func="vprintf",
32307 args=[@{name="format",value="0x8048e9c \"%*s%c %d %c\\n\""@},
32308 @{name="arg",value="0x2"@}],file="vprintf.c",line="31",arch="i386:x86_64"@}
32309 (gdb)
32310 @end smallexample
32312 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32313 @node GDB/MI Ada Tasking Commands
32314 @section @sc{gdb/mi} Ada Tasking Commands
32316 @subheading The @code{-ada-task-info} Command
32317 @findex -ada-task-info
32319 @subsubheading Synopsis
32321 @smallexample
32322  -ada-task-info [ @var{task-id} ]
32323 @end smallexample
32325 Reports information about either a specific Ada task, if the
32326 @var{task-id} parameter is present, or about all Ada tasks.
32328 @subsubheading @value{GDBN} Command
32330 The @samp{info tasks} command prints the same information
32331 about all Ada tasks (@pxref{Ada Tasks}).
32333 @subsubheading Result
32335 The result is a table of Ada tasks.  The following columns are
32336 defined for each Ada task:
32338 @table @samp
32339 @item current
32340 This field exists only for the current thread.  It has the value @samp{*}.
32342 @item id
32343 The identifier that @value{GDBN} uses to refer to the Ada task.
32345 @item task-id
32346 The identifier that the target uses to refer to the Ada task.
32348 @item thread-id
32349 The global thread identifier of the thread corresponding to the Ada
32350 task.
32352 This field should always exist, as Ada tasks are always implemented
32353 on top of a thread.  But if @value{GDBN} cannot find this corresponding
32354 thread for any reason, the field is omitted.
32356 @item parent-id
32357 This field exists only when the task was created by another task.
32358 In this case, it provides the ID of the parent task.
32360 @item priority
32361 The base priority of the task.
32363 @item state
32364 The current state of the task.  For a detailed description of the
32365 possible states, see @ref{Ada Tasks}.
32367 @item name
32368 The name of the task.
32370 @end table
32372 @subsubheading Example
32374 @smallexample
32375 -ada-task-info
32376 ^done,tasks=@{nr_rows="3",nr_cols="8",
32377 hdr=[@{width="1",alignment="-1",col_name="current",colhdr=""@},
32378 @{width="3",alignment="1",col_name="id",colhdr="ID"@},
32379 @{width="9",alignment="1",col_name="task-id",colhdr="TID"@},
32380 @{width="4",alignment="1",col_name="thread-id",colhdr=""@},
32381 @{width="4",alignment="1",col_name="parent-id",colhdr="P-ID"@},
32382 @{width="3",alignment="1",col_name="priority",colhdr="Pri"@},
32383 @{width="22",alignment="-1",col_name="state",colhdr="State"@},
32384 @{width="1",alignment="2",col_name="name",colhdr="Name"@}],
32385 body=[@{current="*",id="1",task-id="   644010",thread-id="1",priority="48",
32386 state="Child Termination Wait",name="main_task"@}]@}
32387 (gdb)
32388 @end smallexample
32390 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32391 @node GDB/MI Program Execution
32392 @section @sc{gdb/mi} Program Execution
32394 These are the asynchronous commands which generate the out-of-band
32395 record @samp{*stopped}.  Currently @value{GDBN} only really executes
32396 asynchronously with remote targets and this interaction is mimicked in
32397 other cases.
32399 @subheading The @code{-exec-continue} Command
32400 @findex -exec-continue
32402 @subsubheading Synopsis
32404 @smallexample
32405  -exec-continue [--reverse] [--all|--thread-group N]
32406 @end smallexample
32408 Resumes the execution of the inferior program, which will continue
32409 to execute until it reaches a debugger stop event.  If the 
32410 @samp{--reverse} option is specified, execution resumes in reverse until 
32411 it reaches a stop event.  Stop events may include
32412 @itemize @bullet
32413 @item
32414 breakpoints or watchpoints
32415 @item
32416 signals or exceptions
32417 @item
32418 the end of the process (or its beginning under @samp{--reverse})
32419 @item
32420 the end or beginning of a replay log if one is being used.
32421 @end itemize
32422 In all-stop mode (@pxref{All-Stop
32423 Mode}), may resume only one thread, or all threads, depending on the
32424 value of the @samp{scheduler-locking} variable.  If @samp{--all} is
32425 specified, all threads (in all inferiors) will be resumed.  The @samp{--all} option is
32426 ignored in all-stop mode.  If the @samp{--thread-group} options is
32427 specified, then all threads in that thread group are resumed.
32429 @subsubheading @value{GDBN} Command
32431 The corresponding @value{GDBN} corresponding is @samp{continue}.
32433 @subsubheading Example
32435 @smallexample
32436 -exec-continue
32437 ^running
32438 (gdb)
32439 @@Hello world
32440 *stopped,reason="breakpoint-hit",disp="keep",bkptno="2",frame=@{
32441 func="foo",args=[],file="hello.c",fullname="/home/foo/bar/hello.c",
32442 line="13",arch="i386:x86_64"@}
32443 (gdb)
32444 @end smallexample
32447 @subheading The @code{-exec-finish} Command
32448 @findex -exec-finish
32450 @subsubheading Synopsis
32452 @smallexample
32453  -exec-finish [--reverse]
32454 @end smallexample
32456 Resumes the execution of the inferior program until the current
32457 function is exited.  Displays the results returned by the function.
32458 If the @samp{--reverse} option is specified, resumes the reverse
32459 execution of the inferior program until the point where current
32460 function was called.
32462 @subsubheading @value{GDBN} Command
32464 The corresponding @value{GDBN} command is @samp{finish}.
32466 @subsubheading Example
32468 Function returning @code{void}.
32470 @smallexample
32471 -exec-finish
32472 ^running
32473 (gdb)
32474 @@hello from foo
32475 *stopped,reason="function-finished",frame=@{func="main",args=[],
32476 file="hello.c",fullname="/home/foo/bar/hello.c",line="7",arch="i386:x86_64"@}
32477 (gdb)
32478 @end smallexample
32480 Function returning other than @code{void}.  The name of the internal
32481 @value{GDBN} variable storing the result is printed, together with the
32482 value itself.
32484 @smallexample
32485 -exec-finish
32486 ^running
32487 (gdb)
32488 *stopped,reason="function-finished",frame=@{addr="0x000107b0",func="foo",
32489 args=[@{name="a",value="1"],@{name="b",value="9"@}@},
32490 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32491 arch="i386:x86_64"@},
32492 gdb-result-var="$1",return-value="0"
32493 (gdb)
32494 @end smallexample
32497 @subheading The @code{-exec-interrupt} Command
32498 @findex -exec-interrupt
32500 @subsubheading Synopsis
32502 @smallexample
32503  -exec-interrupt [--all|--thread-group N]
32504 @end smallexample
32506 Interrupts the background execution of the target.  Note how the token
32507 associated with the stop message is the one for the execution command
32508 that has been interrupted.  The token for the interrupt itself only
32509 appears in the @samp{^done} output.  If the user is trying to
32510 interrupt a non-running program, an error message will be printed.
32512 Note that when asynchronous execution is enabled, this command is
32513 asynchronous just like other execution commands.  That is, first the
32514 @samp{^done} response will be printed, and the target stop will be
32515 reported after that using the @samp{*stopped} notification.
32517 In non-stop mode, only the context thread is interrupted by default.
32518 All threads (in all inferiors) will be interrupted if the
32519 @samp{--all}  option is specified.  If the @samp{--thread-group}
32520 option is specified, all threads in that group will be interrupted.
32522 @subsubheading @value{GDBN} Command
32524 The corresponding @value{GDBN} command is @samp{interrupt}.
32526 @subsubheading Example
32528 @smallexample
32529 (gdb)
32530 111-exec-continue
32531 111^running
32533 (gdb)
32534 222-exec-interrupt
32535 222^done
32536 (gdb)
32537 111*stopped,signal-name="SIGINT",signal-meaning="Interrupt",
32538 frame=@{addr="0x00010140",func="foo",args=[],file="try.c",
32539 fullname="/home/foo/bar/try.c",line="13",arch="i386:x86_64"@}
32540 (gdb)
32542 (gdb)
32543 -exec-interrupt
32544 ^error,msg="mi_cmd_exec_interrupt: Inferior not executing."
32545 (gdb)
32546 @end smallexample
32548 @subheading The @code{-exec-jump} Command
32549 @findex -exec-jump
32551 @subsubheading Synopsis
32553 @smallexample
32554  -exec-jump @var{location}
32555 @end smallexample
32557 Resumes execution of the inferior program at the location specified by
32558 parameter.  @xref{Specify Location}, for a description of the
32559 different forms of @var{location}.
32561 @subsubheading @value{GDBN} Command
32563 The corresponding @value{GDBN} command is @samp{jump}.
32565 @subsubheading Example
32567 @smallexample
32568 -exec-jump foo.c:10
32569 *running,thread-id="all"
32570 ^running
32571 @end smallexample
32574 @subheading The @code{-exec-next} Command
32575 @findex -exec-next
32577 @subsubheading Synopsis
32579 @smallexample
32580  -exec-next [--reverse]
32581 @end smallexample
32583 Resumes execution of the inferior program, stopping when the beginning
32584 of the next source line is reached.
32586 If the @samp{--reverse} option is specified, resumes reverse execution
32587 of the inferior program, stopping at the beginning of the previous
32588 source line.  If you issue this command on the first line of a
32589 function, it will take you back to the caller of that function, to the
32590 source line where the function was called.
32593 @subsubheading @value{GDBN} Command
32595 The corresponding @value{GDBN} command is @samp{next}.
32597 @subsubheading Example
32599 @smallexample
32600 -exec-next
32601 ^running
32602 (gdb)
32603 *stopped,reason="end-stepping-range",line="8",file="hello.c"
32604 (gdb)
32605 @end smallexample
32608 @subheading The @code{-exec-next-instruction} Command
32609 @findex -exec-next-instruction
32611 @subsubheading Synopsis
32613 @smallexample
32614  -exec-next-instruction [--reverse]
32615 @end smallexample
32617 Executes one machine instruction.  If the instruction is a function
32618 call, continues until the function returns.  If the program stops at an
32619 instruction in the middle of a source line, the address will be
32620 printed as well.
32622 If the @samp{--reverse} option is specified, resumes reverse execution
32623 of the inferior program, stopping at the previous instruction.  If the
32624 previously executed instruction was a return from another function,
32625 it will continue to execute in reverse until the call to that function
32626 (from the current stack frame) is reached.
32628 @subsubheading @value{GDBN} Command
32630 The corresponding @value{GDBN} command is @samp{nexti}.
32632 @subsubheading Example
32634 @smallexample
32635 (gdb)
32636 -exec-next-instruction
32637 ^running
32639 (gdb)
32640 *stopped,reason="end-stepping-range",
32641 addr="0x000100d4",line="5",file="hello.c"
32642 (gdb)
32643 @end smallexample
32646 @subheading The @code{-exec-return} Command
32647 @findex -exec-return
32649 @subsubheading Synopsis
32651 @smallexample
32652  -exec-return
32653 @end smallexample
32655 Makes current function return immediately.  Doesn't execute the inferior.
32656 Displays the new current frame.
32658 @subsubheading @value{GDBN} Command
32660 The corresponding @value{GDBN} command is @samp{return}.
32662 @subsubheading Example
32664 @smallexample
32665 (gdb)
32666 200-break-insert callee4
32667 200^done,bkpt=@{number="1",addr="0x00010734",
32668 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
32669 (gdb)
32670 000-exec-run
32671 000^running
32672 (gdb)
32673 000*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
32674 frame=@{func="callee4",args=[],
32675 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32676 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
32677 arch="i386:x86_64"@}
32678 (gdb)
32679 205-break-delete
32680 205^done
32681 (gdb)
32682 111-exec-return
32683 111^done,frame=@{level="0",func="callee3",
32684 args=[@{name="strarg",
32685 value="0x11940 \"A string argument.\""@}],
32686 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32687 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
32688 arch="i386:x86_64"@}
32689 (gdb)
32690 @end smallexample
32693 @subheading The @code{-exec-run} Command
32694 @findex -exec-run
32696 @subsubheading Synopsis
32698 @smallexample
32699  -exec-run [ --all | --thread-group N ] [ --start ]
32700 @end smallexample
32702 Starts execution of the inferior from the beginning.  The inferior
32703 executes until either a breakpoint is encountered or the program
32704 exits.  In the latter case the output will include an exit code, if
32705 the program has exited exceptionally.
32707 When neither the @samp{--all} nor the @samp{--thread-group} option
32708 is specified, the current inferior is started.  If the
32709 @samp{--thread-group} option is specified, it should refer to a thread
32710 group of type @samp{process}, and that thread group will be started.
32711 If the @samp{--all} option is specified, then all inferiors will be started.
32713 Using the @samp{--start} option instructs the debugger to stop
32714 the execution at the start of the inferior's main subprogram,
32715 following the same behavior as the @code{start} command
32716 (@pxref{Starting}).
32718 @subsubheading @value{GDBN} Command
32720 The corresponding @value{GDBN} command is @samp{run}.
32722 @subsubheading Examples
32724 @smallexample
32725 (gdb)
32726 -break-insert main
32727 ^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
32728 (gdb)
32729 -exec-run
32730 ^running
32731 (gdb)
32732 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
32733 frame=@{func="main",args=[],file="recursive2.c",
32734 fullname="/home/foo/bar/recursive2.c",line="4",arch="i386:x86_64"@}
32735 (gdb)
32736 @end smallexample
32738 @noindent
32739 Program exited normally:
32741 @smallexample
32742 (gdb)
32743 -exec-run
32744 ^running
32745 (gdb)
32746 x = 55
32747 *stopped,reason="exited-normally"
32748 (gdb)
32749 @end smallexample
32751 @noindent
32752 Program exited exceptionally:
32754 @smallexample
32755 (gdb)
32756 -exec-run
32757 ^running
32758 (gdb)
32759 x = 55
32760 *stopped,reason="exited",exit-code="01"
32761 (gdb)
32762 @end smallexample
32764 Another way the program can terminate is if it receives a signal such as
32765 @code{SIGINT}.  In this case, @sc{gdb/mi} displays this:
32767 @smallexample
32768 (gdb)
32769 *stopped,reason="exited-signalled",signal-name="SIGINT",
32770 signal-meaning="Interrupt"
32771 @end smallexample
32774 @c @subheading -exec-signal
32777 @subheading The @code{-exec-step} Command
32778 @findex -exec-step
32780 @subsubheading Synopsis
32782 @smallexample
32783  -exec-step [--reverse]
32784 @end smallexample
32786 Resumes execution of the inferior program, stopping when the beginning
32787 of the next source line is reached, if the next source line is not a
32788 function call.  If it is, stop at the first instruction of the called
32789 function.  If the @samp{--reverse} option is specified, resumes reverse
32790 execution of the inferior program, stopping at the beginning of the
32791 previously executed source line.
32793 @subsubheading @value{GDBN} Command
32795 The corresponding @value{GDBN} command is @samp{step}.
32797 @subsubheading Example
32799 Stepping into a function:
32801 @smallexample
32802 -exec-step
32803 ^running
32804 (gdb)
32805 *stopped,reason="end-stepping-range",
32806 frame=@{func="foo",args=[@{name="a",value="10"@},
32807 @{name="b",value="0"@}],file="recursive2.c",
32808 fullname="/home/foo/bar/recursive2.c",line="11",arch="i386:x86_64"@}
32809 (gdb)
32810 @end smallexample
32812 Regular stepping:
32814 @smallexample
32815 -exec-step
32816 ^running
32817 (gdb)
32818 *stopped,reason="end-stepping-range",line="14",file="recursive2.c"
32819 (gdb)
32820 @end smallexample
32823 @subheading The @code{-exec-step-instruction} Command
32824 @findex -exec-step-instruction
32826 @subsubheading Synopsis
32828 @smallexample
32829  -exec-step-instruction [--reverse]
32830 @end smallexample
32832 Resumes the inferior which executes one machine instruction.  If the
32833 @samp{--reverse} option is specified, resumes reverse execution of the
32834 inferior program, stopping at the previously executed instruction.
32835 The output, once @value{GDBN} has stopped, will vary depending on
32836 whether we have stopped in the middle of a source line or not.  In the
32837 former case, the address at which the program stopped will be printed
32838 as well.
32840 @subsubheading @value{GDBN} Command
32842 The corresponding @value{GDBN} command is @samp{stepi}.
32844 @subsubheading Example
32846 @smallexample
32847 (gdb)
32848 -exec-step-instruction
32849 ^running
32851 (gdb)
32852 *stopped,reason="end-stepping-range",
32853 frame=@{func="foo",args=[],file="try.c",
32854 fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
32855 (gdb)
32856 -exec-step-instruction
32857 ^running
32859 (gdb)
32860 *stopped,reason="end-stepping-range",
32861 frame=@{addr="0x000100f4",func="foo",args=[],file="try.c",
32862 fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
32863 (gdb)
32864 @end smallexample
32867 @subheading The @code{-exec-until} Command
32868 @findex -exec-until
32870 @subsubheading Synopsis
32872 @smallexample
32873  -exec-until [ @var{location} ]
32874 @end smallexample
32876 Executes the inferior until the @var{location} specified in the
32877 argument is reached.  If there is no argument, the inferior executes
32878 until a source line greater than the current one is reached.  The
32879 reason for stopping in this case will be @samp{location-reached}.
32881 @subsubheading @value{GDBN} Command
32883 The corresponding @value{GDBN} command is @samp{until}.
32885 @subsubheading Example
32887 @smallexample
32888 (gdb)
32889 -exec-until recursive2.c:6
32890 ^running
32891 (gdb)
32892 x = 55
32893 *stopped,reason="location-reached",frame=@{func="main",args=[],
32894 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="6",
32895 arch="i386:x86_64"@}
32896 (gdb)
32897 @end smallexample
32899 @ignore
32900 @subheading -file-clear
32901 Is this going away????
32902 @end ignore
32904 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32905 @node GDB/MI Stack Manipulation
32906 @section @sc{gdb/mi} Stack Manipulation Commands
32908 @subheading The @code{-enable-frame-filters} Command
32909 @findex -enable-frame-filters
32911 @smallexample
32912 -enable-frame-filters
32913 @end smallexample
32915 @value{GDBN} allows Python-based frame filters to affect the output of
32916 the MI commands relating to stack traces.  As there is no way to
32917 implement this in a fully backward-compatible way, a front end must
32918 request that this functionality be enabled.
32920 Once enabled, this feature cannot be disabled.
32922 Note that if Python support has not been compiled into @value{GDBN},
32923 this command will still succeed (and do nothing).
32925 @subheading The @code{-stack-info-frame} Command
32926 @findex -stack-info-frame
32928 @subsubheading Synopsis
32930 @smallexample
32931  -stack-info-frame
32932 @end smallexample
32934 Get info on the selected frame.
32936 @subsubheading @value{GDBN} Command
32938 The corresponding @value{GDBN} command is @samp{info frame} or @samp{frame}
32939 (without arguments).
32941 @subsubheading Example
32943 @smallexample
32944 (gdb)
32945 -stack-info-frame
32946 ^done,frame=@{level="1",addr="0x0001076c",func="callee3",
32947 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32948 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
32949 arch="i386:x86_64"@}
32950 (gdb)
32951 @end smallexample
32953 @subheading The @code{-stack-info-depth} Command
32954 @findex -stack-info-depth
32956 @subsubheading Synopsis
32958 @smallexample
32959  -stack-info-depth [ @var{max-depth} ]
32960 @end smallexample
32962 Return the depth of the stack.  If the integer argument @var{max-depth}
32963 is specified, do not count beyond @var{max-depth} frames.
32965 @subsubheading @value{GDBN} Command
32967 There's no equivalent @value{GDBN} command.
32969 @subsubheading Example
32971 For a stack with frame levels 0 through 11:
32973 @smallexample
32974 (gdb)
32975 -stack-info-depth
32976 ^done,depth="12"
32977 (gdb)
32978 -stack-info-depth 4
32979 ^done,depth="4"
32980 (gdb)
32981 -stack-info-depth 12
32982 ^done,depth="12"
32983 (gdb)
32984 -stack-info-depth 11
32985 ^done,depth="11"
32986 (gdb)
32987 -stack-info-depth 13
32988 ^done,depth="12"
32989 (gdb)
32990 @end smallexample
32992 @anchor{-stack-list-arguments}
32993 @subheading The @code{-stack-list-arguments} Command
32994 @findex -stack-list-arguments
32996 @subsubheading Synopsis
32998 @smallexample
32999  -stack-list-arguments [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
33000     [ @var{low-frame} @var{high-frame} ]
33001 @end smallexample
33003 Display a list of the arguments for the frames between @var{low-frame}
33004 and @var{high-frame} (inclusive).  If @var{low-frame} and
33005 @var{high-frame} are not provided, list the arguments for the whole
33006 call stack.  If the two arguments are equal, show the single frame
33007 at the corresponding level.  It is an error if @var{low-frame} is
33008 larger than the actual number of frames.  On the other hand,
33009 @var{high-frame} may be larger than the actual number of frames, in
33010 which case only existing frames will be returned.
33012 If @var{print-values} is 0 or @code{--no-values}, print only the names of
33013 the variables; if it is 1 or @code{--all-values}, print also their
33014 values; and if it is 2 or @code{--simple-values}, print the name,
33015 type and value for simple data types, and the name and type for arrays,
33016 structures and unions.  If the option @code{--no-frame-filters} is
33017 supplied, then Python frame filters will not be executed.
33019 If the @code{--skip-unavailable} option is specified, arguments that
33020 are not available are not listed.  Partially available arguments
33021 are still displayed, however.
33023 Use of this command to obtain arguments in a single frame is
33024 deprecated in favor of the @samp{-stack-list-variables} command.
33026 @subsubheading @value{GDBN} Command
33028 @value{GDBN} does not have an equivalent command.  @code{gdbtk} has a
33029 @samp{gdb_get_args} command which partially overlaps with the
33030 functionality of @samp{-stack-list-arguments}.
33032 @subsubheading Example
33034 @smallexample
33035 (gdb)
33036 -stack-list-frames
33037 ^done,
33038 stack=[
33039 frame=@{level="0",addr="0x00010734",func="callee4",
33040 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33041 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
33042 arch="i386:x86_64"@},
33043 frame=@{level="1",addr="0x0001076c",func="callee3",
33044 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33045 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
33046 arch="i386:x86_64"@},
33047 frame=@{level="2",addr="0x0001078c",func="callee2",
33048 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33049 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="22",
33050 arch="i386:x86_64"@},
33051 frame=@{level="3",addr="0x000107b4",func="callee1",
33052 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33053 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="27",
33054 arch="i386:x86_64"@},
33055 frame=@{level="4",addr="0x000107e0",func="main",
33056 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33057 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="32",
33058 arch="i386:x86_64"@}]
33059 (gdb)
33060 -stack-list-arguments 0
33061 ^done,
33062 stack-args=[
33063 frame=@{level="0",args=[]@},
33064 frame=@{level="1",args=[name="strarg"]@},
33065 frame=@{level="2",args=[name="intarg",name="strarg"]@},
33066 frame=@{level="3",args=[name="intarg",name="strarg",name="fltarg"]@},
33067 frame=@{level="4",args=[]@}]
33068 (gdb)
33069 -stack-list-arguments 1
33070 ^done,
33071 stack-args=[
33072 frame=@{level="0",args=[]@},
33073 frame=@{level="1",
33074  args=[@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
33075 frame=@{level="2",args=[
33076 @{name="intarg",value="2"@},
33077 @{name="strarg",value="0x11940 \"A string argument.\""@}]@},
33078 @{frame=@{level="3",args=[
33079 @{name="intarg",value="2"@},
33080 @{name="strarg",value="0x11940 \"A string argument.\""@},
33081 @{name="fltarg",value="3.5"@}]@},
33082 frame=@{level="4",args=[]@}]
33083 (gdb)
33084 -stack-list-arguments 0 2 2
33085 ^done,stack-args=[frame=@{level="2",args=[name="intarg",name="strarg"]@}]
33086 (gdb)
33087 -stack-list-arguments 1 2 2
33088 ^done,stack-args=[frame=@{level="2",
33089 args=[@{name="intarg",value="2"@},
33090 @{name="strarg",value="0x11940 \"A string argument.\""@}]@}]
33091 (gdb)
33092 @end smallexample
33094 @c @subheading -stack-list-exception-handlers
33097 @anchor{-stack-list-frames}
33098 @subheading The @code{-stack-list-frames} Command
33099 @findex -stack-list-frames
33101 @subsubheading Synopsis
33103 @smallexample
33104  -stack-list-frames [ --no-frame-filters @var{low-frame} @var{high-frame} ]
33105 @end smallexample
33107 List the frames currently on the stack.  For each frame it displays the
33108 following info:
33110 @table @samp
33111 @item @var{level}
33112 The frame number, 0 being the topmost frame, i.e., the innermost function.
33113 @item @var{addr}
33114 The @code{$pc} value for that frame.
33115 @item @var{func}
33116 Function name.
33117 @item @var{file}
33118 File name of the source file where the function lives.
33119 @item @var{fullname}
33120 The full file name of the source file where the function lives.
33121 @item @var{line}
33122 Line number corresponding to the @code{$pc}.
33123 @item @var{from}
33124 The shared library where this function is defined.  This is only given
33125 if the frame's function is not known.
33126 @item @var{arch}
33127 Frame's architecture.
33128 @end table
33130 If invoked without arguments, this command prints a backtrace for the
33131 whole stack.  If given two integer arguments, it shows the frames whose
33132 levels are between the two arguments (inclusive).  If the two arguments
33133 are equal, it shows the single frame at the corresponding level.  It is
33134 an error if @var{low-frame} is larger than the actual number of
33135 frames.  On the other hand, @var{high-frame} may be larger than the
33136 actual number of frames, in which case only existing frames will be
33137 returned.  If the option @code{--no-frame-filters} is supplied, then
33138 Python frame filters will not be executed.
33140 @subsubheading @value{GDBN} Command
33142 The corresponding @value{GDBN} commands are @samp{backtrace} and @samp{where}.
33144 @subsubheading Example
33146 Full stack backtrace:
33148 @smallexample
33149 (gdb)
33150 -stack-list-frames
33151 ^done,stack=
33152 [frame=@{level="0",addr="0x0001076c",func="foo",
33153   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="11",
33154   arch="i386:x86_64"@},
33155 frame=@{level="1",addr="0x000107a4",func="foo",
33156   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33157   arch="i386:x86_64"@},
33158 frame=@{level="2",addr="0x000107a4",func="foo",
33159   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33160   arch="i386:x86_64"@},
33161 frame=@{level="3",addr="0x000107a4",func="foo",
33162   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33163   arch="i386:x86_64"@},
33164 frame=@{level="4",addr="0x000107a4",func="foo",
33165   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33166   arch="i386:x86_64"@},
33167 frame=@{level="5",addr="0x000107a4",func="foo",
33168   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33169   arch="i386:x86_64"@},
33170 frame=@{level="6",addr="0x000107a4",func="foo",
33171   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33172   arch="i386:x86_64"@},
33173 frame=@{level="7",addr="0x000107a4",func="foo",
33174   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33175   arch="i386:x86_64"@},
33176 frame=@{level="8",addr="0x000107a4",func="foo",
33177   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33178   arch="i386:x86_64"@},
33179 frame=@{level="9",addr="0x000107a4",func="foo",
33180   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33181   arch="i386:x86_64"@},
33182 frame=@{level="10",addr="0x000107a4",func="foo",
33183   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33184   arch="i386:x86_64"@},
33185 frame=@{level="11",addr="0x00010738",func="main",
33186   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="4",
33187   arch="i386:x86_64"@}]
33188 (gdb)
33189 @end smallexample
33191 Show frames between @var{low_frame} and @var{high_frame}:
33193 @smallexample
33194 (gdb)
33195 -stack-list-frames 3 5
33196 ^done,stack=
33197 [frame=@{level="3",addr="0x000107a4",func="foo",
33198   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33199   arch="i386:x86_64"@},
33200 frame=@{level="4",addr="0x000107a4",func="foo",
33201   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33202   arch="i386:x86_64"@},
33203 frame=@{level="5",addr="0x000107a4",func="foo",
33204   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33205   arch="i386:x86_64"@}]
33206 (gdb)
33207 @end smallexample
33209 Show a single frame:
33211 @smallexample
33212 (gdb)
33213 -stack-list-frames 3 3
33214 ^done,stack=
33215 [frame=@{level="3",addr="0x000107a4",func="foo",
33216   file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33217   arch="i386:x86_64"@}]
33218 (gdb)
33219 @end smallexample
33222 @subheading The @code{-stack-list-locals} Command
33223 @findex -stack-list-locals
33224 @anchor{-stack-list-locals}
33226 @subsubheading Synopsis
33228 @smallexample
33229  -stack-list-locals [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
33230 @end smallexample
33232 Display the local variable names for the selected frame.  If
33233 @var{print-values} is 0 or @code{--no-values}, print only the names of
33234 the variables; if it is 1 or @code{--all-values}, print also their
33235 values; and if it is 2 or @code{--simple-values}, print the name,
33236 type and value for simple data types, and the name and type for arrays,
33237 structures and unions.  In this last case, a frontend can immediately
33238 display the value of simple data types and create variable objects for
33239 other data types when the user wishes to explore their values in
33240 more detail.  If the option @code{--no-frame-filters} is supplied, then
33241 Python frame filters will not be executed.
33243 If the @code{--skip-unavailable} option is specified, local variables
33244 that are not available are not listed.  Partially available local
33245 variables are still displayed, however.
33247 This command is deprecated in favor of the
33248 @samp{-stack-list-variables} command.
33250 @subsubheading @value{GDBN} Command
33252 @samp{info locals} in @value{GDBN}, @samp{gdb_get_locals} in @code{gdbtk}.
33254 @subsubheading Example
33256 @smallexample
33257 (gdb)
33258 -stack-list-locals 0
33259 ^done,locals=[name="A",name="B",name="C"]
33260 (gdb)
33261 -stack-list-locals --all-values
33262 ^done,locals=[@{name="A",value="1"@},@{name="B",value="2"@},
33263   @{name="C",value="@{1, 2, 3@}"@}]
33264 -stack-list-locals --simple-values
33265 ^done,locals=[@{name="A",type="int",value="1"@},
33266   @{name="B",type="int",value="2"@},@{name="C",type="int [3]"@}]
33267 (gdb)
33268 @end smallexample
33270 @anchor{-stack-list-variables}
33271 @subheading The @code{-stack-list-variables} Command
33272 @findex -stack-list-variables
33274 @subsubheading Synopsis
33276 @smallexample
33277  -stack-list-variables [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
33278 @end smallexample
33280 Display the names of local variables and function arguments for the selected frame.  If
33281 @var{print-values} is 0 or @code{--no-values}, print only the names of
33282 the variables; if it is 1 or @code{--all-values}, print also their
33283 values; and if it is 2 or @code{--simple-values}, print the name,
33284 type and value for simple data types, and the name and type for arrays,
33285 structures and unions.  If the option @code{--no-frame-filters} is
33286 supplied, then Python frame filters will not be executed.
33288 If the @code{--skip-unavailable} option is specified, local variables
33289 and arguments that are not available are not listed.  Partially
33290 available arguments and local variables are still displayed, however.
33292 @subsubheading Example
33294 @smallexample
33295 (gdb)
33296 -stack-list-variables --thread 1 --frame 0 --all-values
33297 ^done,variables=[@{name="x",value="11"@},@{name="s",value="@{a = 1, b = 2@}"@}]
33298 (gdb)
33299 @end smallexample
33302 @subheading The @code{-stack-select-frame} Command
33303 @findex -stack-select-frame
33305 @subsubheading Synopsis
33307 @smallexample
33308  -stack-select-frame @var{framenum}
33309 @end smallexample
33311 Change the selected frame.  Select a different frame @var{framenum} on
33312 the stack.
33314 This command in deprecated in favor of passing the @samp{--frame}
33315 option to every command.
33317 @subsubheading @value{GDBN} Command
33319 The corresponding @value{GDBN} commands are @samp{frame}, @samp{up},
33320 @samp{down}, @samp{select-frame}, @samp{up-silent}, and @samp{down-silent}.
33322 @subsubheading Example
33324 @smallexample
33325 (gdb)
33326 -stack-select-frame 2
33327 ^done
33328 (gdb)
33329 @end smallexample
33331 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33332 @node GDB/MI Variable Objects
33333 @section @sc{gdb/mi} Variable Objects
33335 @ignore
33337 @subheading Motivation for Variable Objects in @sc{gdb/mi}
33339 For the implementation of a variable debugger window (locals, watched
33340 expressions, etc.), we are proposing the adaptation of the existing code
33341 used by @code{Insight}.
33343 The two main reasons for that are:
33345 @enumerate 1
33346 @item
33347 It has been proven in practice (it is already on its second generation).
33349 @item
33350 It will shorten development time (needless to say how important it is
33351 now).
33352 @end enumerate
33354 The original interface was designed to be used by Tcl code, so it was
33355 slightly changed so it could be used through @sc{gdb/mi}.  This section
33356 describes the @sc{gdb/mi} operations that will be available and gives some
33357 hints about their use.
33359 @emph{Note}: In addition to the set of operations described here, we
33360 expect the @sc{gui} implementation of a variable window to require, at
33361 least, the following operations:
33363 @itemize @bullet
33364 @item @code{-gdb-show} @code{output-radix}
33365 @item @code{-stack-list-arguments}
33366 @item @code{-stack-list-locals}
33367 @item @code{-stack-select-frame}
33368 @end itemize
33370 @end ignore
33372 @subheading Introduction to Variable Objects
33374 @cindex variable objects in @sc{gdb/mi}
33376 Variable objects are "object-oriented" MI interface for examining and
33377 changing values of expressions.  Unlike some other MI interfaces that
33378 work with expressions, variable objects are specifically designed for
33379 simple and efficient presentation in the frontend.  A variable object
33380 is identified by string name.  When a variable object is created, the
33381 frontend specifies the expression for that variable object.  The
33382 expression can be a simple variable, or it can be an arbitrary complex
33383 expression, and can even involve CPU registers.  After creating a
33384 variable object, the frontend can invoke other variable object
33385 operations---for example to obtain or change the value of a variable
33386 object, or to change display format.
33388 Variable objects have hierarchical tree structure.  Any variable object
33389 that corresponds to a composite type, such as structure in C, has
33390 a number of child variable objects, for example corresponding to each
33391 element of a structure.  A child variable object can itself have 
33392 children, recursively.  Recursion ends when we reach 
33393 leaf variable objects, which always have built-in types.  Child variable
33394 objects are created only by explicit request, so if a frontend 
33395 is not interested in the children of a particular variable object, no
33396 child will be created.
33398 For a leaf variable object it is possible to obtain its value as a
33399 string, or set the value from a string.  String value can be also
33400 obtained for a non-leaf variable object, but it's generally a string
33401 that only indicates the type of the object, and does not list its
33402 contents.  Assignment to a non-leaf variable object is not allowed.
33404 A frontend does not need to read the values of all variable objects each time
33405 the program stops.  Instead, MI provides an update command that lists all
33406 variable objects whose values has changed since the last update
33407 operation.  This considerably reduces the amount of data that must
33408 be transferred to the frontend.  As noted above, children variable
33409 objects are created on demand, and only leaf variable objects have a
33410 real value.  As result, gdb will read target memory only for leaf
33411 variables that frontend has created.
33413 The automatic update is not always desirable.  For example, a frontend
33414 might want to keep a value of some expression for future reference,
33415 and never update it.  For another example,  fetching memory is
33416 relatively slow for embedded targets, so a frontend might want
33417 to disable automatic update for the variables that are either not
33418 visible on the screen, or ``closed''.  This is possible using so
33419 called ``frozen variable objects''.  Such variable objects are never
33420 implicitly updated.  
33422 Variable objects can be either @dfn{fixed} or @dfn{floating}.  For the
33423 fixed variable object, the expression is parsed when the variable
33424 object is created, including associating identifiers to specific
33425 variables.  The meaning of expression never changes.  For a floating
33426 variable object the values of variables whose names appear in the
33427 expressions are re-evaluated every time in the context of the current
33428 frame.  Consider this example:
33430 @smallexample
33431 void do_work(...)
33433         struct work_state state;
33435         if (...)
33436            do_work(...);
33438 @end smallexample
33440 If a fixed variable object for the @code{state} variable is created in
33441 this function, and we enter the recursive call, the variable
33442 object will report the value of @code{state} in the top-level
33443 @code{do_work} invocation.  On the other hand, a floating variable
33444 object will report the value of @code{state} in the current frame.
33446 If an expression specified when creating a fixed variable object
33447 refers to a local variable, the variable object becomes bound to the
33448 thread and frame in which the variable object is created.  When such
33449 variable object is updated, @value{GDBN} makes sure that the
33450 thread/frame combination the variable object is bound to still exists,
33451 and re-evaluates the variable object in context of that thread/frame.
33453 The following is the complete set of @sc{gdb/mi} operations defined to
33454 access this functionality:
33456 @multitable @columnfractions .4 .6
33457 @item @strong{Operation}
33458 @tab @strong{Description}
33460 @item @code{-enable-pretty-printing}
33461 @tab enable Python-based pretty-printing
33462 @item @code{-var-create}
33463 @tab create a variable object
33464 @item @code{-var-delete}
33465 @tab delete the variable object and/or its children
33466 @item @code{-var-set-format}
33467 @tab set the display format of this variable
33468 @item @code{-var-show-format}
33469 @tab show the display format of this variable
33470 @item @code{-var-info-num-children}
33471 @tab tells how many children this object has
33472 @item @code{-var-list-children}
33473 @tab return a list of the object's children
33474 @item @code{-var-info-type}
33475 @tab show the type of this variable object
33476 @item @code{-var-info-expression}
33477 @tab print parent-relative expression that this variable object represents
33478 @item @code{-var-info-path-expression}
33479 @tab print full expression that this variable object represents
33480 @item @code{-var-show-attributes}
33481 @tab is this variable editable? does it exist here?
33482 @item @code{-var-evaluate-expression}
33483 @tab get the value of this variable
33484 @item @code{-var-assign}
33485 @tab set the value of this variable
33486 @item @code{-var-update}
33487 @tab update the variable and its children
33488 @item @code{-var-set-frozen}
33489 @tab set frozenness attribute
33490 @item @code{-var-set-update-range}
33491 @tab set range of children to display on update
33492 @end multitable
33494 In the next subsection we describe each operation in detail and suggest
33495 how it can be used.
33497 @subheading Description And Use of Operations on Variable Objects
33499 @subheading The @code{-enable-pretty-printing} Command
33500 @findex -enable-pretty-printing
33502 @smallexample
33503 -enable-pretty-printing
33504 @end smallexample
33506 @value{GDBN} allows Python-based visualizers to affect the output of the
33507 MI variable object commands.  However, because there was no way to
33508 implement this in a fully backward-compatible way, a front end must
33509 request that this functionality be enabled.
33511 Once enabled, this feature cannot be disabled.
33513 Note that if Python support has not been compiled into @value{GDBN},
33514 this command will still succeed (and do nothing).
33516 @subheading The @code{-var-create} Command
33517 @findex -var-create
33519 @subsubheading Synopsis
33521 @smallexample
33522  -var-create @{@var{name} | "-"@}
33523     @{@var{frame-addr} | "*" | "@@"@} @var{expression}
33524 @end smallexample
33526 This operation creates a variable object, which allows the monitoring of
33527 a variable, the result of an expression, a memory cell or a CPU
33528 register.
33530 The @var{name} parameter is the string by which the object can be
33531 referenced.  It must be unique.  If @samp{-} is specified, the varobj
33532 system will generate a string ``varNNNNNN'' automatically.  It will be
33533 unique provided that one does not specify @var{name} of that format.
33534 The command fails if a duplicate name is found.
33536 The frame under which the expression should be evaluated can be
33537 specified by @var{frame-addr}.  A @samp{*} indicates that the current
33538 frame should be used.  A @samp{@@} indicates that a floating variable
33539 object must be created.
33541 @var{expression} is any expression valid on the current language set (must not
33542 begin with a @samp{*}), or one of the following:
33544 @itemize @bullet
33545 @item
33546 @samp{*@var{addr}}, where @var{addr} is the address of a memory cell
33548 @item
33549 @samp{*@var{addr}-@var{addr}} --- a memory address range (TBD)
33551 @item
33552 @samp{$@var{regname}} --- a CPU register name
33553 @end itemize
33555 @cindex dynamic varobj
33556 A varobj's contents may be provided by a Python-based pretty-printer.  In this
33557 case the varobj is known as a @dfn{dynamic varobj}.  Dynamic varobjs
33558 have slightly different semantics in some cases.  If the
33559 @code{-enable-pretty-printing} command is not sent, then @value{GDBN}
33560 will never create a dynamic varobj.  This ensures backward
33561 compatibility for existing clients.
33563 @subsubheading Result
33565 This operation returns attributes of the newly-created varobj.  These
33566 are:
33568 @table @samp
33569 @item name
33570 The name of the varobj.
33572 @item numchild
33573 The number of children of the varobj.  This number is not necessarily
33574 reliable for a dynamic varobj.  Instead, you must examine the
33575 @samp{has_more} attribute.
33577 @item value
33578 The varobj's scalar value.  For a varobj whose type is some sort of
33579 aggregate (e.g., a @code{struct}), or for a dynamic varobj, this value
33580 will not be interesting.
33582 @item type
33583 The varobj's type.  This is a string representation of the type, as
33584 would be printed by the @value{GDBN} CLI.  If @samp{print object}
33585 (@pxref{Print Settings, set print object}) is set to @code{on}, the
33586 @emph{actual} (derived) type of the object is shown rather than the
33587 @emph{declared} one.
33589 @item thread-id
33590 If a variable object is bound to a specific thread, then this is the
33591 thread's global identifier.
33593 @item has_more
33594 For a dynamic varobj, this indicates whether there appear to be any
33595 children available.  For a non-dynamic varobj, this will be 0.
33597 @item dynamic
33598 This attribute will be present and have the value @samp{1} if the
33599 varobj is a dynamic varobj.  If the varobj is not a dynamic varobj,
33600 then this attribute will not be present.
33602 @item displayhint
33603 A dynamic varobj can supply a display hint to the front end.  The
33604 value comes directly from the Python pretty-printer object's
33605 @code{display_hint} method.  @xref{Pretty Printing API}.
33606 @end table
33608 Typical output will look like this:
33610 @smallexample
33611  name="@var{name}",numchild="@var{N}",type="@var{type}",thread-id="@var{M}",
33612   has_more="@var{has_more}"
33613 @end smallexample
33616 @subheading The @code{-var-delete} Command
33617 @findex -var-delete
33619 @subsubheading Synopsis
33621 @smallexample
33622  -var-delete [ -c ] @var{name}
33623 @end smallexample
33625 Deletes a previously created variable object and all of its children.
33626 With the @samp{-c} option, just deletes the children.
33628 Returns an error if the object @var{name} is not found.
33631 @subheading The @code{-var-set-format} Command
33632 @findex -var-set-format
33634 @subsubheading Synopsis
33636 @smallexample
33637  -var-set-format @var{name} @var{format-spec}
33638 @end smallexample
33640 Sets the output format for the value of the object @var{name} to be
33641 @var{format-spec}.
33643 @anchor{-var-set-format}
33644 The syntax for the @var{format-spec} is as follows:
33646 @smallexample
33647  @var{format-spec} @expansion{}
33648  @{binary | decimal | hexadecimal | octal | natural | zero-hexadecimal@}
33649 @end smallexample
33651 The natural format is the default format choosen automatically
33652 based on the variable type (like decimal for an @code{int}, hex
33653 for pointers, etc.).
33655 The zero-hexadecimal format has a representation similar to hexadecimal
33656 but with padding zeroes to the left of the value.  For example, a 32-bit
33657 hexadecimal value of 0x1234 would be represented as 0x00001234 in the
33658 zero-hexadecimal format.
33660 For a variable with children, the format is set only on the 
33661 variable itself, and the children are not affected.  
33663 @subheading The @code{-var-show-format} Command
33664 @findex -var-show-format
33666 @subsubheading Synopsis
33668 @smallexample
33669  -var-show-format @var{name}
33670 @end smallexample
33672 Returns the format used to display the value of the object @var{name}.
33674 @smallexample
33675  @var{format} @expansion{}
33676  @var{format-spec}
33677 @end smallexample
33680 @subheading The @code{-var-info-num-children} Command
33681 @findex -var-info-num-children
33683 @subsubheading Synopsis
33685 @smallexample
33686  -var-info-num-children @var{name}
33687 @end smallexample
33689 Returns the number of children of a variable object @var{name}:
33691 @smallexample
33692  numchild=@var{n}
33693 @end smallexample
33695 Note that this number is not completely reliable for a dynamic varobj.
33696 It will return the current number of children, but more children may
33697 be available.
33700 @subheading The @code{-var-list-children} Command
33701 @findex -var-list-children
33703 @subsubheading Synopsis
33705 @smallexample
33706  -var-list-children [@var{print-values}] @var{name} [@var{from} @var{to}]
33707 @end smallexample
33708 @anchor{-var-list-children}
33710 Return a list of the children of the specified variable object and
33711 create variable objects for them, if they do not already exist.  With
33712 a single argument or if @var{print-values} has a value of 0 or
33713 @code{--no-values}, print only the names of the variables; if
33714 @var{print-values} is 1 or @code{--all-values}, also print their
33715 values; and if it is 2 or @code{--simple-values} print the name and
33716 value for simple data types and just the name for arrays, structures
33717 and unions.
33719 @var{from} and @var{to}, if specified, indicate the range of children
33720 to report.  If @var{from} or @var{to} is less than zero, the range is
33721 reset and all children will be reported.  Otherwise, children starting
33722 at @var{from} (zero-based) and up to and excluding @var{to} will be
33723 reported.
33725 If a child range is requested, it will only affect the current call to
33726 @code{-var-list-children}, but not future calls to @code{-var-update}.
33727 For this, you must instead use @code{-var-set-update-range}.  The
33728 intent of this approach is to enable a front end to implement any
33729 update approach it likes; for example, scrolling a view may cause the
33730 front end to request more children with @code{-var-list-children}, and
33731 then the front end could call @code{-var-set-update-range} with a
33732 different range to ensure that future updates are restricted to just
33733 the visible items.
33735 For each child the following results are returned:
33737 @table @var
33739 @item name
33740 Name of the variable object created for this child.
33742 @item exp
33743 The expression to be shown to the user by the front end to designate this child.
33744 For example this may be the name of a structure member.
33746 For a dynamic varobj, this value cannot be used to form an
33747 expression.  There is no way to do this at all with a dynamic varobj.
33749 For C/C@t{++} structures there are several pseudo children returned to
33750 designate access qualifiers.  For these pseudo children @var{exp} is
33751 @samp{public}, @samp{private}, or @samp{protected}.  In this case the
33752 type and value are not present.
33754 A dynamic varobj will not report the access qualifying
33755 pseudo-children, regardless of the language.  This information is not
33756 available at all with a dynamic varobj.
33758 @item numchild
33759 Number of children this child has.  For a dynamic varobj, this will be
33762 @item type
33763 The type of the child.  If @samp{print object}
33764 (@pxref{Print Settings, set print object}) is set to @code{on}, the
33765 @emph{actual} (derived) type of the object is shown rather than the
33766 @emph{declared} one.
33768 @item value
33769 If values were requested, this is the value.
33771 @item thread-id
33772 If this variable object is associated with a thread, this is the
33773 thread's global thread id.  Otherwise this result is not present.
33775 @item frozen
33776 If the variable object is frozen, this variable will be present with a value of 1.
33778 @item displayhint
33779 A dynamic varobj can supply a display hint to the front end.  The
33780 value comes directly from the Python pretty-printer object's
33781 @code{display_hint} method.  @xref{Pretty Printing API}.
33783 @item dynamic
33784 This attribute will be present and have the value @samp{1} if the
33785 varobj is a dynamic varobj.  If the varobj is not a dynamic varobj,
33786 then this attribute will not be present.
33788 @end table
33790 The result may have its own attributes:
33792 @table @samp
33793 @item displayhint
33794 A dynamic varobj can supply a display hint to the front end.  The
33795 value comes directly from the Python pretty-printer object's
33796 @code{display_hint} method.  @xref{Pretty Printing API}.
33798 @item has_more
33799 This is an integer attribute which is nonzero if there are children
33800 remaining after the end of the selected range.
33801 @end table
33803 @subsubheading Example
33805 @smallexample
33806 (gdb)
33807  -var-list-children n
33808  ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
33809  numchild=@var{n},type=@var{type}@},@r{(repeats N times)}]
33810 (gdb)
33811  -var-list-children --all-values n
33812  ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
33813  numchild=@var{n},value=@var{value},type=@var{type}@},@r{(repeats N times)}]
33814 @end smallexample
33817 @subheading The @code{-var-info-type} Command
33818 @findex -var-info-type
33820 @subsubheading Synopsis
33822 @smallexample
33823  -var-info-type @var{name}
33824 @end smallexample
33826 Returns the type of the specified variable @var{name}.  The type is
33827 returned as a string in the same format as it is output by the
33828 @value{GDBN} CLI:
33830 @smallexample
33831  type=@var{typename}
33832 @end smallexample
33835 @subheading The @code{-var-info-expression} Command
33836 @findex -var-info-expression
33838 @subsubheading Synopsis
33840 @smallexample
33841  -var-info-expression @var{name}
33842 @end smallexample
33844 Returns a string that is suitable for presenting this
33845 variable object in user interface.  The string is generally
33846 not valid expression in the current language, and cannot be evaluated.
33848 For example, if @code{a} is an array, and variable object
33849 @code{A} was created for @code{a}, then we'll get this output:
33851 @smallexample
33852 (gdb) -var-info-expression A.1
33853 ^done,lang="C",exp="1"
33854 @end smallexample
33856 @noindent
33857 Here, the value of @code{lang} is the language name, which can be
33858 found in @ref{Supported Languages}.
33860 Note that the output of the @code{-var-list-children} command also
33861 includes those expressions, so the @code{-var-info-expression} command
33862 is of limited use.
33864 @subheading The @code{-var-info-path-expression} Command
33865 @findex -var-info-path-expression
33867 @subsubheading Synopsis
33869 @smallexample
33870  -var-info-path-expression @var{name}
33871 @end smallexample
33873 Returns an expression that can be evaluated in the current
33874 context and will yield the same value that a variable object has.
33875 Compare this with the @code{-var-info-expression} command, which
33876 result can be used only for UI presentation.  Typical use of
33877 the @code{-var-info-path-expression} command is creating a 
33878 watchpoint from a variable object.
33880 This command is currently not valid for children of a dynamic varobj,
33881 and will give an error when invoked on one.
33883 For example, suppose @code{C} is a C@t{++} class, derived from class
33884 @code{Base}, and that the @code{Base} class has a member called
33885 @code{m_size}.  Assume a variable @code{c} is has the type of
33886 @code{C} and a variable object @code{C} was created for variable
33887 @code{c}.  Then, we'll get this output:
33888 @smallexample
33889 (gdb) -var-info-path-expression C.Base.public.m_size
33890 ^done,path_expr=((Base)c).m_size)
33891 @end smallexample
33893 @subheading The @code{-var-show-attributes} Command
33894 @findex -var-show-attributes
33896 @subsubheading Synopsis
33898 @smallexample
33899  -var-show-attributes @var{name}
33900 @end smallexample
33902 List attributes of the specified variable object @var{name}:
33904 @smallexample
33905  status=@var{attr} [ ( ,@var{attr} )* ]
33906 @end smallexample
33908 @noindent
33909 where @var{attr} is @code{@{ @{ editable | noneditable @} | TBD @}}.
33911 @subheading The @code{-var-evaluate-expression} Command
33912 @findex -var-evaluate-expression
33914 @subsubheading Synopsis
33916 @smallexample
33917  -var-evaluate-expression [-f @var{format-spec}] @var{name}
33918 @end smallexample
33920 Evaluates the expression that is represented by the specified variable
33921 object and returns its value as a string.  The format of the string
33922 can be specified with the @samp{-f} option.  The possible values of 
33923 this option are the same as for @code{-var-set-format} 
33924 (@pxref{-var-set-format}).  If the @samp{-f} option is not specified,
33925 the current display format will be used.  The current display format 
33926 can be changed using the @code{-var-set-format} command.
33928 @smallexample
33929  value=@var{value}
33930 @end smallexample
33932 Note that one must invoke @code{-var-list-children} for a variable
33933 before the value of a child variable can be evaluated.
33935 @subheading The @code{-var-assign} Command
33936 @findex -var-assign
33938 @subsubheading Synopsis
33940 @smallexample
33941  -var-assign @var{name} @var{expression}
33942 @end smallexample
33944 Assigns the value of @var{expression} to the variable object specified
33945 by @var{name}.  The object must be @samp{editable}.  If the variable's
33946 value is altered by the assign, the variable will show up in any
33947 subsequent @code{-var-update} list.
33949 @subsubheading Example
33951 @smallexample
33952 (gdb)
33953 -var-assign var1 3
33954 ^done,value="3"
33955 (gdb)
33956 -var-update *
33957 ^done,changelist=[@{name="var1",in_scope="true",type_changed="false"@}]
33958 (gdb)
33959 @end smallexample
33961 @subheading The @code{-var-update} Command
33962 @findex -var-update
33964 @subsubheading Synopsis
33966 @smallexample
33967  -var-update [@var{print-values}] @{@var{name} | "*"@}
33968 @end smallexample
33970 Reevaluate the expressions corresponding to the variable object
33971 @var{name} and all its direct and indirect children, and return the
33972 list of variable objects whose values have changed; @var{name} must
33973 be a root variable object.  Here, ``changed'' means that the result of
33974 @code{-var-evaluate-expression} before and after the
33975 @code{-var-update} is different.  If @samp{*} is used as the variable
33976 object names, all existing variable objects are updated, except
33977 for frozen ones (@pxref{-var-set-frozen}).  The option
33978 @var{print-values} determines whether both names and values, or just
33979 names are printed.  The possible values of this option are the same
33980 as for @code{-var-list-children} (@pxref{-var-list-children}).  It is
33981 recommended to use the @samp{--all-values} option, to reduce the
33982 number of MI commands needed on each program stop.
33984 With the @samp{*} parameter, if a variable object is bound to a
33985 currently running thread, it will not be updated, without any
33986 diagnostic.
33988 If @code{-var-set-update-range} was previously used on a varobj, then
33989 only the selected range of children will be reported.
33991 @code{-var-update} reports all the changed varobjs in a tuple named
33992 @samp{changelist}.
33994 Each item in the change list is itself a tuple holding:
33996 @table @samp
33997 @item name
33998 The name of the varobj.
34000 @item value
34001 If values were requested for this update, then this field will be
34002 present and will hold the value of the varobj.
34004 @item in_scope
34005 @anchor{-var-update}
34006 This field is a string which may take one of three values:
34008 @table @code
34009 @item "true"
34010 The variable object's current value is valid.
34012 @item "false"
34013 The variable object does not currently hold a valid value but it may
34014 hold one in the future if its associated expression comes back into
34015 scope.
34017 @item "invalid"
34018 The variable object no longer holds a valid value.
34019 This can occur when the executable file being debugged has changed,
34020 either through recompilation or by using the @value{GDBN} @code{file}
34021 command.  The front end should normally choose to delete these variable
34022 objects.
34023 @end table
34025 In the future new values may be added to this list so the front should
34026 be prepared for this possibility.  @xref{GDB/MI Development and Front Ends, ,@sc{GDB/MI} Development and Front Ends}.
34028 @item type_changed
34029 This is only present if the varobj is still valid.  If the type
34030 changed, then this will be the string @samp{true}; otherwise it will
34031 be @samp{false}.
34033 When a varobj's type changes, its children are also likely to have
34034 become incorrect.  Therefore, the varobj's children are automatically
34035 deleted when this attribute is @samp{true}.  Also, the varobj's update
34036 range, when set using the @code{-var-set-update-range} command, is
34037 unset.
34039 @item new_type
34040 If the varobj's type changed, then this field will be present and will
34041 hold the new type.
34043 @item new_num_children
34044 For a dynamic varobj, if the number of children changed, or if the
34045 type changed, this will be the new number of children.
34047 The @samp{numchild} field in other varobj responses is generally not
34048 valid for a dynamic varobj -- it will show the number of children that
34049 @value{GDBN} knows about, but because dynamic varobjs lazily
34050 instantiate their children, this will not reflect the number of
34051 children which may be available.
34053 The @samp{new_num_children} attribute only reports changes to the
34054 number of children known by @value{GDBN}.  This is the only way to
34055 detect whether an update has removed children (which necessarily can
34056 only happen at the end of the update range).
34058 @item displayhint
34059 The display hint, if any.
34061 @item has_more
34062 This is an integer value, which will be 1 if there are more children
34063 available outside the varobj's update range.
34065 @item dynamic
34066 This attribute will be present and have the value @samp{1} if the
34067 varobj is a dynamic varobj.  If the varobj is not a dynamic varobj,
34068 then this attribute will not be present.
34070 @item new_children
34071 If new children were added to a dynamic varobj within the selected
34072 update range (as set by @code{-var-set-update-range}), then they will
34073 be listed in this attribute.
34074 @end table
34076 @subsubheading Example
34078 @smallexample
34079 (gdb)
34080 -var-assign var1 3
34081 ^done,value="3"
34082 (gdb)
34083 -var-update --all-values var1
34084 ^done,changelist=[@{name="var1",value="3",in_scope="true",
34085 type_changed="false"@}]
34086 (gdb)
34087 @end smallexample
34089 @subheading The @code{-var-set-frozen} Command
34090 @findex -var-set-frozen
34091 @anchor{-var-set-frozen}
34093 @subsubheading Synopsis
34095 @smallexample
34096  -var-set-frozen @var{name} @var{flag}
34097 @end smallexample
34099 Set the frozenness flag on the variable object @var{name}.  The
34100 @var{flag} parameter should be either @samp{1} to make the variable
34101 frozen or @samp{0} to make it unfrozen.  If a variable object is
34102 frozen, then neither itself, nor any of its children, are 
34103 implicitly updated by @code{-var-update} of 
34104 a parent variable or by @code{-var-update *}.  Only
34105 @code{-var-update} of the variable itself will update its value and
34106 values of its children.  After a variable object is unfrozen, it is
34107 implicitly updated by all subsequent @code{-var-update} operations.  
34108 Unfreezing a variable does not update it, only subsequent
34109 @code{-var-update} does.
34111 @subsubheading Example
34113 @smallexample
34114 (gdb)
34115 -var-set-frozen V 1
34116 ^done
34117 (gdb)
34118 @end smallexample
34120 @subheading The @code{-var-set-update-range} command
34121 @findex -var-set-update-range
34122 @anchor{-var-set-update-range}
34124 @subsubheading Synopsis
34126 @smallexample
34127  -var-set-update-range @var{name} @var{from} @var{to}
34128 @end smallexample
34130 Set the range of children to be returned by future invocations of
34131 @code{-var-update}.
34133 @var{from} and @var{to} indicate the range of children to report.  If
34134 @var{from} or @var{to} is less than zero, the range is reset and all
34135 children will be reported.  Otherwise, children starting at @var{from}
34136 (zero-based) and up to and excluding @var{to} will be reported.
34138 @subsubheading Example
34140 @smallexample
34141 (gdb)
34142 -var-set-update-range V 1 2
34143 ^done
34144 @end smallexample
34146 @subheading The @code{-var-set-visualizer} command
34147 @findex -var-set-visualizer
34148 @anchor{-var-set-visualizer}
34150 @subsubheading Synopsis
34152 @smallexample
34153  -var-set-visualizer @var{name} @var{visualizer}
34154 @end smallexample
34156 Set a visualizer for the variable object @var{name}.
34158 @var{visualizer} is the visualizer to use.  The special value
34159 @samp{None} means to disable any visualizer in use.
34161 If not @samp{None}, @var{visualizer} must be a Python expression.
34162 This expression must evaluate to a callable object which accepts a
34163 single argument.  @value{GDBN} will call this object with the value of
34164 the varobj @var{name} as an argument (this is done so that the same
34165 Python pretty-printing code can be used for both the CLI and MI).
34166 When called, this object must return an object which conforms to the
34167 pretty-printing interface (@pxref{Pretty Printing API}).
34169 The pre-defined function @code{gdb.default_visualizer} may be used to
34170 select a visualizer by following the built-in process
34171 (@pxref{Selecting Pretty-Printers}).  This is done automatically when
34172 a varobj is created, and so ordinarily is not needed.
34174 This feature is only available if Python support is enabled.  The MI
34175 command @code{-list-features} (@pxref{GDB/MI Support Commands})
34176 can be used to check this.
34178 @subsubheading Example
34180 Resetting the visualizer:
34182 @smallexample
34183 (gdb)
34184 -var-set-visualizer V None
34185 ^done
34186 @end smallexample
34188 Reselecting the default (type-based) visualizer:
34190 @smallexample
34191 (gdb)
34192 -var-set-visualizer V gdb.default_visualizer
34193 ^done
34194 @end smallexample
34196 Suppose @code{SomeClass} is a visualizer class.  A lambda expression
34197 can be used to instantiate this class for a varobj:
34199 @smallexample
34200 (gdb)
34201 -var-set-visualizer V "lambda val: SomeClass()"
34202 ^done
34203 @end smallexample
34205 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34206 @node GDB/MI Data Manipulation
34207 @section @sc{gdb/mi} Data Manipulation
34209 @cindex data manipulation, in @sc{gdb/mi}
34210 @cindex @sc{gdb/mi}, data manipulation
34211 This section describes the @sc{gdb/mi} commands that manipulate data:
34212 examine memory and registers, evaluate expressions, etc.
34214 For details about what an addressable memory unit is,
34215 @pxref{addressable memory unit}.
34217 @c REMOVED FROM THE INTERFACE.
34218 @c @subheading -data-assign
34219 @c Change the value of a program variable. Plenty of side effects.
34220 @c @subsubheading GDB Command
34221 @c set variable
34222 @c @subsubheading Example
34223 @c N.A.
34225 @subheading The @code{-data-disassemble} Command
34226 @findex -data-disassemble
34228 @subsubheading Synopsis
34230 @smallexample
34231  -data-disassemble
34232     [ -s @var{start-addr} -e @var{end-addr} ]
34233   | [ -a @var{addr} ]
34234   | [ -f @var{filename} -l @var{linenum} [ -n @var{lines} ] ]
34235   -- @var{mode}
34236 @end smallexample
34238 @noindent
34239 Where:
34241 @table @samp
34242 @item @var{start-addr}
34243 is the beginning address (or @code{$pc})
34244 @item @var{end-addr}
34245 is the end address
34246 @item @var{addr}
34247 is an address anywhere within (or the name of) the function to
34248 disassemble.  If an address is specified, the whole function
34249 surrounding that address will be disassembled.  If a name is
34250 specified, the whole function with that name will be disassembled.
34251 @item @var{filename}
34252 is the name of the file to disassemble
34253 @item @var{linenum}
34254 is the line number to disassemble around
34255 @item @var{lines}
34256 is the number of disassembly lines to be produced.  If it is -1,
34257 the whole function will be disassembled, in case no @var{end-addr} is
34258 specified.  If @var{end-addr} is specified as a non-zero value, and
34259 @var{lines} is lower than the number of disassembly lines between
34260 @var{start-addr} and @var{end-addr}, only @var{lines} lines are
34261 displayed; if @var{lines} is higher than the number of lines between
34262 @var{start-addr} and @var{end-addr}, only the lines up to @var{end-addr}
34263 are displayed.
34264 @item @var{mode}
34265 is one of:
34266 @itemize @bullet
34267 @item 0 disassembly only
34268 @item 1 mixed source and disassembly (deprecated)
34269 @item 2 disassembly with raw opcodes
34270 @item 3 mixed source and disassembly with raw opcodes (deprecated)
34271 @item 4 mixed source and disassembly
34272 @item 5 mixed source and disassembly with raw opcodes
34273 @end itemize
34275 Modes 1 and 3 are deprecated.  The output is ``source centric''
34276 which hasn't proved useful in practice.
34277 @xref{Machine Code}, for a discussion of the difference between
34278 @code{/m} and @code{/s} output of the @code{disassemble} command.
34279 @end table
34281 @subsubheading Result
34283 The result of the @code{-data-disassemble} command will be a list named
34284 @samp{asm_insns}, the contents of this list depend on the @var{mode}
34285 used with the @code{-data-disassemble} command.
34287 For modes 0 and 2 the @samp{asm_insns} list contains tuples with the
34288 following fields:
34290 @table @code
34291 @item address
34292 The address at which this instruction was disassembled.
34294 @item func-name
34295 The name of the function this instruction is within.
34297 @item offset
34298 The decimal offset in bytes from the start of @samp{func-name}.
34300 @item inst
34301 The text disassembly for this @samp{address}.
34303 @item opcodes
34304 This field is only present for modes 2, 3 and 5.  This contains the raw opcode
34305 bytes for the @samp{inst} field.
34307 @end table
34309 For modes 1, 3, 4 and 5 the @samp{asm_insns} list contains tuples named
34310 @samp{src_and_asm_line}, each of which has the following fields:
34312 @table @code
34313 @item line
34314 The line number within @samp{file}.
34316 @item file
34317 The file name from the compilation unit.  This might be an absolute
34318 file name or a relative file name depending on the compile command
34319 used.
34321 @item fullname
34322 Absolute file name of @samp{file}.  It is converted to a canonical form
34323 using the source file search path
34324 (@pxref{Source Path, ,Specifying Source Directories})
34325 and after resolving all the symbolic links.
34327 If the source file is not found this field will contain the path as
34328 present in the debug information.
34330 @item line_asm_insn
34331 This is a list of tuples containing the disassembly for @samp{line} in
34332 @samp{file}.  The fields of each tuple are the same as for
34333 @code{-data-disassemble} in @var{mode} 0 and 2, so @samp{address},
34334 @samp{func-name}, @samp{offset}, @samp{inst}, and optionally
34335 @samp{opcodes}.
34337 @end table
34339 Note that whatever included in the @samp{inst} field, is not
34340 manipulated directly by @sc{gdb/mi}, i.e., it is not possible to
34341 adjust its format.
34343 @subsubheading @value{GDBN} Command
34345 The corresponding @value{GDBN} command is @samp{disassemble}.
34347 @subsubheading Example
34349 Disassemble from the current value of @code{$pc} to @code{$pc + 20}:
34351 @smallexample
34352 (gdb)
34353 -data-disassemble -s $pc -e "$pc + 20" -- 0
34354 ^done,
34355 asm_insns=[
34356 @{address="0x000107c0",func-name="main",offset="4",
34357 inst="mov  2, %o0"@},
34358 @{address="0x000107c4",func-name="main",offset="8",
34359 inst="sethi  %hi(0x11800), %o2"@},
34360 @{address="0x000107c8",func-name="main",offset="12",
34361 inst="or  %o2, 0x140, %o1\t! 0x11940 <_lib_version+8>"@},
34362 @{address="0x000107cc",func-name="main",offset="16",
34363 inst="sethi  %hi(0x11800), %o2"@},
34364 @{address="0x000107d0",func-name="main",offset="20",
34365 inst="or  %o2, 0x168, %o4\t! 0x11968 <_lib_version+48>"@}]
34366 (gdb)
34367 @end smallexample
34369 Disassemble the whole @code{main} function.  Line 32 is part of
34370 @code{main}.
34372 @smallexample
34373 -data-disassemble -f basics.c -l 32 -- 0
34374 ^done,asm_insns=[
34375 @{address="0x000107bc",func-name="main",offset="0",
34376 inst="save  %sp, -112, %sp"@},
34377 @{address="0x000107c0",func-name="main",offset="4",
34378 inst="mov   2, %o0"@},
34379 @{address="0x000107c4",func-name="main",offset="8",
34380 inst="sethi %hi(0x11800), %o2"@},
34381 [@dots{}]
34382 @{address="0x0001081c",func-name="main",offset="96",inst="ret "@},
34383 @{address="0x00010820",func-name="main",offset="100",inst="restore "@}]
34384 (gdb)
34385 @end smallexample
34387 Disassemble 3 instructions from the start of @code{main}:
34389 @smallexample
34390 (gdb)
34391 -data-disassemble -f basics.c -l 32 -n 3 -- 0
34392 ^done,asm_insns=[
34393 @{address="0x000107bc",func-name="main",offset="0",
34394 inst="save  %sp, -112, %sp"@},
34395 @{address="0x000107c0",func-name="main",offset="4",
34396 inst="mov  2, %o0"@},
34397 @{address="0x000107c4",func-name="main",offset="8",
34398 inst="sethi  %hi(0x11800), %o2"@}]
34399 (gdb)
34400 @end smallexample
34402 Disassemble 3 instructions from the start of @code{main} in mixed mode:
34404 @smallexample
34405 (gdb)
34406 -data-disassemble -f basics.c -l 32 -n 3 -- 1
34407 ^done,asm_insns=[
34408 src_and_asm_line=@{line="31",
34409 file="../../../src/gdb/testsuite/gdb.mi/basics.c",
34410 fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
34411 line_asm_insn=[@{address="0x000107bc",
34412 func-name="main",offset="0",inst="save  %sp, -112, %sp"@}]@},
34413 src_and_asm_line=@{line="32",
34414 file="../../../src/gdb/testsuite/gdb.mi/basics.c",
34415 fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
34416 line_asm_insn=[@{address="0x000107c0",
34417 func-name="main",offset="4",inst="mov  2, %o0"@},
34418 @{address="0x000107c4",func-name="main",offset="8",
34419 inst="sethi  %hi(0x11800), %o2"@}]@}]
34420 (gdb)
34421 @end smallexample
34424 @subheading The @code{-data-evaluate-expression} Command
34425 @findex -data-evaluate-expression
34427 @subsubheading Synopsis
34429 @smallexample
34430  -data-evaluate-expression @var{expr}
34431 @end smallexample
34433 Evaluate @var{expr} as an expression.  The expression could contain an
34434 inferior function call.  The function call will execute synchronously.
34435 If the expression contains spaces, it must be enclosed in double quotes.
34437 @subsubheading @value{GDBN} Command
34439 The corresponding @value{GDBN} commands are @samp{print}, @samp{output}, and
34440 @samp{call}.  In @code{gdbtk} only, there's a corresponding
34441 @samp{gdb_eval} command.
34443 @subsubheading Example
34445 In the following example, the numbers that precede the commands are the
34446 @dfn{tokens} described in @ref{GDB/MI Command Syntax, ,@sc{gdb/mi}
34447 Command Syntax}.  Notice how @sc{gdb/mi} returns the same tokens in its
34448 output.
34450 @smallexample
34451 211-data-evaluate-expression A
34452 211^done,value="1"
34453 (gdb)
34454 311-data-evaluate-expression &A
34455 311^done,value="0xefffeb7c"
34456 (gdb)
34457 411-data-evaluate-expression A+3
34458 411^done,value="4"
34459 (gdb)
34460 511-data-evaluate-expression "A + 3"
34461 511^done,value="4"
34462 (gdb)
34463 @end smallexample
34466 @subheading The @code{-data-list-changed-registers} Command
34467 @findex -data-list-changed-registers
34469 @subsubheading Synopsis
34471 @smallexample
34472  -data-list-changed-registers
34473 @end smallexample
34475 Display a list of the registers that have changed.
34477 @subsubheading @value{GDBN} Command
34479 @value{GDBN} doesn't have a direct analog for this command; @code{gdbtk}
34480 has the corresponding command @samp{gdb_changed_register_list}.
34482 @subsubheading Example
34484 On a PPC MBX board:
34486 @smallexample
34487 (gdb)
34488 -exec-continue
34489 ^running
34491 (gdb)
34492 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",frame=@{
34493 func="main",args=[],file="try.c",fullname="/home/foo/bar/try.c",
34494 line="5",arch="powerpc"@}
34495 (gdb)
34496 -data-list-changed-registers
34497 ^done,changed-registers=["0","1","2","4","5","6","7","8","9",
34498 "10","11","13","14","15","16","17","18","19","20","21","22","23",
34499 "24","25","26","27","28","30","31","64","65","66","67","69"]
34500 (gdb)
34501 @end smallexample
34504 @subheading The @code{-data-list-register-names} Command
34505 @findex -data-list-register-names
34507 @subsubheading Synopsis
34509 @smallexample
34510  -data-list-register-names [ ( @var{regno} )+ ]
34511 @end smallexample
34513 Show a list of register names for the current target.  If no arguments
34514 are given, it shows a list of the names of all the registers.  If
34515 integer numbers are given as arguments, it will print a list of the
34516 names of the registers corresponding to the arguments.  To ensure
34517 consistency between a register name and its number, the output list may
34518 include empty register names.
34520 @subsubheading @value{GDBN} Command
34522 @value{GDBN} does not have a command which corresponds to
34523 @samp{-data-list-register-names}.  In @code{gdbtk} there is a
34524 corresponding command @samp{gdb_regnames}.
34526 @subsubheading Example
34528 For the PPC MBX board:
34529 @smallexample
34530 (gdb)
34531 -data-list-register-names
34532 ^done,register-names=["r0","r1","r2","r3","r4","r5","r6","r7",
34533 "r8","r9","r10","r11","r12","r13","r14","r15","r16","r17","r18",
34534 "r19","r20","r21","r22","r23","r24","r25","r26","r27","r28","r29",
34535 "r30","r31","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9",
34536 "f10","f11","f12","f13","f14","f15","f16","f17","f18","f19","f20",
34537 "f21","f22","f23","f24","f25","f26","f27","f28","f29","f30","f31",
34538 "", "pc","ps","cr","lr","ctr","xer"]
34539 (gdb)
34540 -data-list-register-names 1 2 3
34541 ^done,register-names=["r1","r2","r3"]
34542 (gdb)
34543 @end smallexample
34545 @subheading The @code{-data-list-register-values} Command
34546 @findex -data-list-register-values
34548 @subsubheading Synopsis
34550 @smallexample
34551  -data-list-register-values
34552     [ @code{--skip-unavailable} ] @var{fmt} [ ( @var{regno} )*]
34553 @end smallexample
34555 Display the registers' contents.  The format according to which the
34556 registers' contents are to be returned is given by @var{fmt}, followed
34557 by an optional list of numbers specifying the registers to display.  A
34558 missing list of numbers indicates that the contents of all the
34559 registers must be returned.  The @code{--skip-unavailable} option
34560 indicates that only the available registers are to be returned.
34562 Allowed formats for @var{fmt} are:
34564 @table @code
34565 @item x
34566 Hexadecimal
34567 @item o
34568 Octal
34569 @item t
34570 Binary
34571 @item d
34572 Decimal
34573 @item r
34575 @item N
34576 Natural
34577 @end table
34579 @subsubheading @value{GDBN} Command
34581 The corresponding @value{GDBN} commands are @samp{info reg}, @samp{info
34582 all-reg}, and (in @code{gdbtk}) @samp{gdb_fetch_registers}.
34584 @subsubheading Example
34586 For a PPC MBX board (note: line breaks are for readability only, they
34587 don't appear in the actual output):
34589 @smallexample
34590 (gdb)
34591 -data-list-register-values r 64 65
34592 ^done,register-values=[@{number="64",value="0xfe00a300"@},
34593 @{number="65",value="0x00029002"@}]
34594 (gdb)
34595 -data-list-register-values x
34596 ^done,register-values=[@{number="0",value="0xfe0043c8"@},
34597 @{number="1",value="0x3fff88"@},@{number="2",value="0xfffffffe"@},
34598 @{number="3",value="0x0"@},@{number="4",value="0xa"@},
34599 @{number="5",value="0x3fff68"@},@{number="6",value="0x3fff58"@},
34600 @{number="7",value="0xfe011e98"@},@{number="8",value="0x2"@},
34601 @{number="9",value="0xfa202820"@},@{number="10",value="0xfa202808"@},
34602 @{number="11",value="0x1"@},@{number="12",value="0x0"@},
34603 @{number="13",value="0x4544"@},@{number="14",value="0xffdfffff"@},
34604 @{number="15",value="0xffffffff"@},@{number="16",value="0xfffffeff"@},
34605 @{number="17",value="0xefffffed"@},@{number="18",value="0xfffffffe"@},
34606 @{number="19",value="0xffffffff"@},@{number="20",value="0xffffffff"@},
34607 @{number="21",value="0xffffffff"@},@{number="22",value="0xfffffff7"@},
34608 @{number="23",value="0xffffffff"@},@{number="24",value="0xffffffff"@},
34609 @{number="25",value="0xffffffff"@},@{number="26",value="0xfffffffb"@},
34610 @{number="27",value="0xffffffff"@},@{number="28",value="0xf7bfffff"@},
34611 @{number="29",value="0x0"@},@{number="30",value="0xfe010000"@},
34612 @{number="31",value="0x0"@},@{number="32",value="0x0"@},
34613 @{number="33",value="0x0"@},@{number="34",value="0x0"@},
34614 @{number="35",value="0x0"@},@{number="36",value="0x0"@},
34615 @{number="37",value="0x0"@},@{number="38",value="0x0"@},
34616 @{number="39",value="0x0"@},@{number="40",value="0x0"@},
34617 @{number="41",value="0x0"@},@{number="42",value="0x0"@},
34618 @{number="43",value="0x0"@},@{number="44",value="0x0"@},
34619 @{number="45",value="0x0"@},@{number="46",value="0x0"@},
34620 @{number="47",value="0x0"@},@{number="48",value="0x0"@},
34621 @{number="49",value="0x0"@},@{number="50",value="0x0"@},
34622 @{number="51",value="0x0"@},@{number="52",value="0x0"@},
34623 @{number="53",value="0x0"@},@{number="54",value="0x0"@},
34624 @{number="55",value="0x0"@},@{number="56",value="0x0"@},
34625 @{number="57",value="0x0"@},@{number="58",value="0x0"@},
34626 @{number="59",value="0x0"@},@{number="60",value="0x0"@},
34627 @{number="61",value="0x0"@},@{number="62",value="0x0"@},
34628 @{number="63",value="0x0"@},@{number="64",value="0xfe00a300"@},
34629 @{number="65",value="0x29002"@},@{number="66",value="0x202f04b5"@},
34630 @{number="67",value="0xfe0043b0"@},@{number="68",value="0xfe00b3e4"@},
34631 @{number="69",value="0x20002b03"@}]
34632 (gdb)
34633 @end smallexample
34636 @subheading The @code{-data-read-memory} Command
34637 @findex -data-read-memory
34639 This command is deprecated, use @code{-data-read-memory-bytes} instead.
34641 @subsubheading Synopsis
34643 @smallexample
34644  -data-read-memory [ -o @var{byte-offset} ]
34645    @var{address} @var{word-format} @var{word-size}
34646    @var{nr-rows} @var{nr-cols} [ @var{aschar} ]
34647 @end smallexample
34649 @noindent
34650 where:
34652 @table @samp
34653 @item @var{address}
34654 An expression specifying the address of the first memory word to be
34655 read.  Complex expressions containing embedded white space should be
34656 quoted using the C convention.
34658 @item @var{word-format}
34659 The format to be used to print the memory words.  The notation is the
34660 same as for @value{GDBN}'s @code{print} command (@pxref{Output Formats,
34661 ,Output Formats}).
34663 @item @var{word-size}
34664 The size of each memory word in bytes.
34666 @item @var{nr-rows}
34667 The number of rows in the output table.
34669 @item @var{nr-cols}
34670 The number of columns in the output table.
34672 @item @var{aschar}
34673 If present, indicates that each row should include an @sc{ascii} dump.  The
34674 value of @var{aschar} is used as a padding character when a byte is not a
34675 member of the printable @sc{ascii} character set (printable @sc{ascii}
34676 characters are those whose code is between 32 and 126, inclusively).
34678 @item @var{byte-offset}
34679 An offset to add to the @var{address} before fetching memory.
34680 @end table
34682 This command displays memory contents as a table of @var{nr-rows} by
34683 @var{nr-cols} words, each word being @var{word-size} bytes.  In total,
34684 @code{@var{nr-rows} * @var{nr-cols} * @var{word-size}} bytes are read
34685 (returned as @samp{total-bytes}).  Should less than the requested number
34686 of bytes be returned by the target, the missing words are identified
34687 using @samp{N/A}.  The number of bytes read from the target is returned
34688 in @samp{nr-bytes} and the starting address used to read memory in
34689 @samp{addr}.
34691 The address of the next/previous row or page is available in
34692 @samp{next-row} and @samp{prev-row}, @samp{next-page} and
34693 @samp{prev-page}.
34695 @subsubheading @value{GDBN} Command
34697 The corresponding @value{GDBN} command is @samp{x}.  @code{gdbtk} has
34698 @samp{gdb_get_mem} memory read command.
34700 @subsubheading Example
34702 Read six bytes of memory starting at @code{bytes+6} but then offset by
34703 @code{-6} bytes.  Format as three rows of two columns.  One byte per
34704 word.  Display each word in hex.
34706 @smallexample
34707 (gdb)
34708 9-data-read-memory -o -6 -- bytes+6 x 1 3 2
34709 9^done,addr="0x00001390",nr-bytes="6",total-bytes="6",
34710 next-row="0x00001396",prev-row="0x0000138e",next-page="0x00001396",
34711 prev-page="0x0000138a",memory=[
34712 @{addr="0x00001390",data=["0x00","0x01"]@},
34713 @{addr="0x00001392",data=["0x02","0x03"]@},
34714 @{addr="0x00001394",data=["0x04","0x05"]@}]
34715 (gdb)
34716 @end smallexample
34718 Read two bytes of memory starting at address @code{shorts + 64} and
34719 display as a single word formatted in decimal.
34721 @smallexample
34722 (gdb)
34723 5-data-read-memory shorts+64 d 2 1 1
34724 5^done,addr="0x00001510",nr-bytes="2",total-bytes="2",
34725 next-row="0x00001512",prev-row="0x0000150e",
34726 next-page="0x00001512",prev-page="0x0000150e",memory=[
34727 @{addr="0x00001510",data=["128"]@}]
34728 (gdb)
34729 @end smallexample
34731 Read thirty two bytes of memory starting at @code{bytes+16} and format
34732 as eight rows of four columns.  Include a string encoding with @samp{x}
34733 used as the non-printable character.
34735 @smallexample
34736 (gdb)
34737 4-data-read-memory bytes+16 x 1 8 4 x
34738 4^done,addr="0x000013a0",nr-bytes="32",total-bytes="32",
34739 next-row="0x000013c0",prev-row="0x0000139c",
34740 next-page="0x000013c0",prev-page="0x00001380",memory=[
34741 @{addr="0x000013a0",data=["0x10","0x11","0x12","0x13"],ascii="xxxx"@},
34742 @{addr="0x000013a4",data=["0x14","0x15","0x16","0x17"],ascii="xxxx"@},
34743 @{addr="0x000013a8",data=["0x18","0x19","0x1a","0x1b"],ascii="xxxx"@},
34744 @{addr="0x000013ac",data=["0x1c","0x1d","0x1e","0x1f"],ascii="xxxx"@},
34745 @{addr="0x000013b0",data=["0x20","0x21","0x22","0x23"],ascii=" !\"#"@},
34746 @{addr="0x000013b4",data=["0x24","0x25","0x26","0x27"],ascii="$%&'"@},
34747 @{addr="0x000013b8",data=["0x28","0x29","0x2a","0x2b"],ascii="()*+"@},
34748 @{addr="0x000013bc",data=["0x2c","0x2d","0x2e","0x2f"],ascii=",-./"@}]
34749 (gdb)
34750 @end smallexample
34752 @subheading The @code{-data-read-memory-bytes} Command
34753 @findex -data-read-memory-bytes
34755 @subsubheading Synopsis
34757 @smallexample
34758  -data-read-memory-bytes [ -o @var{offset} ]
34759    @var{address} @var{count}
34760 @end smallexample
34762 @noindent
34763 where:
34765 @table @samp
34766 @item @var{address}
34767 An expression specifying the address of the first addressable memory unit
34768 to be read.  Complex expressions containing embedded white space should be
34769 quoted using the C convention.
34771 @item @var{count}
34772 The number of addressable memory units to read.  This should be an integer
34773 literal.
34775 @item @var{offset}
34776 The offset relative to @var{address} at which to start reading.  This
34777 should be an integer literal.  This option is provided so that a frontend
34778 is not required to first evaluate address and then perform address
34779 arithmetics itself.
34781 @end table
34783 This command attempts to read all accessible memory regions in the
34784 specified range.  First, all regions marked as unreadable in the memory
34785 map (if one is defined) will be skipped.  @xref{Memory Region
34786 Attributes}.  Second, @value{GDBN} will attempt to read the remaining
34787 regions.  For each one, if reading full region results in an errors,
34788 @value{GDBN} will try to read a subset of the region.
34790 In general, every single memory unit in the region may be readable or not,
34791 and the only way to read every readable unit is to try a read at
34792 every address, which is not practical.   Therefore, @value{GDBN} will
34793 attempt to read all accessible memory units at either beginning or the end
34794 of the region, using a binary division scheme.  This heuristic works
34795 well for reading across a memory map boundary.  Note that if a region
34796 has a readable range that is neither at the beginning or the end,
34797 @value{GDBN} will not read it.
34799 The result record (@pxref{GDB/MI Result Records}) that is output of
34800 the command includes a field named @samp{memory} whose content is a
34801 list of tuples.  Each tuple represent a successfully read memory block
34802 and has the following fields:
34804 @table @code
34805 @item begin
34806 The start address of the memory block, as hexadecimal literal.
34808 @item end
34809 The end address of the memory block, as hexadecimal literal.
34811 @item offset
34812 The offset of the memory block, as hexadecimal literal, relative to
34813 the start address passed to @code{-data-read-memory-bytes}.
34815 @item contents
34816 The contents of the memory block, in hex.
34818 @end table
34822 @subsubheading @value{GDBN} Command
34824 The corresponding @value{GDBN} command is @samp{x}.
34826 @subsubheading Example
34828 @smallexample
34829 (gdb)
34830 -data-read-memory-bytes &a 10
34831 ^done,memory=[@{begin="0xbffff154",offset="0x00000000",
34832               end="0xbffff15e",
34833               contents="01000000020000000300"@}]
34834 (gdb)
34835 @end smallexample
34838 @subheading The @code{-data-write-memory-bytes} Command
34839 @findex -data-write-memory-bytes
34841 @subsubheading Synopsis
34843 @smallexample
34844  -data-write-memory-bytes @var{address} @var{contents}
34845  -data-write-memory-bytes @var{address} @var{contents} @r{[}@var{count}@r{]}
34846 @end smallexample
34848 @noindent
34849 where:
34851 @table @samp
34852 @item @var{address}
34853 An expression specifying the address of the first addressable memory unit
34854 to be written.  Complex expressions containing embedded white space should
34855 be quoted using the C convention.
34857 @item @var{contents}
34858 The hex-encoded data to write.  It is an error if @var{contents} does
34859 not represent an integral number of addressable memory units.
34861 @item @var{count}
34862 Optional argument indicating the number of addressable memory units to be
34863 written.  If @var{count} is greater than @var{contents}' length,
34864 @value{GDBN} will repeatedly write @var{contents} until it fills
34865 @var{count} memory units.
34867 @end table
34869 @subsubheading @value{GDBN} Command
34871 There's no corresponding @value{GDBN} command.
34873 @subsubheading Example
34875 @smallexample
34876 (gdb)
34877 -data-write-memory-bytes &a "aabbccdd"
34878 ^done
34879 (gdb)
34880 @end smallexample
34882 @smallexample
34883 (gdb)
34884 -data-write-memory-bytes &a "aabbccdd" 16e
34885 ^done
34886 (gdb)
34887 @end smallexample
34889 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34890 @node GDB/MI Tracepoint Commands
34891 @section @sc{gdb/mi} Tracepoint Commands
34893 The commands defined in this section implement MI support for
34894 tracepoints.  For detailed introduction, see @ref{Tracepoints}.
34896 @subheading The @code{-trace-find} Command
34897 @findex -trace-find
34899 @subsubheading Synopsis
34901 @smallexample
34902  -trace-find @var{mode} [@var{parameters}@dots{}]
34903 @end smallexample
34905 Find a trace frame using criteria defined by @var{mode} and
34906 @var{parameters}.  The following table lists permissible
34907 modes and their parameters.  For details of operation, see @ref{tfind}.
34909 @table @samp
34911 @item none
34912 No parameters are required.  Stops examining trace frames.
34914 @item frame-number
34915 An integer is required as parameter.  Selects tracepoint frame with
34916 that index.
34918 @item tracepoint-number
34919 An integer is required as parameter.  Finds next
34920 trace frame that corresponds to tracepoint with the specified number.
34922 @item pc
34923 An address is required as parameter.  Finds
34924 next trace frame that corresponds to any tracepoint at the specified
34925 address.
34927 @item pc-inside-range
34928 Two addresses are required as parameters.  Finds next trace
34929 frame that corresponds to a tracepoint at an address inside the
34930 specified range.  Both bounds are considered to be inside the range.
34932 @item pc-outside-range
34933 Two addresses are required as parameters.  Finds
34934 next trace frame that corresponds to a tracepoint at an address outside
34935 the specified range.  Both bounds are considered to be inside the range.
34937 @item line
34938 Line specification is required as parameter.  @xref{Specify Location}.
34939 Finds next trace frame that corresponds to a tracepoint at
34940 the specified location.
34942 @end table
34944 If @samp{none} was passed as @var{mode}, the response does not
34945 have fields.  Otherwise, the response may have the following fields:
34947 @table @samp
34948 @item found
34949 This field has either @samp{0} or @samp{1} as the value, depending
34950 on whether a matching tracepoint was found.
34952 @item traceframe
34953 The index of the found traceframe.  This field is present iff
34954 the @samp{found} field has value of @samp{1}.
34956 @item tracepoint
34957 The index of the found tracepoint.  This field is present iff
34958 the @samp{found} field has value of @samp{1}.
34960 @item frame
34961 The information about the frame corresponding to the found trace
34962 frame.  This field is present only if a trace frame was found.
34963 @xref{GDB/MI Frame Information}, for description of this field.
34965 @end table
34967 @subsubheading @value{GDBN} Command
34969 The corresponding @value{GDBN} command is @samp{tfind}.
34971 @subheading -trace-define-variable
34972 @findex -trace-define-variable
34974 @subsubheading Synopsis
34976 @smallexample
34977  -trace-define-variable @var{name} [ @var{value} ]
34978 @end smallexample
34980 Create trace variable @var{name} if it does not exist.  If
34981 @var{value} is specified, sets the initial value of the specified
34982 trace variable to that value.  Note that the @var{name} should start
34983 with the @samp{$} character.
34985 @subsubheading @value{GDBN} Command
34987 The corresponding @value{GDBN} command is @samp{tvariable}.
34989 @subheading The @code{-trace-frame-collected} Command
34990 @findex -trace-frame-collected
34992 @subsubheading Synopsis
34994 @smallexample
34995  -trace-frame-collected
34996     [--var-print-values @var{var_pval}]
34997     [--comp-print-values @var{comp_pval}]
34998     [--registers-format @var{regformat}]
34999     [--memory-contents]
35000 @end smallexample
35002 This command returns the set of collected objects, register names,
35003 trace state variable names, memory ranges and computed expressions
35004 that have been collected at a particular trace frame.  The optional
35005 parameters to the command affect the output format in different ways.
35006 See the output description table below for more details.
35008 The reported names can be used in the normal manner to create
35009 varobjs and inspect the objects themselves.  The items returned by
35010 this command are categorized so that it is clear which is a variable,
35011 which is a register, which is a trace state variable, which is a
35012 memory range and which is a computed expression.
35014 For instance, if the actions were
35015 @smallexample
35016 collect myVar, myArray[myIndex], myObj.field, myPtr->field, myCount + 2
35017 collect *(int*)0xaf02bef0@@40
35018 @end smallexample
35020 @noindent
35021 the object collected in its entirety would be @code{myVar}.  The
35022 object @code{myArray} would be partially collected, because only the
35023 element at index @code{myIndex} would be collected.  The remaining
35024 objects would be computed expressions.
35026 An example output would be:
35028 @smallexample
35029 (gdb)
35030 -trace-frame-collected
35031 ^done,
35032   explicit-variables=[@{name="myVar",value="1"@}],
35033   computed-expressions=[@{name="myArray[myIndex]",value="0"@},
35034                         @{name="myObj.field",value="0"@},
35035                         @{name="myPtr->field",value="1"@},
35036                         @{name="myCount + 2",value="3"@},
35037                         @{name="$tvar1 + 1",value="43970027"@}],
35038   registers=[@{number="0",value="0x7fe2c6e79ec8"@},
35039              @{number="1",value="0x0"@},
35040              @{number="2",value="0x4"@},
35041              ...
35042              @{number="125",value="0x0"@}],
35043   tvars=[@{name="$tvar1",current="43970026"@}],
35044   memory=[@{address="0x0000000000602264",length="4"@},
35045           @{address="0x0000000000615bc0",length="4"@}]
35046 (gdb)
35047 @end smallexample
35049 Where:
35051 @table @code
35052 @item explicit-variables
35053 The set of objects that have been collected in their entirety (as
35054 opposed to collecting just a few elements of an array or a few struct
35055 members).  For each object, its name and value are printed.
35056 The @code{--var-print-values} option affects how or whether the value
35057 field is output.  If @var{var_pval} is 0, then print only the names;
35058 if it is 1, print also their values; and if it is 2, print the name,
35059 type and value for simple data types, and the name and type for
35060 arrays, structures and unions.
35062 @item computed-expressions
35063 The set of computed expressions that have been collected at the
35064 current trace frame.  The @code{--comp-print-values} option affects
35065 this set like the @code{--var-print-values} option affects the
35066 @code{explicit-variables} set.  See above.
35068 @item registers
35069 The registers that have been collected at the current trace frame.
35070 For each register collected, the name and current value are returned.
35071 The value is formatted according to the @code{--registers-format}
35072 option.  See the @command{-data-list-register-values} command for a
35073 list of the allowed formats.  The default is @samp{x}.
35075 @item tvars
35076 The trace state variables that have been collected at the current
35077 trace frame.  For each trace state variable collected, the name and
35078 current value are returned.
35080 @item memory
35081 The set of memory ranges that have been collected at the current trace
35082 frame.  Its content is a list of tuples.  Each tuple represents a
35083 collected memory range and has the following fields:
35085 @table @code
35086 @item address
35087 The start address of the memory range, as hexadecimal literal.
35089 @item length
35090 The length of the memory range, as decimal literal.
35092 @item contents
35093 The contents of the memory block, in hex.  This field is only present
35094 if the @code{--memory-contents} option is specified.
35096 @end table
35098 @end table
35100 @subsubheading @value{GDBN} Command
35102 There is no corresponding @value{GDBN} command.
35104 @subsubheading Example
35106 @subheading -trace-list-variables
35107 @findex -trace-list-variables
35109 @subsubheading Synopsis
35111 @smallexample
35112  -trace-list-variables
35113 @end smallexample
35115 Return a table of all defined trace variables.  Each element of the
35116 table has the following fields:
35118 @table @samp
35119 @item name
35120 The name of the trace variable.  This field is always present.
35122 @item initial
35123 The initial value.  This is a 64-bit signed integer.  This
35124 field is always present.
35126 @item current
35127 The value the trace variable has at the moment.  This is a 64-bit
35128 signed integer.  This field is absent iff current value is
35129 not defined, for example if the trace was never run, or is
35130 presently running.
35132 @end table
35134 @subsubheading @value{GDBN} Command
35136 The corresponding @value{GDBN} command is @samp{tvariables}.
35138 @subsubheading Example
35140 @smallexample
35141 (gdb)
35142 -trace-list-variables
35143 ^done,trace-variables=@{nr_rows="1",nr_cols="3",
35144 hdr=[@{width="15",alignment="-1",col_name="name",colhdr="Name"@},
35145      @{width="11",alignment="-1",col_name="initial",colhdr="Initial"@},
35146      @{width="11",alignment="-1",col_name="current",colhdr="Current"@}],
35147 body=[variable=@{name="$trace_timestamp",initial="0"@}
35148       variable=@{name="$foo",initial="10",current="15"@}]@}
35149 (gdb)
35150 @end smallexample
35152 @subheading -trace-save
35153 @findex -trace-save
35155 @subsubheading Synopsis
35157 @smallexample
35158  -trace-save [ -r ] [ -ctf ] @var{filename}
35159 @end smallexample
35161 Saves the collected trace data to @var{filename}.  Without the
35162 @samp{-r} option, the data is downloaded from the target and saved
35163 in a local file.  With the @samp{-r} option the target is asked
35164 to perform the save.
35166 By default, this command will save the trace in the tfile format.  You can
35167 supply the optional @samp{-ctf} argument to save it the CTF format. See
35168 @ref{Trace Files} for more information about CTF.
35170 @subsubheading @value{GDBN} Command
35172 The corresponding @value{GDBN} command is @samp{tsave}.
35175 @subheading -trace-start
35176 @findex -trace-start
35178 @subsubheading Synopsis
35180 @smallexample
35181  -trace-start
35182 @end smallexample
35184 Starts a tracing experiment.  The result of this command does not
35185 have any fields.
35187 @subsubheading @value{GDBN} Command
35189 The corresponding @value{GDBN} command is @samp{tstart}.
35191 @subheading -trace-status
35192 @findex -trace-status
35194 @subsubheading Synopsis
35196 @smallexample
35197  -trace-status
35198 @end smallexample
35200 Obtains the status of a tracing experiment.  The result may include
35201 the following fields:
35203 @table @samp
35205 @item supported
35206 May have a value of either @samp{0}, when no tracing operations are
35207 supported, @samp{1}, when all tracing operations are supported, or
35208 @samp{file} when examining trace file.  In the latter case, examining
35209 of trace frame is possible but new tracing experiement cannot be
35210 started.  This field is always present.
35212 @item running
35213 May have a value of either @samp{0} or @samp{1} depending on whether
35214 tracing experiement is in progress on target.  This field is present
35215 if @samp{supported} field is not @samp{0}.
35217 @item stop-reason
35218 Report the reason why the tracing was stopped last time.  This field
35219 may be absent iff tracing was never stopped on target yet.  The
35220 value of @samp{request} means the tracing was stopped as result of
35221 the @code{-trace-stop} command.  The value of @samp{overflow} means
35222 the tracing buffer is full.  The value of @samp{disconnection} means
35223 tracing was automatically stopped when @value{GDBN} has disconnected.
35224 The value of @samp{passcount} means tracing was stopped when a
35225 tracepoint was passed a maximal number of times for that tracepoint.
35226 This field is present if @samp{supported} field is not @samp{0}.
35228 @item stopping-tracepoint
35229 The number of tracepoint whose passcount as exceeded.  This field is
35230 present iff the @samp{stop-reason} field has the value of
35231 @samp{passcount}.
35233 @item frames
35234 @itemx frames-created
35235 The @samp{frames} field is a count of the total number of trace frames
35236 in the trace buffer, while @samp{frames-created} is the total created
35237 during the run, including ones that were discarded, such as when a
35238 circular trace buffer filled up.  Both fields are optional.
35240 @item buffer-size
35241 @itemx buffer-free
35242 These fields tell the current size of the tracing buffer and the
35243 remaining space.  These fields are optional.
35245 @item circular
35246 The value of the circular trace buffer flag.  @code{1} means that the
35247 trace buffer is circular and old trace frames will be discarded if
35248 necessary to make room, @code{0} means that the trace buffer is linear
35249 and may fill up.
35251 @item disconnected
35252 The value of the disconnected tracing flag.  @code{1} means that
35253 tracing will continue after @value{GDBN} disconnects, @code{0} means
35254 that the trace run will stop.
35256 @item trace-file
35257 The filename of the trace file being examined.  This field is
35258 optional, and only present when examining a trace file.
35260 @end table
35262 @subsubheading @value{GDBN} Command
35264 The corresponding @value{GDBN} command is @samp{tstatus}.
35266 @subheading -trace-stop
35267 @findex -trace-stop
35269 @subsubheading Synopsis
35271 @smallexample
35272  -trace-stop
35273 @end smallexample
35275 Stops a tracing experiment.  The result of this command has the same
35276 fields as @code{-trace-status}, except that the @samp{supported} and
35277 @samp{running} fields are not output.
35279 @subsubheading @value{GDBN} Command
35281 The corresponding @value{GDBN} command is @samp{tstop}.
35284 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35285 @node GDB/MI Symbol Query
35286 @section @sc{gdb/mi} Symbol Query Commands
35289 @ignore
35290 @subheading The @code{-symbol-info-address} Command
35291 @findex -symbol-info-address
35293 @subsubheading Synopsis
35295 @smallexample
35296  -symbol-info-address @var{symbol}
35297 @end smallexample
35299 Describe where @var{symbol} is stored.
35301 @subsubheading @value{GDBN} Command
35303 The corresponding @value{GDBN} command is @samp{info address}.
35305 @subsubheading Example
35306 N.A.
35309 @subheading The @code{-symbol-info-file} Command
35310 @findex -symbol-info-file
35312 @subsubheading Synopsis
35314 @smallexample
35315  -symbol-info-file
35316 @end smallexample
35318 Show the file for the symbol.
35320 @subsubheading @value{GDBN} Command
35322 There's no equivalent @value{GDBN} command.  @code{gdbtk} has
35323 @samp{gdb_find_file}.
35325 @subsubheading Example
35326 N.A.
35327 @end ignore
35329 @subheading The @code{-symbol-info-functions} Command
35330 @findex -symbol-info-functions
35331 @anchor{-symbol-info-functions}
35333 @subsubheading Synopsis
35335 @smallexample
35336  -symbol-info-functions [--include-nondebug]
35337                         [--type @var{type_regexp}]
35338                         [--name @var{name_regexp}]
35339                         [--max-results @var{limit}]
35340 @end smallexample
35342 @noindent
35343 Return a list containing the names and types for all global functions
35344 taken from the debug information.  The functions are grouped by source
35345 file, and shown with the line number on which each function is
35346 defined.
35348 The @code{--include-nondebug} option causes the output to include
35349 code symbols from the symbol table.
35351 The options @code{--type} and @code{--name} allow the symbols returned
35352 to be filtered based on either the name of the function, or the type
35353 signature of the function.
35355 The option @code{--max-results} restricts the command to return no
35356 more than @var{limit} results.  If exactly @var{limit} results are
35357 returned then there might be additional results available if a higher
35358 limit is used.
35360 @subsubheading @value{GDBN} Command
35362 The corresponding @value{GDBN} command is @samp{info functions}.
35364 @subsubheading Example
35365 @smallexample
35366 @group
35367 (gdb)
35368 -symbol-info-functions
35369 ^done,symbols=
35370   @{debug=
35371     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35372       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35373       symbols=[@{line="36", name="f4", type="void (int *)",
35374                 description="void f4(int *);"@},
35375                @{line="42", name="main", type="int ()",
35376                 description="int main();"@},
35377                @{line="30", name="f1", type="my_int_t (int, int)",
35378                 description="static my_int_t f1(int, int);"@}]@},
35379      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35380       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35381       symbols=[@{line="33", name="f2", type="float (another_float_t)",
35382                 description="float f2(another_float_t);"@},
35383                @{line="39", name="f3", type="int (another_int_t)",
35384                 description="int f3(another_int_t);"@},
35385                @{line="27", name="f1", type="another_float_t (int)",
35386                 description="static another_float_t f1(int);"@}]@}]@}
35387 @end group
35388 @group
35389 (gdb)
35390 -symbol-info-functions --name f1
35391 ^done,symbols=
35392   @{debug=
35393     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35394       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35395       symbols=[@{line="30", name="f1", type="my_int_t (int, int)",
35396                 description="static my_int_t f1(int, int);"@}]@},
35397      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35398       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35399       symbols=[@{line="27", name="f1", type="another_float_t (int)",
35400                 description="static another_float_t f1(int);"@}]@}]@}
35401 @end group
35402 @group
35403 (gdb)
35404 -symbol-info-functions --type void
35405 ^done,symbols=
35406   @{debug=
35407     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35408       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35409       symbols=[@{line="36", name="f4", type="void (int *)",
35410                 description="void f4(int *);"@}]@}]@}
35411 @end group
35412 @group
35413 (gdb)
35414 -symbol-info-functions --include-nondebug
35415 ^done,symbols=
35416   @{debug=
35417     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35418       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35419       symbols=[@{line="36", name="f4", type="void (int *)",
35420                 description="void f4(int *);"@},
35421                @{line="42", name="main", type="int ()",
35422                 description="int main();"@},
35423                @{line="30", name="f1", type="my_int_t (int, int)",
35424                 description="static my_int_t f1(int, int);"@}]@},
35425      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35426       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35427       symbols=[@{line="33", name="f2", type="float (another_float_t)",
35428                 description="float f2(another_float_t);"@},
35429                @{line="39", name="f3", type="int (another_int_t)",
35430                 description="int f3(another_int_t);"@},
35431                @{line="27", name="f1", type="another_float_t (int)",
35432                 description="static another_float_t f1(int);"@}]@}],
35433    nondebug=
35434     [@{address="0x0000000000400398",name="_init"@},
35435      @{address="0x00000000004003b0",name="_start"@},
35436       ...
35437     ]@}
35438 @end group
35439 @end smallexample
35441 @subheading The @code{-symbol-info-module-functions} Command
35442 @findex -symbol-info-module-functions
35443 @anchor{-symbol-info-module-functions}
35445 @subsubheading Synopsis
35447 @smallexample
35448  -symbol-info-module-functions [--module @var{module_regexp}]
35449                                [--name @var{name_regexp}]
35450                                [--type @var{type_regexp}]
35451 @end smallexample
35453 @noindent
35454 Return a list containing the names of all known functions within all
35455 know Fortran modules.  The functions are grouped by source file and
35456 containing module, and shown with the line number on which each
35457 function is defined.
35459 The option @code{--module} only returns results for modules matching
35460 @var{module_regexp}.  The option @code{--name} only returns functions
35461 whose name matches @var{name_regexp}, and @code{--type} only returns
35462 functions whose type matches @var{type_regexp}.
35464 @subsubheading @value{GDBN} Command
35466 The corresponding @value{GDBN} command is @samp{info module functions}.
35468 @subsubheading Example
35470 @smallexample
35471 @group
35472 (gdb)
35473 -symbol-info-module-functions
35474 ^done,symbols=
35475   [@{module="mod1",
35476     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35477             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35478             symbols=[@{line="21",name="mod1::check_all",type="void (void)",
35479                       description="void mod1::check_all(void);"@}]@}]@},
35480     @{module="mod2",
35481      files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35482              fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35483              symbols=[@{line="30",name="mod2::check_var_i",type="void (void)",
35484                        description="void mod2::check_var_i(void);"@}]@}]@},
35485     @{module="mod3",
35486      files=[@{filename="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35487              fullname="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35488              symbols=[@{line="21",name="mod3::check_all",type="void (void)",
35489                        description="void mod3::check_all(void);"@},
35490                       @{line="27",name="mod3::check_mod2",type="void (void)",
35491                        description="void mod3::check_mod2(void);"@}]@}]@},
35492     @{module="modmany",
35493      files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35494              fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35495              symbols=[@{line="35",name="modmany::check_some",type="void (void)",
35496                        description="void modmany::check_some(void);"@}]@}]@},
35497     @{module="moduse",
35498      files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35499              fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35500              symbols=[@{line="44",name="moduse::check_all",type="void (void)",
35501                        description="void moduse::check_all(void);"@},
35502                       @{line="49",name="moduse::check_var_x",type="void (void)",
35503                        description="void moduse::check_var_x(void);"@}]@}]@}]
35504 @end group
35505 @end smallexample
35507 @subheading The @code{-symbol-info-module-variables} Command
35508 @findex -symbol-info-module-variables
35509 @anchor{-symbol-info-module-variables}
35511 @subsubheading Synopsis
35513 @smallexample
35514  -symbol-info-module-variables [--module @var{module_regexp}]
35515                                [--name @var{name_regexp}]
35516                                [--type @var{type_regexp}]
35517 @end smallexample
35519 @noindent
35520 Return a list containing the names of all known variables within all
35521 know Fortran modules.  The variables are grouped by source file and
35522 containing module, and shown with the line number on which each
35523 variable is defined.
35525 The option @code{--module} only returns results for modules matching
35526 @var{module_regexp}.  The option @code{--name} only returns variables
35527 whose name matches @var{name_regexp}, and @code{--type} only returns
35528 variables whose type matches @var{type_regexp}.
35530 @subsubheading @value{GDBN} Command
35532 The corresponding @value{GDBN} command is @samp{info module variables}.
35534 @subsubheading Example
35536 @smallexample
35537 @group
35538 (gdb)
35539 -symbol-info-module-variables
35540 ^done,symbols=
35541   [@{module="mod1",
35542     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35543             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35544             symbols=[@{line="18",name="mod1::var_const",type="integer(kind=4)",
35545                       description="integer(kind=4) mod1::var_const;"@},
35546                      @{line="17",name="mod1::var_i",type="integer(kind=4)",
35547                       description="integer(kind=4) mod1::var_i;"@}]@}]@},
35548    @{module="mod2",
35549     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35550             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35551             symbols=[@{line="28",name="mod2::var_i",type="integer(kind=4)",
35552                       description="integer(kind=4) mod2::var_i;"@}]@}]@},
35553    @{module="mod3",
35554     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35555             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35556             symbols=[@{line="18",name="mod3::mod1",type="integer(kind=4)",
35557                       description="integer(kind=4) mod3::mod1;"@},
35558                      @{line="17",name="mod3::mod2",type="integer(kind=4)",
35559                       description="integer(kind=4) mod3::mod2;"@},
35560                      @{line="19",name="mod3::var_i",type="integer(kind=4)",
35561                       description="integer(kind=4) mod3::var_i;"@}]@}]@},
35562    @{module="modmany",
35563     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35564             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35565             symbols=[@{line="33",name="modmany::var_a",type="integer(kind=4)",
35566                       description="integer(kind=4) modmany::var_a;"@},
35567                      @{line="33",name="modmany::var_b",type="integer(kind=4)",
35568                       description="integer(kind=4) modmany::var_b;"@},
35569                      @{line="33",name="modmany::var_c",type="integer(kind=4)",
35570                       description="integer(kind=4) modmany::var_c;"@},
35571                      @{line="33",name="modmany::var_i",type="integer(kind=4)",
35572                       description="integer(kind=4) modmany::var_i;"@}]@}]@},
35573    @{module="moduse",
35574     files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35575             fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35576             symbols=[@{line="42",name="moduse::var_x",type="integer(kind=4)",
35577                       description="integer(kind=4) moduse::var_x;"@},
35578                      @{line="42",name="moduse::var_y",type="integer(kind=4)",
35579                       description="integer(kind=4) moduse::var_y;"@}]@}]@}]
35580 @end group
35581 @end smallexample
35583 @subheading The @code{-symbol-info-modules} Command
35584 @findex -symbol-info-modules
35585 @anchor{-symbol-info-modules}
35587 @subsubheading Synopsis
35589 @smallexample
35590  -symbol-info-modules [--name @var{name_regexp}]
35591                       [--max-results @var{limit}]
35593 @end smallexample
35595 @noindent
35596 Return a list containing the names of all known Fortran modules.  The
35597 modules are grouped by source file, and shown with the line number on
35598 which each modules is defined.
35600 The option @code{--name} allows the modules returned to be filtered
35601 based the name of the module.
35603 The option @code{--max-results} restricts the command to return no
35604 more than @var{limit} results.  If exactly @var{limit} results are
35605 returned then there might be additional results available if a higher
35606 limit is used.
35608 @subsubheading @value{GDBN} Command
35610 The corresponding @value{GDBN} command is @samp{info modules}.
35612 @subsubheading Example
35613 @smallexample
35614 @group
35615 (gdb)
35616 -symbol-info-modules
35617 ^done,symbols=
35618   @{debug=
35619     [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35620       fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35621       symbols=[@{line="16",name="mod1"@},
35622                @{line="22",name="mod2"@}]@},
35623      @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35624       fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35625       symbols=[@{line="16",name="mod3"@},
35626                @{line="22",name="modmany"@},
35627                @{line="26",name="moduse"@}]@}]@}
35628 @end group
35629 @group
35630 (gdb)
35631 -symbol-info-modules --name mod[123]
35632 ^done,symbols=
35633   @{debug=
35634     [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35635       fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35636       symbols=[@{line="16",name="mod1"@},
35637                @{line="22",name="mod2"@}]@},
35638      @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35639       fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35640       symbols=[@{line="16",name="mod3"@}]@}]@}
35641 @end group
35642 @end smallexample
35644 @subheading The @code{-symbol-info-types} Command
35645 @findex -symbol-info-types
35646 @anchor{-symbol-info-types}
35648 @subsubheading Synopsis
35650 @smallexample
35651  -symbol-info-types [--name @var{name_regexp}]
35652                     [--max-results @var{limit}]
35654 @end smallexample
35656 @noindent
35657 Return a list of all defined types.  The types are grouped by source
35658 file, and shown with the line number on which each user defined type
35659 is defined.  Some base types are not defined in the source code but
35660 are added to the debug information by the compiler, for example
35661 @code{int}, @code{float}, etc.; these types do not have an associated
35662 line number.
35664 The option @code{--name} allows the list of types returned to be
35665 filtered by name.
35667 The option @code{--max-results} restricts the command to return no
35668 more than @var{limit} results.  If exactly @var{limit} results are
35669 returned then there might be additional results available if a higher
35670 limit is used.
35672 @subsubheading @value{GDBN} Command
35674 The corresponding @value{GDBN} command is @samp{info types}.
35676 @subsubheading Example
35677 @smallexample
35678 @group
35679 (gdb)
35680 -symbol-info-types
35681 ^done,symbols=
35682   @{debug=
35683      [@{filename="gdb.mi/mi-sym-info-1.c",
35684        fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35685        symbols=[@{name="float"@},
35686                 @{name="int"@},
35687                 @{line="27",name="typedef int my_int_t;"@}]@},
35688       @{filename="gdb.mi/mi-sym-info-2.c",
35689        fullname="/project/gdb.mi/mi-sym-info-2.c",
35690        symbols=[@{line="24",name="typedef float another_float_t;"@},
35691                 @{line="23",name="typedef int another_int_t;"@},
35692                 @{name="float"@},
35693                 @{name="int"@}]@}]@}
35694 @end group
35695 @group
35696 (gdb)
35697 -symbol-info-types --name _int_
35698 ^done,symbols=
35699   @{debug=
35700      [@{filename="gdb.mi/mi-sym-info-1.c",
35701        fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35702        symbols=[@{line="27",name="typedef int my_int_t;"@}]@},
35703       @{filename="gdb.mi/mi-sym-info-2.c",
35704        fullname="/project/gdb.mi/mi-sym-info-2.c",
35705        symbols=[@{line="23",name="typedef int another_int_t;"@}]@}]@}
35706 @end group
35707 @end smallexample
35709 @subheading The @code{-symbol-info-variables} Command
35710 @findex -symbol-info-variables
35711 @anchor{-symbol-info-variables}
35713 @subsubheading Synopsis
35715 @smallexample
35716  -symbol-info-variables [--include-nondebug]
35717                         [--type @var{type_regexp}]
35718                         [--name @var{name_regexp}]
35719                         [--max-results @var{limit}]
35721 @end smallexample
35723 @noindent
35724 Return a list containing the names and types for all global variables
35725 taken from the debug information.  The variables are grouped by source
35726 file, and shown with the line number on which each variable is
35727 defined.
35729 The @code{--include-nondebug} option causes the output to include
35730 data symbols from the symbol table.
35732 The options @code{--type} and @code{--name} allow the symbols returned
35733 to be filtered based on either the name of the variable, or the type
35734 of the variable.
35736 The option @code{--max-results} restricts the command to return no
35737 more than @var{limit} results.  If exactly @var{limit} results are
35738 returned then there might be additional results available if a higher
35739 limit is used.
35741 @subsubheading @value{GDBN} Command
35743 The corresponding @value{GDBN} command is @samp{info variables}.
35745 @subsubheading Example
35746 @smallexample
35747 @group
35748 (gdb)
35749 -symbol-info-variables
35750 ^done,symbols=
35751   @{debug=
35752     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35753       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35754       symbols=[@{line="25",name="global_f1",type="float",
35755                 description="static float global_f1;"@},
35756                @{line="24",name="global_i1",type="int",
35757                 description="static int global_i1;"@}]@},
35758      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35759       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35760       symbols=[@{line="21",name="global_f2",type="int",
35761                 description="int global_f2;"@},
35762                @{line="20",name="global_i2",type="int",
35763                 description="int global_i2;"@},
35764                @{line="19",name="global_f1",type="float",
35765                 description="static float global_f1;"@},
35766                @{line="18",name="global_i1",type="int",
35767                 description="static int global_i1;"@}]@}]@}
35768 @end group
35769 @group
35770 (gdb)
35771 -symbol-info-variables --name f1
35772 ^done,symbols=
35773   @{debug=
35774     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35775       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35776       symbols=[@{line="25",name="global_f1",type="float",
35777                 description="static float global_f1;"@}]@},
35778      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35779       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35780       symbols=[@{line="19",name="global_f1",type="float",
35781                 description="static float global_f1;"@}]@}]@}
35782 @end group
35783 @group
35784 (gdb)
35785 -symbol-info-variables --type float
35786 ^done,symbols=
35787   @{debug=
35788     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35789       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35790       symbols=[@{line="25",name="global_f1",type="float",
35791                 description="static float global_f1;"@}]@},
35792      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35793       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35794       symbols=[@{line="19",name="global_f1",type="float",
35795                 description="static float global_f1;"@}]@}]@}
35796 @end group
35797 @group
35798 (gdb)
35799 -symbol-info-variables --include-nondebug
35800 ^done,symbols=
35801   @{debug=
35802     [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35803       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35804       symbols=[@{line="25",name="global_f1",type="float",
35805                 description="static float global_f1;"@},
35806                @{line="24",name="global_i1",type="int",
35807                 description="static int global_i1;"@}]@},
35808      @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35809       fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35810       symbols=[@{line="21",name="global_f2",type="int",
35811                 description="int global_f2;"@},
35812                @{line="20",name="global_i2",type="int",
35813                 description="int global_i2;"@},
35814                @{line="19",name="global_f1",type="float",
35815                 description="static float global_f1;"@},
35816                @{line="18",name="global_i1",type="int",
35817                 description="static int global_i1;"@}]@}],
35818    nondebug=
35819     [@{address="0x00000000004005d0",name="_IO_stdin_used"@},
35820      @{address="0x00000000004005d8",name="__dso_handle"@}
35821       ...
35822     ]@}
35823 @end group
35824 @end smallexample
35826 @ignore
35827 @subheading The @code{-symbol-info-line} Command
35828 @findex -symbol-info-line
35830 @subsubheading Synopsis
35832 @smallexample
35833  -symbol-info-line
35834 @end smallexample
35836 Show the core addresses of the code for a source line.
35838 @subsubheading @value{GDBN} Command
35840 The corresponding @value{GDBN} command is @samp{info line}.
35841 @code{gdbtk} has the @samp{gdb_get_line} and @samp{gdb_get_file} commands.
35843 @subsubheading Example
35844 N.A.
35847 @subheading The @code{-symbol-info-symbol} Command
35848 @findex -symbol-info-symbol
35850 @subsubheading Synopsis
35852 @smallexample
35853  -symbol-info-symbol @var{addr}
35854 @end smallexample
35856 Describe what symbol is at location @var{addr}.
35858 @subsubheading @value{GDBN} Command
35860 The corresponding @value{GDBN} command is @samp{info symbol}.
35862 @subsubheading Example
35863 N.A.
35866 @subheading The @code{-symbol-list-functions} Command
35867 @findex -symbol-list-functions
35869 @subsubheading Synopsis
35871 @smallexample
35872  -symbol-list-functions
35873 @end smallexample
35875 List the functions in the executable.
35877 @subsubheading @value{GDBN} Command
35879 @samp{info functions} in @value{GDBN}, @samp{gdb_listfunc} and
35880 @samp{gdb_search} in @code{gdbtk}.
35882 @subsubheading Example
35883 N.A.
35884 @end ignore
35887 @subheading The @code{-symbol-list-lines} Command
35888 @findex -symbol-list-lines
35890 @subsubheading Synopsis
35892 @smallexample
35893  -symbol-list-lines @var{filename}
35894 @end smallexample
35896 Print the list of lines that contain code and their associated program
35897 addresses for the given source filename.  The entries are sorted in
35898 ascending PC order.
35900 @subsubheading @value{GDBN} Command
35902 There is no corresponding @value{GDBN} command.
35904 @subsubheading Example
35905 @smallexample
35906 (gdb)
35907 -symbol-list-lines basics.c
35908 ^done,lines=[@{pc="0x08048554",line="7"@},@{pc="0x0804855a",line="8"@}]
35909 (gdb)
35910 @end smallexample
35913 @ignore
35914 @subheading The @code{-symbol-list-types} Command
35915 @findex -symbol-list-types
35917 @subsubheading Synopsis
35919 @smallexample
35920  -symbol-list-types
35921 @end smallexample
35923 List all the type names.
35925 @subsubheading @value{GDBN} Command
35927 The corresponding commands are @samp{info types} in @value{GDBN},
35928 @samp{gdb_search} in @code{gdbtk}.
35930 @subsubheading Example
35931 N.A.
35934 @subheading The @code{-symbol-list-variables} Command
35935 @findex -symbol-list-variables
35937 @subsubheading Synopsis
35939 @smallexample
35940  -symbol-list-variables
35941 @end smallexample
35943 List all the global and static variable names.
35945 @subsubheading @value{GDBN} Command
35947 @samp{info variables} in @value{GDBN}, @samp{gdb_search} in @code{gdbtk}.
35949 @subsubheading Example
35950 N.A.
35953 @subheading The @code{-symbol-locate} Command
35954 @findex -symbol-locate
35956 @subsubheading Synopsis
35958 @smallexample
35959  -symbol-locate
35960 @end smallexample
35962 @subsubheading @value{GDBN} Command
35964 @samp{gdb_loc} in @code{gdbtk}.
35966 @subsubheading Example
35967 N.A.
35970 @subheading The @code{-symbol-type} Command
35971 @findex -symbol-type
35973 @subsubheading Synopsis
35975 @smallexample
35976  -symbol-type @var{variable}
35977 @end smallexample
35979 Show type of @var{variable}.
35981 @subsubheading @value{GDBN} Command
35983 The corresponding @value{GDBN} command is @samp{ptype}, @code{gdbtk} has
35984 @samp{gdb_obj_variable}.
35986 @subsubheading Example
35987 N.A.
35988 @end ignore
35991 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35992 @node GDB/MI File Commands
35993 @section @sc{gdb/mi} File Commands
35995 This section describes the GDB/MI commands to specify executable file names
35996 and to read in and obtain symbol table information.
35998 @subheading The @code{-file-exec-and-symbols} Command
35999 @findex -file-exec-and-symbols
36001 @subsubheading Synopsis
36003 @smallexample
36004  -file-exec-and-symbols @var{file}
36005 @end smallexample
36007 Specify the executable file to be debugged.  This file is the one from
36008 which the symbol table is also read.  If no file is specified, the
36009 command clears the executable and symbol information.  If breakpoints
36010 are set when using this command with no arguments, @value{GDBN} will produce
36011 error messages.  Otherwise, no output is produced, except a completion
36012 notification.
36014 @subsubheading @value{GDBN} Command
36016 The corresponding @value{GDBN} command is @samp{file}.
36018 @subsubheading Example
36020 @smallexample
36021 (gdb)
36022 -file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36023 ^done
36024 (gdb)
36025 @end smallexample
36028 @subheading The @code{-file-exec-file} Command
36029 @findex -file-exec-file
36031 @subsubheading Synopsis
36033 @smallexample
36034  -file-exec-file @var{file}
36035 @end smallexample
36037 Specify the executable file to be debugged.  Unlike
36038 @samp{-file-exec-and-symbols}, the symbol table is @emph{not} read
36039 from this file.  If used without argument, @value{GDBN} clears the information
36040 about the executable file.  No output is produced, except a completion
36041 notification.
36043 @subsubheading @value{GDBN} Command
36045 The corresponding @value{GDBN} command is @samp{exec-file}.
36047 @subsubheading Example
36049 @smallexample
36050 (gdb)
36051 -file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36052 ^done
36053 (gdb)
36054 @end smallexample
36057 @ignore
36058 @subheading The @code{-file-list-exec-sections} Command
36059 @findex -file-list-exec-sections
36061 @subsubheading Synopsis
36063 @smallexample
36064  -file-list-exec-sections
36065 @end smallexample
36067 List the sections of the current executable file.
36069 @subsubheading @value{GDBN} Command
36071 The @value{GDBN} command @samp{info file} shows, among the rest, the same
36072 information as this command.  @code{gdbtk} has a corresponding command
36073 @samp{gdb_load_info}.
36075 @subsubheading Example
36076 N.A.
36077 @end ignore
36080 @subheading The @code{-file-list-exec-source-file} Command
36081 @findex -file-list-exec-source-file
36083 @subsubheading Synopsis
36085 @smallexample
36086  -file-list-exec-source-file
36087 @end smallexample
36089 List the line number, the current source file, and the absolute path
36090 to the current source file for the current executable.  The macro
36091 information field has a value of @samp{1} or @samp{0} depending on
36092 whether or not the file includes preprocessor macro information.
36094 @subsubheading @value{GDBN} Command
36096 The @value{GDBN} equivalent is @samp{info source}
36098 @subsubheading Example
36100 @smallexample
36101 (gdb)
36102 123-file-list-exec-source-file
36103 123^done,line="1",file="foo.c",fullname="/home/bar/foo.c,macro-info="1"
36104 (gdb)
36105 @end smallexample
36108 @subheading The @code{-file-list-exec-source-files} Command
36109 @kindex info sources
36110 @findex -file-list-exec-source-files
36112 @subsubheading Synopsis
36114 @smallexample
36115  -file-list-exec-source-files @r{[} @var{--group-by-objfile} @r{]}
36116                               @r{[} @var{--dirname} @r{|} @var{--basename} @r{]}
36117                               @r{[} -- @r{]}
36118                               @r{[} @var{regexp} @r{]}
36119 @end smallexample
36121 This command returns information about the source files @value{GDBN}
36122 knows about, it will output both the filename and fullname (absolute
36123 file name) of a source file, though the fullname can be elided if this
36124 information is not known to @value{GDBN}.
36126 With no arguments this command returns a list of source files.  Each
36127 source file is represented by a tuple with the fields; @var{file},
36128 @var{fullname}, and @var{debug-fully-read}.  The @var{file} is the
36129 display name for the file, while @var{fullname} is the absolute name
36130 of the file.  The @var{fullname} field can be elided if the absolute
36131 name of the source file can't be computed.  The field
36132 @var{debug-fully-read} will be a string, either @code{true} or
36133 @code{false}.  When @code{true}, this indicates the full debug
36134 information for the compilation unit describing this file has been
36135 read in.  When @code{false}, the full debug information has not yet
36136 been read in.  While reading in the full debug information it is
36137 possible that @value{GDBN} could become aware of additional source
36138 files.
36140 The optional @var{regexp} can be used to filter the list of source
36141 files returned.  The @var{regexp} will be matched against the full
36142 source file name.  The matching is case-sensitive, except on operating
36143 systems that have case-insensitive filesystem (e.g.,
36144 MS-Windows).  @samp{--} can be used before @var{regexp} to prevent
36145 @value{GDBN} interpreting @var{regexp} as a command option (e.g.@: if
36146 @var{regexp} starts with @samp{-}).
36148 If @code{--dirname} is provided, then @var{regexp} is matched only
36149 against the directory name of each source file.  If @code{--basename}
36150 is provided, then @var{regexp} is matched against the basename of each
36151 source file.  Only one of @code{--dirname} or @code{--basename} may be
36152 given, and if either is given then @var{regexp} is required.
36154 If @code{--group-by-objfile} is used then the format of the results is
36155 changed.  The results will now be a list of tuples, with each tuple
36156 representing an object file (executable or shared library) loaded into
36157 @value{GDBN}.  The fields of these tuples are; @var{filename},
36158 @var{debug-info}, and @var{sources}.  The @var{filename} is the
36159 absolute name of the object file, @var{debug-info} is a string with
36160 one of the following values:
36162 @table @code
36163 @item none
36164 This object file has no debug information.
36165 @item partially-read
36166 This object file has debug information, but it is not fully read in
36167 yet.  When it is read in later, GDB might become aware of additional
36168 source files.
36169 @item fully-read
36170 This object file has debug information, and this information is fully
36171 read into GDB.  The list of source files is complete.
36172 @end table
36174 The @var{sources} is a list or tuples, with each tuple describing a
36175 single source file with the same fields as described previously.  The
36176 @var{sources} list can be empty for object files that have no debug
36177 information.
36179 @subsubheading @value{GDBN} Command
36181 The @value{GDBN} equivalent is @samp{info sources}.
36182 @code{gdbtk} has an analogous command @samp{gdb_listfiles}.
36184 @subsubheading Example
36185 @smallexample
36186 (@value{GDBP})
36187 -file-list-exec-source-files
36188 ^done,files=[@{file="foo.c",fullname="/home/foo.c",debug-fully-read="true"@},
36189              @{file="/home/bar.c",fullname="/home/bar.c",debug-fully-read="true"@},
36190              @{file="gdb_could_not_find_fullpath.c",debug-fully-read="true"@}]
36191 (@value{GDBP})
36192 -file-list-exec-source-files
36193 ^done,files=[@{file="test.c",
36194               fullname="/tmp/info-sources/test.c",
36195               debug-fully-read="true"@},
36196              @{file="/usr/include/stdc-predef.h",
36197               fullname="/usr/include/stdc-predef.h",
36198               debug-fully-read="true"@},
36199              @{file="header.h",
36200               fullname="/tmp/info-sources/header.h",
36201               debug-fully-read="true"@},
36202              @{file="helper.c",
36203               fullname="/tmp/info-sources/helper.c",
36204               debug-fully-read="true"@}]
36205 (@value{GDBP})
36206 -file-list-exec-source-files -- \\.c
36207 ^done,files=[@{file="test.c",
36208               fullname="/tmp/info-sources/test.c",
36209               debug-fully-read="true"@},
36210              @{file="helper.c",
36211               fullname="/tmp/info-sources/helper.c",
36212               debug-fully-read="true"@}]
36213 (@value{GDBP})
36214 -file-list-exec-source-files --group-by-objfile
36215 ^done,files=[@{filename="/tmp/info-sources/test.x",
36216               debug-info="fully-read",
36217               sources=[@{file="test.c",
36218                         fullname="/tmp/info-sources/test.c",
36219                         debug-fully-read="true"@},
36220                        @{file="/usr/include/stdc-predef.h",
36221                         fullname="/usr/include/stdc-predef.h",
36222                         debug-fully-read="true"@},
36223                        @{file="header.h",
36224                         fullname="/tmp/info-sources/header.h",
36225                         debug-fully-read="true"@}]@},
36226              @{filename="/lib64/ld-linux-x86-64.so.2",
36227               debug-info="none",
36228               sources=[]@},
36229              @{filename="system-supplied DSO at 0x7ffff7fcf000",
36230               debug-info="none",
36231               sources=[]@},
36232              @{filename="/tmp/info-sources/libhelper.so",
36233               debug-info="fully-read",
36234               sources=[@{file="helper.c",
36235                         fullname="/tmp/info-sources/helper.c",
36236                         debug-fully-read="true"@},
36237                        @{file="/usr/include/stdc-predef.h",
36238                         fullname="/usr/include/stdc-predef.h",
36239                         debug-fully-read="true"@},
36240                        @{file="header.h",
36241                         fullname="/tmp/info-sources/header.h",
36242                         debug-fully-read="true"@}]@},
36243              @{filename="/lib64/libc.so.6",
36244               debug-info="none",
36245               sources=[]@}]
36246 @end smallexample
36248 @subheading The @code{-file-list-shared-libraries} Command
36249 @findex -file-list-shared-libraries
36251 @subsubheading Synopsis
36253 @smallexample
36254  -file-list-shared-libraries [ @var{regexp} ]
36255 @end smallexample
36257 List the shared libraries in the program.
36258 With a regular expression @var{regexp}, only those libraries whose
36259 names match @var{regexp} are listed.
36261 @subsubheading @value{GDBN} Command
36263 The corresponding @value{GDBN} command is @samp{info shared}.  The fields
36264 have a similar meaning to the @code{=library-loaded} notification.
36265 The @code{ranges} field specifies the multiple segments belonging to this
36266 library.  Each range has the following fields:
36268 @table @samp
36269 @item from
36270 The address defining the inclusive lower bound of the segment.
36271 @item to
36272 The address defining the exclusive upper bound of the segment.
36273 @end table
36275 @subsubheading Example
36276 @smallexample
36277 (gdb)
36278 -file-list-exec-source-files
36279 ^done,shared-libraries=[
36280 @{id="/lib/libfoo.so",target-name="/lib/libfoo.so",host-name="/lib/libfoo.so",symbols-loaded="1",thread-group="i1",ranges=[@{from="0x72815989",to="0x728162c0"@}]@},
36281 @{id="/lib/libbar.so",target-name="/lib/libbar.so",host-name="/lib/libbar.so",symbols-loaded="1",thread-group="i1",ranges=[@{from="0x76ee48c0",to="0x76ee9160"@}]@}]
36282 (gdb)
36283 @end smallexample
36286 @ignore
36287 @subheading The @code{-file-list-symbol-files} Command
36288 @findex -file-list-symbol-files
36290 @subsubheading Synopsis
36292 @smallexample
36293  -file-list-symbol-files
36294 @end smallexample
36296 List symbol files.
36298 @subsubheading @value{GDBN} Command
36300 The corresponding @value{GDBN} command is @samp{info file} (part of it).
36302 @subsubheading Example
36303 N.A.
36304 @end ignore
36307 @subheading The @code{-file-symbol-file} Command
36308 @findex -file-symbol-file
36310 @subsubheading Synopsis
36312 @smallexample
36313  -file-symbol-file @var{file}
36314 @end smallexample
36316 Read symbol table info from the specified @var{file} argument.  When
36317 used without arguments, clears @value{GDBN}'s symbol table info.  No output is
36318 produced, except for a completion notification.
36320 @subsubheading @value{GDBN} Command
36322 The corresponding @value{GDBN} command is @samp{symbol-file}.
36324 @subsubheading Example
36326 @smallexample
36327 (gdb)
36328 -file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36329 ^done
36330 (gdb)
36331 @end smallexample
36333 @ignore
36334 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36335 @node GDB/MI Memory Overlay Commands
36336 @section @sc{gdb/mi} Memory Overlay Commands
36338 The memory overlay commands are not implemented.
36340 @c @subheading -overlay-auto
36342 @c @subheading -overlay-list-mapping-state
36344 @c @subheading -overlay-list-overlays
36346 @c @subheading -overlay-map
36348 @c @subheading -overlay-off
36350 @c @subheading -overlay-on
36352 @c @subheading -overlay-unmap
36354 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36355 @node GDB/MI Signal Handling Commands
36356 @section @sc{gdb/mi} Signal Handling Commands
36358 Signal handling commands are not implemented.
36360 @c @subheading -signal-handle
36362 @c @subheading -signal-list-handle-actions
36364 @c @subheading -signal-list-signal-types
36365 @end ignore
36368 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36369 @node GDB/MI Target Manipulation
36370 @section @sc{gdb/mi} Target Manipulation Commands
36373 @subheading The @code{-target-attach} Command
36374 @findex -target-attach
36376 @subsubheading Synopsis
36378 @smallexample
36379  -target-attach @var{pid} | @var{gid} | @var{file}
36380 @end smallexample
36382 Attach to a process @var{pid} or a file @var{file} outside of
36383 @value{GDBN}, or a thread group @var{gid}.  If attaching to a thread
36384 group, the id previously returned by 
36385 @samp{-list-thread-groups --available} must be used.
36387 @subsubheading @value{GDBN} Command
36389 The corresponding @value{GDBN} command is @samp{attach}.
36391 @subsubheading Example
36392 @smallexample
36393 (gdb)
36394 -target-attach 34
36395 =thread-created,id="1"
36396 *stopped,thread-id="1",frame=@{addr="0xb7f7e410",func="bar",args=[]@}
36397 ^done
36398 (gdb)
36399 @end smallexample
36401 @ignore
36402 @subheading The @code{-target-compare-sections} Command
36403 @findex -target-compare-sections
36405 @subsubheading Synopsis
36407 @smallexample
36408  -target-compare-sections [ @var{section} ]
36409 @end smallexample
36411 Compare data of section @var{section} on target to the exec file.
36412 Without the argument, all sections are compared.
36414 @subsubheading @value{GDBN} Command
36416 The @value{GDBN} equivalent is @samp{compare-sections}.
36418 @subsubheading Example
36419 N.A.
36420 @end ignore
36423 @subheading The @code{-target-detach} Command
36424 @findex -target-detach
36426 @subsubheading Synopsis
36428 @smallexample
36429  -target-detach [ @var{pid} | @var{gid} ]
36430 @end smallexample
36432 Detach from the remote target which normally resumes its execution.
36433 If either @var{pid} or @var{gid} is specified, detaches from either
36434 the specified process, or specified thread group.  There's no output.
36436 @subsubheading @value{GDBN} Command
36438 The corresponding @value{GDBN} command is @samp{detach}.
36440 @subsubheading Example
36442 @smallexample
36443 (gdb)
36444 -target-detach
36445 ^done
36446 (gdb)
36447 @end smallexample
36450 @subheading The @code{-target-disconnect} Command
36451 @findex -target-disconnect
36453 @subsubheading Synopsis
36455 @smallexample
36456  -target-disconnect
36457 @end smallexample
36459 Disconnect from the remote target.  There's no output and the target is
36460 generally not resumed.
36462 @subsubheading @value{GDBN} Command
36464 The corresponding @value{GDBN} command is @samp{disconnect}.
36466 @subsubheading Example
36468 @smallexample
36469 (gdb)
36470 -target-disconnect
36471 ^done
36472 (gdb)
36473 @end smallexample
36476 @subheading The @code{-target-download} Command
36477 @findex -target-download
36479 @subsubheading Synopsis
36481 @smallexample
36482  -target-download
36483 @end smallexample
36485 Loads the executable onto the remote target.
36486 It prints out an update message every half second, which includes the fields:
36488 @table @samp
36489 @item section
36490 The name of the section.
36491 @item section-sent
36492 The size of what has been sent so far for that section.
36493 @item section-size
36494 The size of the section.
36495 @item total-sent
36496 The total size of what was sent so far (the current and the previous sections).
36497 @item total-size
36498 The size of the overall executable to download.
36499 @end table
36501 @noindent
36502 Each message is sent as status record (@pxref{GDB/MI Output Syntax, ,
36503 @sc{gdb/mi} Output Syntax}).
36505 In addition, it prints the name and size of the sections, as they are
36506 downloaded.  These messages include the following fields:
36508 @table @samp
36509 @item section
36510 The name of the section.
36511 @item section-size
36512 The size of the section.
36513 @item total-size
36514 The size of the overall executable to download.
36515 @end table
36517 @noindent
36518 At the end, a summary is printed.
36520 @subsubheading @value{GDBN} Command
36522 The corresponding @value{GDBN} command is @samp{load}.
36524 @subsubheading Example
36526 Note: each status message appears on a single line.  Here the messages
36527 have been broken down so that they can fit onto a page.
36529 @smallexample
36530 (gdb)
36531 -target-download
36532 +download,@{section=".text",section-size="6668",total-size="9880"@}
36533 +download,@{section=".text",section-sent="512",section-size="6668",
36534 total-sent="512",total-size="9880"@}
36535 +download,@{section=".text",section-sent="1024",section-size="6668",
36536 total-sent="1024",total-size="9880"@}
36537 +download,@{section=".text",section-sent="1536",section-size="6668",
36538 total-sent="1536",total-size="9880"@}
36539 +download,@{section=".text",section-sent="2048",section-size="6668",
36540 total-sent="2048",total-size="9880"@}
36541 +download,@{section=".text",section-sent="2560",section-size="6668",
36542 total-sent="2560",total-size="9880"@}
36543 +download,@{section=".text",section-sent="3072",section-size="6668",
36544 total-sent="3072",total-size="9880"@}
36545 +download,@{section=".text",section-sent="3584",section-size="6668",
36546 total-sent="3584",total-size="9880"@}
36547 +download,@{section=".text",section-sent="4096",section-size="6668",
36548 total-sent="4096",total-size="9880"@}
36549 +download,@{section=".text",section-sent="4608",section-size="6668",
36550 total-sent="4608",total-size="9880"@}
36551 +download,@{section=".text",section-sent="5120",section-size="6668",
36552 total-sent="5120",total-size="9880"@}
36553 +download,@{section=".text",section-sent="5632",section-size="6668",
36554 total-sent="5632",total-size="9880"@}
36555 +download,@{section=".text",section-sent="6144",section-size="6668",
36556 total-sent="6144",total-size="9880"@}
36557 +download,@{section=".text",section-sent="6656",section-size="6668",
36558 total-sent="6656",total-size="9880"@}
36559 +download,@{section=".init",section-size="28",total-size="9880"@}
36560 +download,@{section=".fini",section-size="28",total-size="9880"@}
36561 +download,@{section=".data",section-size="3156",total-size="9880"@}
36562 +download,@{section=".data",section-sent="512",section-size="3156",
36563 total-sent="7236",total-size="9880"@}
36564 +download,@{section=".data",section-sent="1024",section-size="3156",
36565 total-sent="7748",total-size="9880"@}
36566 +download,@{section=".data",section-sent="1536",section-size="3156",
36567 total-sent="8260",total-size="9880"@}
36568 +download,@{section=".data",section-sent="2048",section-size="3156",
36569 total-sent="8772",total-size="9880"@}
36570 +download,@{section=".data",section-sent="2560",section-size="3156",
36571 total-sent="9284",total-size="9880"@}
36572 +download,@{section=".data",section-sent="3072",section-size="3156",
36573 total-sent="9796",total-size="9880"@}
36574 ^done,address="0x10004",load-size="9880",transfer-rate="6586",
36575 write-rate="429"
36576 (gdb)
36577 @end smallexample
36580 @ignore
36581 @subheading The @code{-target-exec-status} Command
36582 @findex -target-exec-status
36584 @subsubheading Synopsis
36586 @smallexample
36587  -target-exec-status
36588 @end smallexample
36590 Provide information on the state of the target (whether it is running or
36591 not, for instance).
36593 @subsubheading @value{GDBN} Command
36595 There's no equivalent @value{GDBN} command.
36597 @subsubheading Example
36598 N.A.
36601 @subheading The @code{-target-list-available-targets} Command
36602 @findex -target-list-available-targets
36604 @subsubheading Synopsis
36606 @smallexample
36607  -target-list-available-targets
36608 @end smallexample
36610 List the possible targets to connect to.
36612 @subsubheading @value{GDBN} Command
36614 The corresponding @value{GDBN} command is @samp{help target}.
36616 @subsubheading Example
36617 N.A.
36620 @subheading The @code{-target-list-current-targets} Command
36621 @findex -target-list-current-targets
36623 @subsubheading Synopsis
36625 @smallexample
36626  -target-list-current-targets
36627 @end smallexample
36629 Describe the current target.
36631 @subsubheading @value{GDBN} Command
36633 The corresponding information is printed by @samp{info file} (among
36634 other things).
36636 @subsubheading Example
36637 N.A.
36640 @subheading The @code{-target-list-parameters} Command
36641 @findex -target-list-parameters
36643 @subsubheading Synopsis
36645 @smallexample
36646  -target-list-parameters
36647 @end smallexample
36649 @c ????
36650 @end ignore
36652 @subsubheading @value{GDBN} Command
36654 No equivalent.
36656 @subsubheading Example
36657 N.A.
36659 @subheading The @code{-target-flash-erase} Command
36660 @findex -target-flash-erase
36662 @subsubheading Synopsis
36664 @smallexample
36665  -target-flash-erase
36666 @end smallexample
36668 Erases all known flash memory regions on the target.
36670 The corresponding @value{GDBN} command is @samp{flash-erase}.
36672 The output is a list of flash regions that have been erased, with starting
36673 addresses and memory region sizes.
36675 @smallexample
36676 (gdb)
36677 -target-flash-erase
36678 ^done,erased-regions=@{address="0x0",size="0x40000"@}
36679 (gdb)
36680 @end smallexample
36682 @subheading The @code{-target-select} Command
36683 @findex -target-select
36685 @subsubheading Synopsis
36687 @smallexample
36688  -target-select @var{type} @var{parameters @dots{}}
36689 @end smallexample
36691 Connect @value{GDBN} to the remote target.  This command takes two args:
36693 @table @samp
36694 @item @var{type}
36695 The type of target, for instance @samp{remote}, etc.
36696 @item @var{parameters}
36697 Device names, host names and the like.  @xref{Target Commands, ,
36698 Commands for Managing Targets}, for more details.
36699 @end table
36701 The output is a connection notification, followed by the address at
36702 which the target program is, in the following form:
36704 @smallexample
36705 ^connected,addr="@var{address}",func="@var{function name}",
36706   args=[@var{arg list}]
36707 @end smallexample
36709 @subsubheading @value{GDBN} Command
36711 The corresponding @value{GDBN} command is @samp{target}.
36713 @subsubheading Example
36715 @smallexample
36716 (gdb)
36717 -target-select remote /dev/ttya
36718 ^connected,addr="0xfe00a300",func="??",args=[]
36719 (gdb)
36720 @end smallexample
36722 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36723 @node GDB/MI File Transfer Commands
36724 @section @sc{gdb/mi} File Transfer Commands
36727 @subheading The @code{-target-file-put} Command
36728 @findex -target-file-put
36730 @subsubheading Synopsis
36732 @smallexample
36733  -target-file-put @var{hostfile} @var{targetfile}
36734 @end smallexample
36736 Copy file @var{hostfile} from the host system (the machine running
36737 @value{GDBN}) to @var{targetfile} on the target system.
36739 @subsubheading @value{GDBN} Command
36741 The corresponding @value{GDBN} command is @samp{remote put}.
36743 @subsubheading Example
36745 @smallexample
36746 (gdb)
36747 -target-file-put localfile remotefile
36748 ^done
36749 (gdb)
36750 @end smallexample
36753 @subheading The @code{-target-file-get} Command
36754 @findex -target-file-get
36756 @subsubheading Synopsis
36758 @smallexample
36759  -target-file-get @var{targetfile} @var{hostfile}
36760 @end smallexample
36762 Copy file @var{targetfile} from the target system to @var{hostfile}
36763 on the host system.
36765 @subsubheading @value{GDBN} Command
36767 The corresponding @value{GDBN} command is @samp{remote get}.
36769 @subsubheading Example
36771 @smallexample
36772 (gdb)
36773 -target-file-get remotefile localfile
36774 ^done
36775 (gdb)
36776 @end smallexample
36779 @subheading The @code{-target-file-delete} Command
36780 @findex -target-file-delete
36782 @subsubheading Synopsis
36784 @smallexample
36785  -target-file-delete @var{targetfile}
36786 @end smallexample
36788 Delete @var{targetfile} from the target system.
36790 @subsubheading @value{GDBN} Command
36792 The corresponding @value{GDBN} command is @samp{remote delete}.
36794 @subsubheading Example
36796 @smallexample
36797 (gdb)
36798 -target-file-delete remotefile
36799 ^done
36800 (gdb)
36801 @end smallexample
36804 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36805 @node GDB/MI Ada Exceptions Commands
36806 @section Ada Exceptions @sc{gdb/mi} Commands
36808 @subheading The @code{-info-ada-exceptions} Command
36809 @findex -info-ada-exceptions
36811 @subsubheading Synopsis
36813 @smallexample
36814  -info-ada-exceptions [ @var{regexp}]
36815 @end smallexample
36817 List all Ada exceptions defined within the program being debugged.
36818 With a regular expression @var{regexp}, only those exceptions whose
36819 names match @var{regexp} are listed.
36821 @subsubheading @value{GDBN} Command
36823 The corresponding @value{GDBN} command is @samp{info exceptions}.
36825 @subsubheading Result
36827 The result is a table of Ada exceptions.  The following columns are
36828 defined for each exception:
36830 @table @samp
36831 @item name
36832 The name of the exception.
36834 @item address
36835 The address of the exception.
36837 @end table
36839 @subsubheading Example
36841 @smallexample
36842 -info-ada-exceptions aint
36843 ^done,ada-exceptions=@{nr_rows="2",nr_cols="2",
36844 hdr=[@{width="1",alignment="-1",col_name="name",colhdr="Name"@},
36845 @{width="1",alignment="-1",col_name="address",colhdr="Address"@}],
36846 body=[@{name="constraint_error",address="0x0000000000613da0"@},
36847 @{name="const.aint_global_e",address="0x0000000000613b00"@}]@}
36848 @end smallexample
36850 @subheading Catching Ada Exceptions
36852 The commands describing how to ask @value{GDBN} to stop when a program
36853 raises an exception are described at @ref{Ada Exception GDB/MI
36854 Catchpoint Commands}.
36857 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36858 @node GDB/MI Support Commands
36859 @section @sc{gdb/mi} Support Commands
36861 Since new commands and features get regularly added to @sc{gdb/mi},
36862 some commands are available to help front-ends query the debugger
36863 about support for these capabilities.  Similarly, it is also possible
36864 to query @value{GDBN} about target support of certain features.
36866 @subheading The @code{-info-gdb-mi-command} Command
36867 @cindex @code{-info-gdb-mi-command}
36868 @findex -info-gdb-mi-command
36870 @subsubheading Synopsis
36872 @smallexample
36873  -info-gdb-mi-command @var{cmd_name}
36874 @end smallexample
36876 Query support for the @sc{gdb/mi} command named @var{cmd_name}.
36878 Note that the dash (@code{-}) starting all @sc{gdb/mi} commands
36879 is technically not part of the command name (@pxref{GDB/MI Input
36880 Syntax}), and thus should be omitted in @var{cmd_name}.  However,
36881 for ease of use, this command also accepts the form with the leading
36882 dash.
36884 @subsubheading @value{GDBN} Command
36886 There is no corresponding @value{GDBN} command.
36888 @subsubheading Result
36890 The result is a tuple.  There is currently only one field:
36892 @table @samp
36893 @item exists
36894 This field is equal to @code{"true"} if the @sc{gdb/mi} command exists,
36895 @code{"false"} otherwise.
36897 @end table
36899 @subsubheading Example
36901 Here is an example where the @sc{gdb/mi} command does not exist:
36903 @smallexample
36904 -info-gdb-mi-command unsupported-command
36905 ^done,command=@{exists="false"@}
36906 @end smallexample
36908 @noindent
36909 And here is an example where the @sc{gdb/mi} command is known
36910 to the debugger:
36912 @smallexample
36913 -info-gdb-mi-command symbol-list-lines
36914 ^done,command=@{exists="true"@}
36915 @end smallexample
36917 @subheading The @code{-list-features} Command
36918 @findex -list-features
36919 @cindex supported @sc{gdb/mi} features, list
36921 Returns a list of particular features of the MI protocol that
36922 this version of gdb implements.  A feature can be a command,
36923 or a new field in an output of some command, or even an
36924 important bugfix.  While a frontend can sometimes detect presence
36925 of a feature at runtime, it is easier to perform detection at debugger
36926 startup.
36928 The command returns a list of strings, with each string naming an
36929 available feature.  Each returned string is just a name, it does not
36930 have any internal structure.  The list of possible feature names
36931 is given below.
36933 Example output:
36935 @smallexample
36936 (gdb) -list-features
36937 ^done,result=["feature1","feature2"]
36938 @end smallexample
36940 The current list of features is:
36942 @ftable @samp
36943 @item frozen-varobjs
36944 Indicates support for the @code{-var-set-frozen} command, as well
36945 as possible presence of the @code{frozen} field in the output
36946 of @code{-varobj-create}.
36947 @item pending-breakpoints
36948 Indicates support for the @option{-f} option to the @code{-break-insert}
36949 command.
36950 @item python
36951 Indicates Python scripting support, Python-based
36952 pretty-printing commands, and possible presence of the
36953 @samp{display_hint} field in the output of @code{-var-list-children}
36954 @item thread-info
36955 Indicates support for the @code{-thread-info} command.
36956 @item data-read-memory-bytes
36957 Indicates support for the @code{-data-read-memory-bytes} and the
36958 @code{-data-write-memory-bytes} commands.
36959 @item breakpoint-notifications
36960 Indicates that changes to breakpoints and breakpoints created via the
36961 CLI will be announced via async records.
36962 @item ada-task-info
36963 Indicates support for the @code{-ada-task-info} command.
36964 @item language-option
36965 Indicates that all @sc{gdb/mi} commands accept the @option{--language}
36966 option (@pxref{Context management}).
36967 @item info-gdb-mi-command
36968 Indicates support for the @code{-info-gdb-mi-command} command.
36969 @item undefined-command-error-code
36970 Indicates support for the "undefined-command" error code in error result
36971 records, produced when trying to execute an undefined @sc{gdb/mi} command
36972 (@pxref{GDB/MI Result Records}).
36973 @item exec-run-start-option
36974 Indicates that the @code{-exec-run} command supports the @option{--start}
36975 option (@pxref{GDB/MI Program Execution}).
36976 @item data-disassemble-a-option
36977 Indicates that the @code{-data-disassemble} command supports the @option{-a}
36978 option (@pxref{GDB/MI Data Manipulation}).
36979 @end ftable
36981 @subheading The @code{-list-target-features} Command
36982 @findex -list-target-features
36984 Returns a list of particular features that are supported by the
36985 target.  Those features affect the permitted MI commands, but 
36986 unlike the features reported by the @code{-list-features} command, the
36987 features depend on which target GDB is using at the moment.  Whenever
36988 a target can change, due to commands such as @code{-target-select},
36989 @code{-target-attach} or @code{-exec-run}, the list of target features
36990 may change, and the frontend should obtain it again.
36991 Example output:
36993 @smallexample
36994 (gdb) -list-target-features
36995 ^done,result=["async"]
36996 @end smallexample
36998 The current list of features is:
37000 @table @samp
37001 @item async
37002 Indicates that the target is capable of asynchronous command
37003 execution, which means that @value{GDBN} will accept further commands
37004 while the target is running.
37006 @item reverse
37007 Indicates that the target is capable of reverse execution.
37008 @xref{Reverse Execution}, for more information.
37010 @end table
37012 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37013 @node GDB/MI Miscellaneous Commands
37014 @section Miscellaneous @sc{gdb/mi} Commands
37016 @c @subheading -gdb-complete
37018 @subheading The @code{-gdb-exit} Command
37019 @findex -gdb-exit
37021 @subsubheading Synopsis
37023 @smallexample
37024  -gdb-exit
37025 @end smallexample
37027 Exit @value{GDBN} immediately.
37029 @subsubheading @value{GDBN} Command
37031 Approximately corresponds to @samp{quit}.
37033 @subsubheading Example
37035 @smallexample
37036 (gdb)
37037 -gdb-exit
37038 ^exit
37039 @end smallexample
37042 @ignore
37043 @subheading The @code{-exec-abort} Command
37044 @findex -exec-abort
37046 @subsubheading Synopsis
37048 @smallexample
37049  -exec-abort
37050 @end smallexample
37052 Kill the inferior running program.
37054 @subsubheading @value{GDBN} Command
37056 The corresponding @value{GDBN} command is @samp{kill}.
37058 @subsubheading Example
37059 N.A.
37060 @end ignore
37063 @subheading The @code{-gdb-set} Command
37064 @findex -gdb-set
37066 @subsubheading Synopsis
37068 @smallexample
37069  -gdb-set
37070 @end smallexample
37072 Set an internal @value{GDBN} variable.
37073 @c IS THIS A DOLLAR VARIABLE? OR SOMETHING LIKE ANNOTATE ?????
37075 @subsubheading @value{GDBN} Command
37077 The corresponding @value{GDBN} command is @samp{set}.
37079 @subsubheading Example
37081 @smallexample
37082 (gdb)
37083 -gdb-set $foo=3
37084 ^done
37085 (gdb)
37086 @end smallexample
37089 @subheading The @code{-gdb-show} Command
37090 @findex -gdb-show
37092 @subsubheading Synopsis
37094 @smallexample
37095  -gdb-show
37096 @end smallexample
37098 Show the current value of a @value{GDBN} variable.
37100 @subsubheading @value{GDBN} Command
37102 The corresponding @value{GDBN} command is @samp{show}.
37104 @subsubheading Example
37106 @smallexample
37107 (gdb)
37108 -gdb-show annotate
37109 ^done,value="0"
37110 (gdb)
37111 @end smallexample
37113 @c @subheading -gdb-source
37116 @subheading The @code{-gdb-version} Command
37117 @findex -gdb-version
37119 @subsubheading Synopsis
37121 @smallexample
37122  -gdb-version
37123 @end smallexample
37125 Show version information for @value{GDBN}.  Used mostly in testing.
37127 @subsubheading @value{GDBN} Command
37129 The @value{GDBN} equivalent is @samp{show version}.  @value{GDBN} by
37130 default shows this information when you start an interactive session.
37132 @subsubheading Example
37134 @c This example modifies the actual output from GDB to avoid overfull
37135 @c box in TeX.
37136 @smallexample
37137 (gdb)
37138 -gdb-version
37139 ~GNU gdb 5.2.1
37140 ~Copyright 2000 Free Software Foundation, Inc.
37141 ~GDB is free software, covered by the GNU General Public License, and
37142 ~you are welcome to change it and/or distribute copies of it under
37143 ~ certain conditions.
37144 ~Type "show copying" to see the conditions.
37145 ~There is absolutely no warranty for GDB.  Type "show warranty" for
37146 ~ details.
37147 ~This GDB was configured as
37148  "--host=sparc-sun-solaris2.5.1 --target=ppc-eabi".
37149 ^done
37150 (gdb)
37151 @end smallexample
37153 @subheading The @code{-list-thread-groups} Command
37154 @findex -list-thread-groups
37156 @subheading Synopsis
37158 @smallexample
37159 -list-thread-groups [ --available ] [ --recurse 1 ] [ @var{group} ... ]
37160 @end smallexample
37162 Lists thread groups (@pxref{Thread groups}).  When a single thread
37163 group is passed as the argument, lists the children of that group.
37164 When several thread group are passed, lists information about those
37165 thread groups.  Without any parameters, lists information about all
37166 top-level thread groups.
37168 Normally, thread groups that are being debugged are reported.
37169 With the @samp{--available} option, @value{GDBN} reports thread groups
37170 available on the target.
37172 The output of this command may have either a @samp{threads} result or
37173 a @samp{groups} result.  The @samp{thread} result has a list of tuples
37174 as value, with each tuple describing a thread (@pxref{GDB/MI Thread
37175 Information}).  The @samp{groups} result has a list of tuples as value,
37176 each tuple describing a thread group.  If top-level groups are
37177 requested (that is, no parameter is passed), or when several groups
37178 are passed, the output always has a @samp{groups} result.  The format
37179 of the @samp{group} result is described below.
37181 To reduce the number of roundtrips it's possible to list thread groups
37182 together with their children, by passing the @samp{--recurse} option
37183 and the recursion depth.  Presently, only recursion depth of 1 is
37184 permitted.  If this option is present, then every reported thread group
37185 will also include its children, either as @samp{group} or
37186 @samp{threads} field.
37188 In general, any combination of option and parameters is permitted, with
37189 the following caveats:
37191 @itemize @bullet
37192 @item
37193 When a single thread group is passed, the output will typically
37194 be the @samp{threads} result.  Because threads may not contain
37195 anything, the @samp{recurse} option will be ignored.
37197 @item
37198 When the @samp{--available} option is passed, limited information may
37199 be available.  In particular, the list of threads of a process might
37200 be inaccessible.  Further, specifying specific thread groups might
37201 not give any performance advantage over listing all thread groups.
37202 The frontend should assume that @samp{-list-thread-groups --available}
37203 is always an expensive operation and cache the results.
37205 @end itemize
37207 The @samp{groups} result is a list of tuples, where each tuple may
37208 have the following fields:
37210 @table @code
37211 @item id
37212 Identifier of the thread group.  This field is always present.
37213 The identifier is an opaque string; frontends should not try to
37214 convert it to an integer, even though it might look like one.
37216 @item type
37217 The type of the thread group.  At present, only @samp{process} is a
37218 valid type.
37220 @item pid
37221 The target-specific process identifier.  This field is only present
37222 for thread groups of type @samp{process} and only if the process exists.
37224 @item exit-code
37225 The exit code of this group's last exited thread, formatted in octal.
37226 This field is only present for thread groups of type @samp{process} and
37227 only if the process is not running.
37229 @item num_children
37230 The number of children this thread group has.  This field may be
37231 absent for an available thread group.
37233 @item threads
37234 This field has a list of tuples as value, each tuple describing a
37235 thread.  It may be present if the @samp{--recurse} option is
37236 specified, and it's actually possible to obtain the threads.
37238 @item cores
37239 This field is a list of integers, each identifying a core that one
37240 thread of the group is running on.  This field may be absent if
37241 such information is not available.
37243 @item executable
37244 The name of the executable file that corresponds to this thread group.
37245 The field is only present for thread groups of type @samp{process},
37246 and only if there is a corresponding executable file.
37248 @end table
37250 @subheading Example
37252 @smallexample
37253 (@value{GDBP})
37254 -list-thread-groups
37255 ^done,groups=[@{id="17",type="process",pid="yyy",num_children="2"@}]
37256 -list-thread-groups 17
37257 ^done,threads=[@{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
37258    frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",args=[]@},state="running"@},
37259 @{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
37260    frame=@{level="0",addr="0x0804891f",func="foo",args=[@{name="i",value="10"@}],
37261            file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},state="running"@}]]
37262 -list-thread-groups --available
37263 ^done,groups=[@{id="17",type="process",pid="yyy",num_children="2",cores=[1,2]@}]
37264 -list-thread-groups --available --recurse 1
37265  ^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
37266                 threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
37267                          @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},..]
37268 -list-thread-groups --available --recurse 1 17 18
37269 ^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
37270                threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
37271                         @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},...]
37272 @end smallexample
37274 @subheading The @code{-info-os} Command
37275 @findex -info-os
37277 @subsubheading Synopsis
37279 @smallexample
37280 -info-os [ @var{type} ]
37281 @end smallexample
37283 If no argument is supplied, the command returns a table of available
37284 operating-system-specific information types.  If one of these types is
37285 supplied as an argument @var{type}, then the command returns a table
37286 of data of that type.
37288 The types of information available depend on the target operating
37289 system.
37291 @subsubheading @value{GDBN} Command
37293 The corresponding @value{GDBN} command is @samp{info os}.
37295 @subsubheading Example
37297 When run on a @sc{gnu}/Linux system, the output will look something
37298 like this:
37300 @smallexample
37301 (@value{GDBP})
37302 -info-os
37303 ^done,OSDataTable=@{nr_rows="10",nr_cols="3",
37304 hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="Type"@},
37305      @{width="10",alignment="-1",col_name="col1",colhdr="Description"@},
37306      @{width="10",alignment="-1",col_name="col2",colhdr="Title"@}],
37307 body=[item=@{col0="cpus",col1="Listing of all cpus/cores on the system",
37308             col2="CPUs"@},
37309       item=@{col0="files",col1="Listing of all file descriptors",
37310             col2="File descriptors"@},
37311       item=@{col0="modules",col1="Listing of all loaded kernel modules",
37312             col2="Kernel modules"@},
37313       item=@{col0="msg",col1="Listing of all message queues",
37314             col2="Message queues"@},
37315       item=@{col0="processes",col1="Listing of all processes",
37316             col2="Processes"@},
37317       item=@{col0="procgroups",col1="Listing of all process groups",
37318             col2="Process groups"@},
37319       item=@{col0="semaphores",col1="Listing of all semaphores",
37320             col2="Semaphores"@},
37321       item=@{col0="shm",col1="Listing of all shared-memory regions",
37322             col2="Shared-memory regions"@},
37323       item=@{col0="sockets",col1="Listing of all internet-domain sockets",
37324             col2="Sockets"@},
37325       item=@{col0="threads",col1="Listing of all threads",
37326             col2="Threads"@}]
37327 (@value{GDBP})
37328 -info-os processes
37329 ^done,OSDataTable=@{nr_rows="190",nr_cols="4",
37330 hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="pid"@},
37331      @{width="10",alignment="-1",col_name="col1",colhdr="user"@},
37332      @{width="10",alignment="-1",col_name="col2",colhdr="command"@},
37333      @{width="10",alignment="-1",col_name="col3",colhdr="cores"@}],
37334 body=[item=@{col0="1",col1="root",col2="/sbin/init",col3="0"@},
37335       item=@{col0="2",col1="root",col2="[kthreadd]",col3="1"@},
37336       item=@{col0="3",col1="root",col2="[ksoftirqd/0]",col3="0"@},
37337       ...
37338       item=@{col0="26446",col1="stan",col2="bash",col3="0"@},
37339       item=@{col0="28152",col1="stan",col2="bash",col3="1"@}]@}
37340 (@value{GDBP})
37341 @end smallexample
37343 (Note that the MI output here includes a @code{"Title"} column that
37344 does not appear in command-line @code{info os}; this column is useful
37345 for MI clients that want to enumerate the types of data, such as in a
37346 popup menu, but is needless clutter on the command line, and
37347 @code{info os} omits it.)
37349 @subheading The @code{-add-inferior} Command
37350 @findex -add-inferior
37352 @subheading Synopsis
37354 @smallexample
37355 -add-inferior [ --no-connection ]
37356 @end smallexample
37358 Creates a new inferior (@pxref{Inferiors Connections and Programs}).  The created
37359 inferior is not associated with any executable.  Such association may
37360 be established with the @samp{-file-exec-and-symbols} command
37361 (@pxref{GDB/MI File Commands}).
37363 By default, the new inferior begins connected to the same target
37364 connection as the current inferior.  For example, if the current
37365 inferior was connected to @code{gdbserver} with @code{target remote},
37366 then the new inferior will be connected to the same @code{gdbserver}
37367 instance.  The @samp{--no-connection} option starts the new inferior
37368 with no connection yet.  You can then for example use the
37369 @code{-target-select remote} command to connect to some other
37370 @code{gdbserver} instance, use @code{-exec-run} to spawn a local
37371 program, etc.
37373 The command response always has a field, @var{inferior}, whose value
37374 is the identifier of the thread group corresponding to the new
37375 inferior.
37377 An additional section field, @var{connection}, is optional.  This
37378 field will only exist if the new inferior has a target connection.  If
37379 this field exists, then its value will be a tuple containing the
37380 following fields:
37382 @table @samp
37383 @item number
37384 The number of the connection used for the new inferior.
37386 @item name
37387 The name of the connection type used for the new inferior.
37388 @end table
37390 @subheading @value{GDBN} Command
37392 The corresponding @value{GDBN} command is @samp{add-inferior}
37393 (@pxref{add_inferior_cli,,@samp{add-inferior}}).
37395 @subheading Example
37397 @smallexample
37398 (@value{GDBP})
37399 -add-inferior
37400 ^done,inferior="i3"
37401 @end smallexample
37403 @subheading The @code{-interpreter-exec} Command
37404 @findex -interpreter-exec
37406 @subheading Synopsis
37408 @smallexample
37409 -interpreter-exec @var{interpreter} @var{command}
37410 @end smallexample
37411 @anchor{-interpreter-exec} 
37413 Execute the specified @var{command} in the given @var{interpreter}.
37415 @subheading @value{GDBN} Command
37417 The corresponding @value{GDBN} command is @samp{interpreter-exec}.
37419 @subheading Example
37421 @smallexample
37422 (gdb)
37423 -interpreter-exec console "break main"
37424 &"During symbol reading, couldn't parse type; debugger out of date?.\n"
37425 &"During symbol reading, bad structure-type format.\n"
37426 ~"Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n"
37427 ^done
37428 (gdb)
37429 @end smallexample
37431 @subheading The @code{-inferior-tty-set} Command
37432 @findex -inferior-tty-set
37434 @subheading Synopsis
37436 @smallexample
37437 -inferior-tty-set /dev/pts/1
37438 @end smallexample
37440 Set terminal for future runs of the program being debugged.
37442 @subheading @value{GDBN} Command
37444 The corresponding @value{GDBN} command is @samp{set inferior-tty} /dev/pts/1.
37446 @subheading Example
37448 @smallexample
37449 (gdb)
37450 -inferior-tty-set /dev/pts/1
37451 ^done
37452 (gdb)
37453 @end smallexample
37455 @subheading The @code{-inferior-tty-show} Command
37456 @findex -inferior-tty-show
37458 @subheading Synopsis
37460 @smallexample
37461 -inferior-tty-show
37462 @end smallexample
37464 Show terminal for future runs of program being debugged.
37466 @subheading @value{GDBN} Command
37468 The corresponding @value{GDBN} command is @samp{show inferior-tty}.
37470 @subheading Example
37472 @smallexample
37473 (gdb)
37474 -inferior-tty-set /dev/pts/1
37475 ^done
37476 (gdb)
37477 -inferior-tty-show
37478 ^done,inferior_tty_terminal="/dev/pts/1"
37479 (gdb)
37480 @end smallexample
37482 @subheading The @code{-enable-timings} Command
37483 @findex -enable-timings
37485 @subheading Synopsis
37487 @smallexample
37488 -enable-timings [yes | no]
37489 @end smallexample
37491 Toggle the printing of the wallclock, user and system times for an MI
37492 command as a field in its output.  This command is to help frontend
37493 developers optimize the performance of their code.  No argument is
37494 equivalent to @samp{yes}.
37496 @subheading @value{GDBN} Command
37498 No equivalent.
37500 @subheading Example
37502 @smallexample
37503 (gdb)
37504 -enable-timings
37505 ^done
37506 (gdb)
37507 -break-insert main
37508 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
37509 addr="0x080484ed",func="main",file="myprog.c",
37510 fullname="/home/nickrob/myprog.c",line="73",thread-groups=["i1"],
37511 times="0"@},
37512 time=@{wallclock="0.05185",user="0.00800",system="0.00000"@}
37513 (gdb)
37514 -enable-timings no
37515 ^done
37516 (gdb)
37517 -exec-run
37518 ^running
37519 (gdb)
37520 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
37521 frame=@{addr="0x080484ed",func="main",args=[@{name="argc",value="1"@},
37522 @{name="argv",value="0xbfb60364"@}],file="myprog.c",
37523 fullname="/home/nickrob/myprog.c",line="73",arch="i386:x86_64"@}
37524 (gdb)
37525 @end smallexample
37527 @subheading The @code{-complete} Command
37528 @findex -complete
37530 @subheading Synopsis
37532 @smallexample
37533 -complete @var{command}
37534 @end smallexample
37536 Show a list of completions for partially typed CLI @var{command}.
37538 This command is intended for @sc{gdb/mi} frontends that cannot use two separate
37539 CLI and MI channels --- for example: because of lack of PTYs like on Windows or
37540 because @value{GDBN} is used remotely via a SSH connection.
37542 @subheading Result
37544 The result consists of two or three fields:
37546 @table @samp
37547 @item completion
37548 This field contains the completed @var{command}.  If @var{command}
37549 has no known completions, this field is omitted.
37551 @item matches
37552 This field contains a (possibly empty) array of matches.  It is always present.
37554 @item max_completions_reached
37555 This field contains @code{1} if number of known completions is above
37556 @code{max-completions} limit (@pxref{Completion}), otherwise it contains
37557 @code{0}.  It is always present.
37559 @end table
37561 @subheading @value{GDBN} Command
37563 The corresponding @value{GDBN} command is @samp{complete}.
37565 @subheading Example
37567 @smallexample
37568 (gdb)
37569 -complete br
37570 ^done,completion="break",
37571       matches=["break","break-range"],
37572       max_completions_reached="0"
37573 (gdb)
37574 -complete "b ma"
37575 ^done,completion="b ma",
37576       matches=["b madvise","b main"],max_completions_reached="0"
37577 (gdb)
37578 -complete "b push_b"
37579 ^done,completion="b push_back(",
37580       matches=[
37581        "b A::push_back(void*)",
37582        "b std::string::push_back(char)",
37583        "b std::vector<int, std::allocator<int> >::push_back(int&&)"],
37584       max_completions_reached="0"
37585 (gdb)
37586 -complete "nonexist"
37587 ^done,matches=[],max_completions_reached="0"
37588 (gdb)
37590 @end smallexample
37592 @node Annotations
37593 @chapter @value{GDBN} Annotations
37595 This chapter describes annotations in @value{GDBN}.  Annotations were
37596 designed to interface @value{GDBN} to graphical user interfaces or other
37597 similar programs which want to interact with @value{GDBN} at a
37598 relatively high level.
37600 The annotation mechanism has largely been superseded by @sc{gdb/mi}
37601 (@pxref{GDB/MI}).
37603 @ignore
37604 This is Edition @value{EDITION}, @value{DATE}.
37605 @end ignore
37607 @menu
37608 * Annotations Overview::  What annotations are; the general syntax.
37609 * Server Prefix::       Issuing a command without affecting user state.
37610 * Prompting::           Annotations marking @value{GDBN}'s need for input.
37611 * Errors::              Annotations for error messages.
37612 * Invalidation::        Some annotations describe things now invalid.
37613 * Annotations for Running::
37614                         Whether the program is running, how it stopped, etc.
37615 * Source Annotations::  Annotations describing source code.
37616 @end menu
37618 @node Annotations Overview
37619 @section What is an Annotation?
37620 @cindex annotations
37622 Annotations start with a newline character, two @samp{control-z}
37623 characters, and the name of the annotation.  If there is no additional
37624 information associated with this annotation, the name of the annotation
37625 is followed immediately by a newline.  If there is additional
37626 information, the name of the annotation is followed by a space, the
37627 additional information, and a newline.  The additional information
37628 cannot contain newline characters.
37630 Any output not beginning with a newline and two @samp{control-z}
37631 characters denotes literal output from @value{GDBN}.  Currently there is
37632 no need for @value{GDBN} to output a newline followed by two
37633 @samp{control-z} characters, but if there was such a need, the
37634 annotations could be extended with an @samp{escape} annotation which
37635 means those three characters as output.
37637 The annotation @var{level}, which is specified using the
37638 @option{--annotate} command line option (@pxref{Mode Options}), controls
37639 how much information @value{GDBN} prints together with its prompt,
37640 values of expressions, source lines, and other types of output.  Level 0
37641 is for no annotations, level 1 is for use when @value{GDBN} is run as a
37642 subprocess of @sc{gnu} Emacs, level 3 is the maximum annotation suitable
37643 for programs that control @value{GDBN}, and level 2 annotations have
37644 been made obsolete (@pxref{Limitations, , Limitations of the Annotation
37645 Interface, annotate, GDB's Obsolete Annotations}).
37647 @table @code
37648 @kindex set annotate
37649 @item set annotate @var{level}
37650 The @value{GDBN} command @code{set annotate} sets the level of
37651 annotations to the specified @var{level}.
37653 @item show annotate
37654 @kindex show annotate
37655 Show the current annotation level.
37656 @end table
37658 This chapter describes level 3 annotations.
37660 A simple example of starting up @value{GDBN} with annotations is:
37662 @smallexample
37663 $ @kbd{gdb --annotate=3}
37664 GNU gdb 6.0
37665 Copyright 2003 Free Software Foundation, Inc.
37666 GDB is free software, covered by the GNU General Public License,
37667 and you are welcome to change it and/or distribute copies of it
37668 under certain conditions.
37669 Type "show copying" to see the conditions.
37670 There is absolutely no warranty for GDB.  Type "show warranty"
37671 for details.
37672 This GDB was configured as "i386-pc-linux-gnu"
37674 ^Z^Zpre-prompt
37675 (@value{GDBP})
37676 ^Z^Zprompt
37677 @kbd{quit}
37679 ^Z^Zpost-prompt
37681 @end smallexample
37683 Here @samp{quit} is input to @value{GDBN}; the rest is output from
37684 @value{GDBN}.  The three lines beginning @samp{^Z^Z} (where @samp{^Z}
37685 denotes a @samp{control-z} character) are annotations; the rest is
37686 output from @value{GDBN}.
37688 @node Server Prefix
37689 @section The Server Prefix
37690 @cindex server prefix
37692 If you prefix a command with @samp{server } then it will not affect
37693 the command history, nor will it affect @value{GDBN}'s notion of which
37694 command to repeat if @key{RET} is pressed on a line by itself.  This
37695 means that commands can be run behind a user's back by a front-end in
37696 a transparent manner.
37698 The @code{server } prefix does not affect the recording of values into
37699 the value history; to print a value without recording it into the
37700 value history, use the @code{output} command instead of the
37701 @code{print} command.
37703 Using this prefix also disables confirmation requests
37704 (@pxref{confirmation requests}).
37706 @node Prompting
37707 @section Annotation for @value{GDBN} Input
37709 @cindex annotations for prompts
37710 When @value{GDBN} prompts for input, it annotates this fact so it is possible
37711 to know when to send output, when the output from a given command is
37712 over, etc.
37714 Different kinds of input each have a different @dfn{input type}.  Each
37715 input type has three annotations: a @code{pre-} annotation, which
37716 denotes the beginning of any prompt which is being output, a plain
37717 annotation, which denotes the end of the prompt, and then a @code{post-}
37718 annotation which denotes the end of any echo which may (or may not) be
37719 associated with the input.  For example, the @code{prompt} input type
37720 features the following annotations:
37722 @smallexample
37723 ^Z^Zpre-prompt
37724 ^Z^Zprompt
37725 ^Z^Zpost-prompt
37726 @end smallexample
37728 The input types are
37730 @table @code
37731 @findex pre-prompt annotation
37732 @findex prompt annotation
37733 @findex post-prompt annotation
37734 @item prompt
37735 When @value{GDBN} is prompting for a command (the main @value{GDBN} prompt).
37737 @findex pre-commands annotation
37738 @findex commands annotation
37739 @findex post-commands annotation
37740 @item commands
37741 When @value{GDBN} prompts for a set of commands, like in the @code{commands}
37742 command.  The annotations are repeated for each command which is input.
37744 @findex pre-overload-choice annotation
37745 @findex overload-choice annotation
37746 @findex post-overload-choice annotation
37747 @item overload-choice
37748 When @value{GDBN} wants the user to select between various overloaded functions.
37750 @findex pre-query annotation
37751 @findex query annotation
37752 @findex post-query annotation
37753 @item query
37754 When @value{GDBN} wants the user to confirm a potentially dangerous operation.
37756 @findex pre-prompt-for-continue annotation
37757 @findex prompt-for-continue annotation
37758 @findex post-prompt-for-continue annotation
37759 @item prompt-for-continue
37760 When @value{GDBN} is asking the user to press return to continue.  Note: Don't
37761 expect this to work well; instead use @code{set height 0} to disable
37762 prompting.  This is because the counting of lines is buggy in the
37763 presence of annotations.
37764 @end table
37766 @node Errors
37767 @section Errors
37768 @cindex annotations for errors, warnings and interrupts
37770 @findex quit annotation
37771 @smallexample
37772 ^Z^Zquit
37773 @end smallexample
37775 This annotation occurs right before @value{GDBN} responds to an interrupt.
37777 @findex error annotation
37778 @smallexample
37779 ^Z^Zerror
37780 @end smallexample
37782 This annotation occurs right before @value{GDBN} responds to an error.
37784 Quit and error annotations indicate that any annotations which @value{GDBN} was
37785 in the middle of may end abruptly.  For example, if a
37786 @code{value-history-begin} annotation is followed by a @code{error}, one
37787 cannot expect to receive the matching @code{value-history-end}.  One
37788 cannot expect not to receive it either, however; an error annotation
37789 does not necessarily mean that @value{GDBN} is immediately returning all the way
37790 to the top level.
37792 @findex error-begin annotation
37793 A quit or error annotation may be preceded by
37795 @smallexample
37796 ^Z^Zerror-begin
37797 @end smallexample
37799 Any output between that and the quit or error annotation is the error
37800 message.
37802 Warning messages are not yet annotated.
37803 @c If we want to change that, need to fix warning(), type_error(),
37804 @c range_error(), and possibly other places.
37806 @node Invalidation
37807 @section Invalidation Notices
37809 @cindex annotations for invalidation messages
37810 The following annotations say that certain pieces of state may have
37811 changed.
37813 @table @code
37814 @findex frames-invalid annotation
37815 @item ^Z^Zframes-invalid
37817 The frames (for example, output from the @code{backtrace} command) may
37818 have changed.
37820 @findex breakpoints-invalid annotation
37821 @item ^Z^Zbreakpoints-invalid
37823 The breakpoints may have changed.  For example, the user just added or
37824 deleted a breakpoint.
37825 @end table
37827 @node Annotations for Running
37828 @section Running the Program
37829 @cindex annotations for running programs
37831 @findex starting annotation
37832 @findex stopping annotation
37833 When the program starts executing due to a @value{GDBN} command such as
37834 @code{step} or @code{continue},
37836 @smallexample
37837 ^Z^Zstarting
37838 @end smallexample
37840 is output.  When the program stops,
37842 @smallexample
37843 ^Z^Zstopped
37844 @end smallexample
37846 is output.  Before the @code{stopped} annotation, a variety of
37847 annotations describe how the program stopped.
37849 @table @code
37850 @findex exited annotation
37851 @item ^Z^Zexited @var{exit-status}
37852 The program exited, and @var{exit-status} is the exit status (zero for
37853 successful exit, otherwise nonzero).
37855 @findex signalled annotation
37856 @findex signal-name annotation
37857 @findex signal-name-end annotation
37858 @findex signal-string annotation
37859 @findex signal-string-end annotation
37860 @item ^Z^Zsignalled
37861 The program exited with a signal.  After the @code{^Z^Zsignalled}, the
37862 annotation continues:
37864 @smallexample
37865 @var{intro-text}
37866 ^Z^Zsignal-name
37867 @var{name}
37868 ^Z^Zsignal-name-end
37869 @var{middle-text}
37870 ^Z^Zsignal-string
37871 @var{string}
37872 ^Z^Zsignal-string-end
37873 @var{end-text}
37874 @end smallexample
37876 @noindent
37877 where @var{name} is the name of the signal, such as @code{SIGILL} or
37878 @code{SIGSEGV}, and @var{string} is the explanation of the signal, such
37879 as @code{Illegal Instruction} or @code{Segmentation fault}.  The arguments
37880 @var{intro-text}, @var{middle-text}, and @var{end-text} are for the
37881 user's benefit and have no particular format.
37883 @findex signal annotation
37884 @item ^Z^Zsignal
37885 The syntax of this annotation is just like @code{signalled}, but @value{GDBN} is
37886 just saying that the program received the signal, not that it was
37887 terminated with it.
37889 @findex breakpoint annotation
37890 @item ^Z^Zbreakpoint @var{number}
37891 The program hit breakpoint number @var{number}.
37893 @findex watchpoint annotation
37894 @item ^Z^Zwatchpoint @var{number}
37895 The program hit watchpoint number @var{number}.
37896 @end table
37898 @node Source Annotations
37899 @section Displaying Source
37900 @cindex annotations for source display
37902 @findex source annotation
37903 The following annotation is used instead of displaying source code:
37905 @smallexample
37906 ^Z^Zsource @var{filename}:@var{line}:@var{character}:@var{middle}:@var{addr}
37907 @end smallexample
37909 where @var{filename} is an absolute file name indicating which source
37910 file, @var{line} is the line number within that file (where 1 is the
37911 first line in the file), @var{character} is the character position
37912 within the file (where 0 is the first character in the file) (for most
37913 debug formats this will necessarily point to the beginning of a line),
37914 @var{middle} is @samp{middle} if @var{addr} is in the middle of the
37915 line, or @samp{beg} if @var{addr} is at the beginning of the line, and
37916 @var{addr} is the address in the target program associated with the
37917 source which is being displayed.  The @var{addr} is in the form @samp{0x}
37918 followed by one or more lowercase hex digits (note that this does not
37919 depend on the language).
37921 @node JIT Interface
37922 @chapter JIT Compilation Interface
37923 @cindex just-in-time compilation
37924 @cindex JIT compilation interface
37926 This chapter documents @value{GDBN}'s @dfn{just-in-time} (JIT) compilation
37927 interface.  A JIT compiler is a program or library that generates native
37928 executable code at runtime and executes it, usually in order to achieve good
37929 performance while maintaining platform independence. 
37931 Programs that use JIT compilation are normally difficult to debug because
37932 portions of their code are generated at runtime, instead of being loaded from
37933 object files, which is where @value{GDBN} normally finds the program's symbols
37934 and debug information.  In order to debug programs that use JIT compilation,
37935 @value{GDBN} has an interface that allows the program to register in-memory
37936 symbol files with @value{GDBN} at runtime.
37938 If you are using @value{GDBN} to debug a program that uses this interface, then
37939 it should work transparently so long as you have not stripped the binary.  If
37940 you are developing a JIT compiler, then the interface is documented in the rest
37941 of this chapter.  At this time, the only known client of this interface is the
37942 LLVM JIT.
37944 Broadly speaking, the JIT interface mirrors the dynamic loader interface.  The
37945 JIT compiler communicates with @value{GDBN} by writing data into a global
37946 variable and calling a function at a well-known symbol.  When @value{GDBN}
37947 attaches, it reads a linked list of symbol files from the global variable to
37948 find existing code, and puts a breakpoint in the function so that it can find
37949 out about additional code.
37951 @menu
37952 * Declarations::                Relevant C struct declarations
37953 * Registering Code::            Steps to register code
37954 * Unregistering Code::          Steps to unregister code
37955 * Custom Debug Info::           Emit debug information in a custom format
37956 @end menu
37958 @node Declarations
37959 @section JIT Declarations
37961 These are the relevant struct declarations that a C program should include to
37962 implement the interface:
37964 @smallexample
37965 typedef enum
37967   JIT_NOACTION = 0,
37968   JIT_REGISTER_FN,
37969   JIT_UNREGISTER_FN
37970 @} jit_actions_t;
37972 struct jit_code_entry
37974   struct jit_code_entry *next_entry;
37975   struct jit_code_entry *prev_entry;
37976   const char *symfile_addr;
37977   uint64_t symfile_size;
37980 struct jit_descriptor
37982   uint32_t version;
37983   /* This type should be jit_actions_t, but we use uint32_t
37984      to be explicit about the bitwidth.  */
37985   uint32_t action_flag;
37986   struct jit_code_entry *relevant_entry;
37987   struct jit_code_entry *first_entry;
37990 /* GDB puts a breakpoint in this function.  */
37991 void __attribute__((noinline)) __jit_debug_register_code() @{ @};
37993 /* Make sure to specify the version statically, because the
37994    debugger may check the version before we can set it.  */
37995 struct jit_descriptor __jit_debug_descriptor = @{ 1, 0, 0, 0 @};
37996 @end smallexample
37998 If the JIT is multi-threaded, then it is important that the JIT synchronize any
37999 modifications to this global data properly, which can easily be done by putting
38000 a global mutex around modifications to these structures.
38002 @node Registering Code
38003 @section Registering Code
38005 To register code with @value{GDBN}, the JIT should follow this protocol:
38007 @itemize @bullet
38008 @item
38009 Generate an object file in memory with symbols and other desired debug
38010 information.  The file must include the virtual addresses of the sections.
38012 @item
38013 Create a code entry for the file, which gives the start and size of the symbol
38014 file.
38016 @item
38017 Add it to the linked list in the JIT descriptor.
38019 @item
38020 Point the relevant_entry field of the descriptor at the entry.
38022 @item
38023 Set @code{action_flag} to @code{JIT_REGISTER} and call
38024 @code{__jit_debug_register_code}.
38025 @end itemize
38027 When @value{GDBN} is attached and the breakpoint fires, @value{GDBN} uses the
38028 @code{relevant_entry} pointer so it doesn't have to walk the list looking for
38029 new code.  However, the linked list must still be maintained in order to allow
38030 @value{GDBN} to attach to a running process and still find the symbol files.
38032 @node Unregistering Code
38033 @section Unregistering Code
38035 If code is freed, then the JIT should use the following protocol:
38037 @itemize @bullet
38038 @item
38039 Remove the code entry corresponding to the code from the linked list.
38041 @item
38042 Point the @code{relevant_entry} field of the descriptor at the code entry.
38044 @item
38045 Set @code{action_flag} to @code{JIT_UNREGISTER} and call
38046 @code{__jit_debug_register_code}.
38047 @end itemize
38049 If the JIT frees or recompiles code without unregistering it, then @value{GDBN}
38050 and the JIT will leak the memory used for the associated symbol files.
38052 @node Custom Debug Info
38053 @section Custom Debug Info
38054 @cindex custom JIT debug info
38055 @cindex JIT debug info reader
38057 Generating debug information in platform-native file formats (like ELF
38058 or COFF) may be an overkill for JIT compilers; especially if all the
38059 debug info is used for is displaying a meaningful backtrace.  The
38060 issue can be resolved by having the JIT writers decide on a debug info
38061 format and also provide a reader that parses the debug info generated
38062 by the JIT compiler.  This section gives a brief overview on writing
38063 such a parser.  More specific details can be found in the source file
38064 @file{gdb/jit-reader.in}, which is also installed as a header at
38065 @file{@var{includedir}/gdb/jit-reader.h} for easy inclusion.
38067 The reader is implemented as a shared object (so this functionality is
38068 not available on platforms which don't allow loading shared objects at
38069 runtime).  Two @value{GDBN} commands, @code{jit-reader-load} and
38070 @code{jit-reader-unload} are provided, to be used to load and unload
38071 the readers from a preconfigured directory.  Once loaded, the shared
38072 object is used the parse the debug information emitted by the JIT
38073 compiler.
38075 @menu
38076 * Using JIT Debug Info Readers::       How to use supplied readers correctly
38077 * Writing JIT Debug Info Readers::     Creating a debug-info reader
38078 @end menu
38080 @node Using JIT Debug Info Readers
38081 @subsection Using JIT Debug Info Readers
38082 @kindex jit-reader-load
38083 @kindex jit-reader-unload
38085 Readers can be loaded and unloaded using the @code{jit-reader-load}
38086 and @code{jit-reader-unload} commands.
38088 @table @code
38089 @item jit-reader-load @var{reader}
38090 Load the JIT reader named @var{reader}, which is a shared
38091 object specified as either an absolute or a relative file name.  In
38092 the latter case, @value{GDBN} will try to load the reader from a
38093 pre-configured directory, usually @file{@var{libdir}/gdb/} on a UNIX
38094 system (here @var{libdir} is the system library directory, often
38095 @file{/usr/local/lib}).
38097 Only one reader can be active at a time; trying to load a second
38098 reader when one is already loaded will result in @value{GDBN}
38099 reporting an error.  A new JIT reader can be loaded by first unloading
38100 the current one using @code{jit-reader-unload} and then invoking
38101 @code{jit-reader-load}.
38103 @item jit-reader-unload
38104 Unload the currently loaded JIT reader.
38106 @end table
38108 @node Writing JIT Debug Info Readers
38109 @subsection Writing JIT Debug Info Readers
38110 @cindex writing JIT debug info readers
38112 As mentioned, a reader is essentially a shared object conforming to a
38113 certain ABI.  This ABI is described in @file{jit-reader.h}.
38115 @file{jit-reader.h} defines the structures, macros and functions
38116 required to write a reader.  It is installed (along with
38117 @value{GDBN}), in @file{@var{includedir}/gdb} where @var{includedir} is
38118 the system include directory.
38120 Readers need to be released under a GPL compatible license.  A reader
38121 can be declared as released under such a license by placing the macro
38122 @code{GDB_DECLARE_GPL_COMPATIBLE_READER} in a source file.
38124 The entry point for readers is the symbol @code{gdb_init_reader},
38125 which is expected to be a function with the prototype
38127 @findex gdb_init_reader
38128 @smallexample
38129 extern struct gdb_reader_funcs *gdb_init_reader (void);
38130 @end smallexample
38132 @cindex @code{struct gdb_reader_funcs}
38134 @code{struct gdb_reader_funcs} contains a set of pointers to callback
38135 functions.  These functions are executed to read the debug info
38136 generated by the JIT compiler (@code{read}), to unwind stack frames
38137 (@code{unwind}) and to create canonical frame IDs
38138 (@code{get_frame_id}).  It also has a callback that is called when the
38139 reader is being unloaded (@code{destroy}).  The struct looks like this
38141 @smallexample
38142 struct gdb_reader_funcs
38144   /* Must be set to GDB_READER_INTERFACE_VERSION.  */
38145   int reader_version;
38147   /* For use by the reader.  */
38148   void *priv_data;
38150   gdb_read_debug_info *read;
38151   gdb_unwind_frame *unwind;
38152   gdb_get_frame_id *get_frame_id;
38153   gdb_destroy_reader *destroy;
38155 @end smallexample
38157 @cindex @code{struct gdb_symbol_callbacks}
38158 @cindex @code{struct gdb_unwind_callbacks}
38160 The callbacks are provided with another set of callbacks by
38161 @value{GDBN} to do their job.  For @code{read}, these callbacks are
38162 passed in a @code{struct gdb_symbol_callbacks} and for @code{unwind}
38163 and @code{get_frame_id}, in a @code{struct gdb_unwind_callbacks}.
38164 @code{struct gdb_symbol_callbacks} has callbacks to create new object
38165 files and new symbol tables inside those object files.  @code{struct
38166 gdb_unwind_callbacks} has callbacks to read registers off the current
38167 frame and to write out the values of the registers in the previous
38168 frame.  Both have a callback (@code{target_read}) to read bytes off the
38169 target's address space.
38171 @node In-Process Agent
38172 @chapter In-Process Agent
38173 @cindex debugging agent
38174 The traditional debugging model is conceptually low-speed, but works fine,
38175 because most bugs can be reproduced in debugging-mode execution.  However,
38176 as multi-core or many-core processors are becoming mainstream, and
38177 multi-threaded programs become more and more popular, there should be more
38178 and more bugs that only manifest themselves at normal-mode execution, for
38179 example, thread races, because debugger's interference with the program's
38180 timing may conceal the bugs.  On the other hand, in some applications,
38181 it is not feasible for the debugger to interrupt the program's execution
38182 long enough for the developer to learn anything helpful about its behavior.
38183 If the program's correctness depends on its real-time behavior, delays
38184 introduced by a debugger might cause the program to fail, even when the
38185 code itself is correct.  It is useful to be able to observe the program's
38186 behavior without interrupting it.
38188 Therefore, traditional debugging model is too intrusive to reproduce
38189 some bugs.  In order to reduce the interference with the program, we can
38190 reduce the number of operations performed by debugger.  The
38191 @dfn{In-Process Agent}, a shared library, is running within the same
38192 process with inferior, and is able to perform some debugging operations
38193 itself.  As a result, debugger is only involved when necessary, and
38194 performance of debugging can be improved accordingly.  Note that
38195 interference with program can be reduced but can't be removed completely,
38196 because the in-process agent will still stop or slow down the program.
38198 The in-process agent can interpret and execute Agent Expressions
38199 (@pxref{Agent Expressions}) during performing debugging operations.  The
38200 agent expressions can be used for different purposes, such as collecting
38201 data in tracepoints, and condition evaluation in breakpoints.
38203 @anchor{Control Agent}
38204 You can control whether the in-process agent is used as an aid for
38205 debugging with the following commands:
38207 @table @code
38208 @kindex set agent on
38209 @item set agent on
38210 Causes the in-process agent to perform some operations on behalf of the
38211 debugger.  Just which operations requested by the user will be done
38212 by the in-process agent depends on the its capabilities.  For example,
38213 if you request to evaluate breakpoint conditions in the in-process agent,
38214 and the in-process agent has such capability as well, then breakpoint
38215 conditions will be evaluated in the in-process agent.
38217 @kindex set agent off
38218 @item set agent off
38219 Disables execution of debugging operations by the in-process agent.  All
38220 of the operations will be performed by @value{GDBN}.
38222 @kindex show agent
38223 @item show agent
38224 Display the current setting of execution of debugging operations by
38225 the in-process agent.
38226 @end table
38228 @menu
38229 * In-Process Agent Protocol::
38230 @end menu
38232 @node In-Process Agent Protocol
38233 @section In-Process Agent Protocol
38234 @cindex in-process agent protocol
38236 The in-process agent is able to communicate with both @value{GDBN} and
38237 GDBserver (@pxref{In-Process Agent}).  This section documents the protocol
38238 used for communications between @value{GDBN} or GDBserver and the IPA.
38239 In general, @value{GDBN} or GDBserver sends commands
38240 (@pxref{IPA Protocol Commands}) and data to in-process agent, and then
38241 in-process agent replies back with the return result of the command, or
38242 some other information.  The data sent to in-process agent is composed
38243 of primitive data types, such as 4-byte or 8-byte type, and composite
38244 types, which are called objects (@pxref{IPA Protocol Objects}).
38246 @menu
38247 * IPA Protocol Objects::
38248 * IPA Protocol Commands::
38249 @end menu
38251 @node IPA Protocol Objects
38252 @subsection IPA Protocol Objects
38253 @cindex ipa protocol objects
38255 The commands sent to and results received from agent may contain some
38256 complex data types called @dfn{objects}.
38258 The in-process agent is running on the same machine with @value{GDBN}
38259 or GDBserver, so it doesn't have to handle as much differences between
38260 two ends as remote protocol (@pxref{Remote Protocol}) tries to handle.
38261 However, there are still some differences of two ends in two processes:
38263 @enumerate
38264 @item
38265 word size.  On some 64-bit machines, @value{GDBN} or GDBserver can be
38266 compiled as a 64-bit executable, while in-process agent is a 32-bit one.
38267 @item
38268 ABI.  Some machines may have multiple types of ABI, @value{GDBN} or
38269 GDBserver is compiled with one, and in-process agent is compiled with
38270 the other one.
38271 @end enumerate
38273 Here are the IPA Protocol Objects:
38275 @enumerate
38276 @item
38277 agent expression object.  It represents an agent expression
38278 (@pxref{Agent Expressions}).
38279 @anchor{agent expression object}
38280 @item
38281 tracepoint action object.  It represents a tracepoint action
38282 (@pxref{Tracepoint Actions,,Tracepoint Action Lists}) to collect registers,
38283 memory, static trace data and to evaluate expression.
38284 @anchor{tracepoint action object}
38285 @item
38286 tracepoint object.  It represents a tracepoint (@pxref{Tracepoints}).
38287 @anchor{tracepoint object}
38289 @end enumerate
38291 The following table describes important attributes of each IPA protocol
38292 object:
38294 @multitable @columnfractions .30 .20 .50
38295 @headitem Name @tab Size @tab Description
38296 @item @emph{agent expression object} @tab @tab
38297 @item length @tab 4 @tab length of bytes code
38298 @item byte code @tab @var{length} @tab contents of byte code
38299 @item @emph{tracepoint action for collecting memory} @tab @tab
38300 @item 'M' @tab 1 @tab type of tracepoint action
38301 @item addr @tab 8 @tab if @var{basereg} is @samp{-1}, @var{addr} is the
38302 address of the lowest byte to collect, otherwise @var{addr} is the offset
38303 of @var{basereg} for memory collecting.
38304 @item len @tab 8 @tab length of memory for collecting
38305 @item basereg @tab 4 @tab the register number containing the starting
38306 memory address for collecting.
38307 @item @emph{tracepoint action for collecting registers} @tab @tab
38308 @item 'R' @tab 1 @tab type of tracepoint action
38309 @item @emph{tracepoint action for collecting static trace data} @tab @tab
38310 @item 'L' @tab 1 @tab type of tracepoint action
38311 @item @emph{tracepoint action for expression evaluation} @tab @tab
38312 @item 'X' @tab 1 @tab type of tracepoint action
38313 @item agent expression @tab length of @tab @ref{agent expression object}
38314 @item @emph{tracepoint object} @tab @tab
38315 @item number @tab 4 @tab number of tracepoint
38316 @item address @tab 8 @tab address of tracepoint inserted on
38317 @item type @tab 4 @tab type of tracepoint
38318 @item enabled @tab 1 @tab enable or disable of tracepoint
38319 @item step_count @tab 8 @tab step
38320 @item pass_count @tab 8 @tab pass
38321 @item numactions @tab 4 @tab number of tracepoint actions
38322 @item hit count @tab 8 @tab hit count
38323 @item trace frame usage @tab 8 @tab trace frame usage
38324 @item compiled_cond @tab 8 @tab compiled condition
38325 @item orig_size @tab 8 @tab orig size
38326 @item condition @tab 4 if condition is NULL otherwise length of
38327 @ref{agent expression object}
38328 @tab zero if condition is NULL, otherwise is
38329 @ref{agent expression object}
38330 @item actions @tab variable
38331 @tab numactions number of @ref{tracepoint action object}
38332 @end multitable
38334 @node IPA Protocol Commands
38335 @subsection IPA Protocol Commands
38336 @cindex ipa protocol commands
38338 The spaces in each command are delimiters to ease reading this commands
38339 specification.  They don't exist in real commands.
38341 @table @samp
38343 @item FastTrace:@var{tracepoint_object} @var{gdb_jump_pad_head}
38344 Installs a new fast tracepoint described by @var{tracepoint_object}
38345 (@pxref{tracepoint object}).  The @var{gdb_jump_pad_head}, 8-byte long, is the
38346 head of @dfn{jumppad}, which is used to jump to data collection routine
38347 in IPA finally.
38349 Replies:
38350 @table @samp
38351 @item OK @var{target_address} @var{gdb_jump_pad_head} @var{fjump_size} @var{fjump}
38352 @var{target_address} is address of tracepoint in the inferior.
38353 The @var{gdb_jump_pad_head} is updated head of jumppad.  Both of
38354 @var{target_address} and @var{gdb_jump_pad_head} are 8-byte long.
38355 The @var{fjump} contains a sequence of instructions jump to jumppad entry.
38356 The @var{fjump_size}, 4-byte long, is the size of @var{fjump}.
38357 @item E @var{NN}
38358 for an error
38360 @end table
38362 @item close
38363 Closes the in-process agent.  This command is sent when @value{GDBN} or GDBserver
38364 is about to kill inferiors.
38366 @item qTfSTM
38367 @xref{qTfSTM}.
38368 @item qTsSTM
38369 @xref{qTsSTM}.
38370 @item qTSTMat
38371 @xref{qTSTMat}.
38372 @item probe_marker_at:@var{address}
38373 Asks in-process agent to probe the marker at @var{address}.
38375 Replies:
38376 @table @samp
38377 @item E @var{NN}
38378 for an error
38379 @end table
38380 @item unprobe_marker_at:@var{address}
38381 Asks in-process agent to unprobe the marker at @var{address}.
38382 @end table
38384 @node GDB Bugs
38385 @chapter Reporting Bugs in @value{GDBN}
38386 @cindex bugs in @value{GDBN}
38387 @cindex reporting bugs in @value{GDBN}
38389 Your bug reports play an essential role in making @value{GDBN} reliable.
38391 Reporting a bug may help you by bringing a solution to your problem, or it
38392 may not.  But in any case the principal function of a bug report is to help
38393 the entire community by making the next version of @value{GDBN} work better.  Bug
38394 reports are your contribution to the maintenance of @value{GDBN}.
38396 In order for a bug report to serve its purpose, you must include the
38397 information that enables us to fix the bug.
38399 @menu
38400 * Bug Criteria::                Have you found a bug?
38401 * Bug Reporting::               How to report bugs
38402 @end menu
38404 @node Bug Criteria
38405 @section Have You Found a Bug?
38406 @cindex bug criteria
38408 If you are not sure whether you have found a bug, here are some guidelines:
38410 @itemize @bullet
38411 @cindex fatal signal
38412 @cindex debugger crash
38413 @cindex crash of debugger
38414 @item
38415 If the debugger gets a fatal signal, for any input whatever, that is a
38416 @value{GDBN} bug.  Reliable debuggers never crash.
38418 @cindex error on valid input
38419 @item
38420 If @value{GDBN} produces an error message for valid input, that is a
38421 bug.  (Note that if you're cross debugging, the problem may also be
38422 somewhere in the connection to the target.)
38424 @cindex invalid input
38425 @item
38426 If @value{GDBN} does not produce an error message for invalid input,
38427 that is a bug.  However, you should note that your idea of
38428 ``invalid input'' might be our idea of ``an extension'' or ``support
38429 for traditional practice''.
38431 @item
38432 If you are an experienced user of debugging tools, your suggestions
38433 for improvement of @value{GDBN} are welcome in any case.
38434 @end itemize
38436 @node Bug Reporting
38437 @section How to Report Bugs
38438 @cindex bug reports
38439 @cindex @value{GDBN} bugs, reporting
38441 A number of companies and individuals offer support for @sc{gnu} products.
38442 If you obtained @value{GDBN} from a support organization, we recommend you
38443 contact that organization first.
38445 You can find contact information for many support companies and
38446 individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
38447 distribution.
38448 @c should add a web page ref...
38450 @ifset BUGURL
38451 @ifset BUGURL_DEFAULT
38452 In any event, we also recommend that you submit bug reports for
38453 @value{GDBN}.  The preferred method is to submit them directly using
38454 @uref{http://www.gnu.org/software/gdb/bugs/, @value{GDBN}'s Bugs web
38455 page}.  Alternatively, the @email{bug-gdb@@gnu.org, e-mail gateway} can
38456 be used.
38458 @strong{Do not send bug reports to @samp{info-gdb}, or to
38459 @samp{help-gdb}, or to any newsgroups.}  Most users of @value{GDBN} do
38460 not want to receive bug reports.  Those that do have arranged to receive
38461 @samp{bug-gdb}.
38463 The mailing list @samp{bug-gdb} has a newsgroup @samp{gnu.gdb.bug} which
38464 serves as a repeater.  The mailing list and the newsgroup carry exactly
38465 the same messages.  Often people think of posting bug reports to the
38466 newsgroup instead of mailing them.  This appears to work, but it has one
38467 problem which can be crucial: a newsgroup posting often lacks a mail
38468 path back to the sender.  Thus, if we need to ask for more information,
38469 we may be unable to reach you.  For this reason, it is better to send
38470 bug reports to the mailing list.
38471 @end ifset
38472 @ifclear BUGURL_DEFAULT
38473 In any event, we also recommend that you submit bug reports for
38474 @value{GDBN} to @value{BUGURL}.
38475 @end ifclear
38476 @end ifset
38478 The fundamental principle of reporting bugs usefully is this:
38479 @strong{report all the facts}.  If you are not sure whether to state a
38480 fact or leave it out, state it!
38482 Often people omit facts because they think they know what causes the
38483 problem and assume that some details do not matter.  Thus, you might
38484 assume that the name of the variable you use in an example does not matter.
38485 Well, probably it does not, but one cannot be sure.  Perhaps the bug is a
38486 stray memory reference which happens to fetch from the location where that
38487 name is stored in memory; perhaps, if the name were different, the contents
38488 of that location would fool the debugger into doing the right thing despite
38489 the bug.  Play it safe and give a specific, complete example.  That is the
38490 easiest thing for you to do, and the most helpful.
38492 Keep in mind that the purpose of a bug report is to enable us to fix the
38493 bug.  It may be that the bug has been reported previously, but neither
38494 you nor we can know that unless your bug report is complete and
38495 self-contained.
38497 Sometimes people give a few sketchy facts and ask, ``Does this ring a
38498 bell?''  Those bug reports are useless, and we urge everyone to
38499 @emph{refuse to respond to them} except to chide the sender to report
38500 bugs properly.
38502 To enable us to fix the bug, you should include all these things:
38504 @itemize @bullet
38505 @item
38506 The version of @value{GDBN}.  @value{GDBN} announces it if you start
38507 with no arguments; you can also print it at any time using @code{show
38508 version}.
38510 Without this, we will not know whether there is any point in looking for
38511 the bug in the current version of @value{GDBN}.
38513 @item
38514 The type of machine you are using, and the operating system name and
38515 version number.
38517 @item
38518 The details of the @value{GDBN} build-time configuration.
38519 @value{GDBN} shows these details if you invoke it with the
38520 @option{--configuration} command-line option, or if you type
38521 @code{show configuration} at @value{GDBN}'s prompt.
38523 @item
38524 What compiler (and its version) was used to compile @value{GDBN}---e.g.@:
38525 ``@value{GCC}--2.8.1''.
38527 @item
38528 What compiler (and its version) was used to compile the program you are
38529 debugging---e.g.@:  ``@value{GCC}--2.8.1'', or ``HP92453-01 A.10.32.03 HP
38530 C Compiler''.  For @value{NGCC}, you can say @kbd{@value{GCC} --version}
38531 to get this information; for other compilers, see the documentation for
38532 those compilers.
38534 @item
38535 The command arguments you gave the compiler to compile your example and
38536 observe the bug.  For example, did you use @samp{-O}?  To guarantee
38537 you will not omit something important, list them all.  A copy of the
38538 Makefile (or the output from make) is sufficient.
38540 If we were to try to guess the arguments, we would probably guess wrong
38541 and then we might not encounter the bug.
38543 @item
38544 A complete input script, and all necessary source files, that will
38545 reproduce the bug.
38547 @item
38548 A description of what behavior you observe that you believe is
38549 incorrect.  For example, ``It gets a fatal signal.''
38551 Of course, if the bug is that @value{GDBN} gets a fatal signal, then we
38552 will certainly notice it.  But if the bug is incorrect output, we might
38553 not notice unless it is glaringly wrong.  You might as well not give us
38554 a chance to make a mistake.
38556 Even if the problem you experience is a fatal signal, you should still
38557 say so explicitly.  Suppose something strange is going on, such as, your
38558 copy of @value{GDBN} is out of synch, or you have encountered a bug in
38559 the C library on your system.  (This has happened!)  Your copy might
38560 crash and ours would not.  If you told us to expect a crash, then when
38561 ours fails to crash, we would know that the bug was not happening for
38562 us.  If you had not told us to expect a crash, then we would not be able
38563 to draw any conclusion from our observations.
38565 @pindex script
38566 @cindex recording a session script
38567 To collect all this information, you can use a session recording program
38568 such as @command{script}, which is available on many Unix systems.
38569 Just run your @value{GDBN} session inside @command{script} and then
38570 include the @file{typescript} file with your bug report.
38572 Another way to record a @value{GDBN} session is to run @value{GDBN}
38573 inside Emacs and then save the entire buffer to a file.
38575 @item
38576 If you wish to suggest changes to the @value{GDBN} source, send us context
38577 diffs.  If you even discuss something in the @value{GDBN} source, refer to
38578 it by context, not by line number.
38580 The line numbers in our development sources will not match those in your
38581 sources.  Your line numbers would convey no useful information to us.
38583 @end itemize
38585 Here are some things that are not necessary:
38587 @itemize @bullet
38588 @item
38589 A description of the envelope of the bug.
38591 Often people who encounter a bug spend a lot of time investigating
38592 which changes to the input file will make the bug go away and which
38593 changes will not affect it.
38595 This is often time consuming and not very useful, because the way we
38596 will find the bug is by running a single example under the debugger
38597 with breakpoints, not by pure deduction from a series of examples.
38598 We recommend that you save your time for something else.
38600 Of course, if you can find a simpler example to report @emph{instead}
38601 of the original one, that is a convenience for us.  Errors in the
38602 output will be easier to spot, running under the debugger will take
38603 less time, and so on.
38605 However, simplification is not vital; if you do not want to do this,
38606 report the bug anyway and send us the entire test case you used.
38608 @item
38609 A patch for the bug.
38611 A patch for the bug does help us if it is a good one.  But do not omit
38612 the necessary information, such as the test case, on the assumption that
38613 a patch is all we need.  We might see problems with your patch and decide
38614 to fix the problem another way, or we might not understand it at all.
38616 Sometimes with a program as complicated as @value{GDBN} it is very hard to
38617 construct an example that will make the program follow a certain path
38618 through the code.  If you do not send us the example, we will not be able
38619 to construct one, so we will not be able to verify that the bug is fixed.
38621 And if we cannot understand what bug you are trying to fix, or why your
38622 patch should be an improvement, we will not install it.  A test case will
38623 help us to understand.
38625 @item
38626 A guess about what the bug is or what it depends on.
38628 Such guesses are usually wrong.  Even we cannot guess right about such
38629 things without first using the debugger to find the facts.
38630 @end itemize
38632 @c The readline documentation is distributed with the readline code
38633 @c and consists of the two following files:
38634 @c     rluser.texi
38635 @c     hsuser.texi
38636 @c Use -I with makeinfo to point to the appropriate directory,
38637 @c environment var TEXINPUTS with TeX.
38638 @ifclear SYSTEM_READLINE
38639 @include rluser.texi
38640 @include hsuser.texi
38641 @end ifclear
38643 @node In Memoriam
38644 @appendix In Memoriam
38646 The @value{GDBN} project mourns the loss of the following long-time
38647 contributors:
38649 @table @code
38650 @item Fred Fish
38651 Fred was a long-standing contributor to @value{GDBN} (1991-2006), and
38652 to Free Software in general.  Outside of @value{GDBN}, he was known in
38653 the Amiga world for his series of Fish Disks, and the GeekGadget project.
38655 @item Michael Snyder
38656 Michael was one of the Global Maintainers of the @value{GDBN} project,
38657 with contributions recorded as early as 1996, until 2011.  In addition
38658 to his day to day participation, he was a large driving force behind
38659 adding Reverse Debugging to @value{GDBN}.
38660 @end table
38662 Beyond their technical contributions to the project, they were also
38663 enjoyable members of the Free Software Community.  We will miss them.
38665 @node Formatting Documentation
38666 @appendix Formatting Documentation
38668 @cindex @value{GDBN} reference card
38669 @cindex reference card
38670 The @value{GDBN} 4 release includes an already-formatted reference card, ready
38671 for printing with PostScript or Ghostscript, in the @file{gdb}
38672 subdirectory of the main source directory@footnote{In
38673 @file{gdb-@value{GDBVN}/gdb/refcard.ps} of the version @value{GDBVN}
38674 release.}.  If you can use PostScript or Ghostscript with your printer,
38675 you can print the reference card immediately with @file{refcard.ps}.
38677 The release also includes the source for the reference card.  You
38678 can format it, using @TeX{}, by typing:
38680 @smallexample
38681 make refcard.dvi
38682 @end smallexample
38684 The @value{GDBN} reference card is designed to print in @dfn{landscape}
38685 mode on US ``letter'' size paper;
38686 that is, on a sheet 11 inches wide by 8.5 inches
38687 high.  You will need to specify this form of printing as an option to
38688 your @sc{dvi} output program.
38690 @cindex documentation
38692 All the documentation for @value{GDBN} comes as part of the machine-readable
38693 distribution.  The documentation is written in Texinfo format, which is
38694 a documentation system that uses a single source file to produce both
38695 on-line information and a printed manual.  You can use one of the Info
38696 formatting commands to create the on-line version of the documentation
38697 and @TeX{} (or @code{texi2roff}) to typeset the printed version.
38699 @value{GDBN} includes an already formatted copy of the on-line Info
38700 version of this manual in the @file{gdb} subdirectory.  The main Info
38701 file is @file{gdb-@value{GDBVN}/gdb/gdb.info}, and it refers to
38702 subordinate files matching @samp{gdb.info*} in the same directory.  If
38703 necessary, you can print out these files, or read them with any editor;
38704 but they are easier to read using the @code{info} subsystem in @sc{gnu}
38705 Emacs or the standalone @code{info} program, available as part of the
38706 @sc{gnu} Texinfo distribution.
38708 If you want to format these Info files yourself, you need one of the
38709 Info formatting programs, such as @code{texinfo-format-buffer} or
38710 @code{makeinfo}.
38712 If you have @code{makeinfo} installed, and are in the top level
38713 @value{GDBN} source directory (@file{gdb-@value{GDBVN}}, in the case of
38714 version @value{GDBVN}), you can make the Info file by typing:
38716 @smallexample
38717 cd gdb
38718 make gdb.info
38719 @end smallexample
38721 If you want to typeset and print copies of this manual, you need @TeX{},
38722 a program to print its @sc{dvi} output files, and @file{texinfo.tex}, the
38723 Texinfo definitions file.
38725 @TeX{} is a typesetting program; it does not print files directly, but
38726 produces output files called @sc{dvi} files.  To print a typeset
38727 document, you need a program to print @sc{dvi} files.  If your system
38728 has @TeX{} installed, chances are it has such a program.  The precise
38729 command to use depends on your system; @kbd{lpr -d} is common; another
38730 (for PostScript devices) is @kbd{dvips}.  The @sc{dvi} print command may
38731 require a file name without any extension or a @samp{.dvi} extension.
38733 @TeX{} also requires a macro definitions file called
38734 @file{texinfo.tex}.  This file tells @TeX{} how to typeset a document
38735 written in Texinfo format.  On its own, @TeX{} cannot either read or
38736 typeset a Texinfo file.  @file{texinfo.tex} is distributed with GDB
38737 and is located in the @file{gdb-@var{version-number}/texinfo}
38738 directory.
38740 If you have @TeX{} and a @sc{dvi} printer program installed, you can
38741 typeset and print this manual.  First switch to the @file{gdb}
38742 subdirectory of the main source directory (for example, to
38743 @file{gdb-@value{GDBVN}/gdb}) and type:
38745 @smallexample
38746 make gdb.dvi
38747 @end smallexample
38749 Then give @file{gdb.dvi} to your @sc{dvi} printing program.
38751 @node Installing GDB
38752 @appendix Installing @value{GDBN}
38753 @cindex installation
38755 @menu
38756 * Requirements::                Requirements for building @value{GDBN}
38757 * Running Configure::           Invoking the @value{GDBN} @file{configure} script
38758 * Separate Objdir::             Compiling @value{GDBN} in another directory
38759 * Config Names::                Specifying names for hosts and targets
38760 * Configure Options::           Summary of options for configure
38761 * System-wide configuration::   Having a system-wide init file
38762 @end menu
38764 @node Requirements
38765 @section Requirements for Building @value{GDBN}
38766 @cindex building @value{GDBN}, requirements for
38768 Building @value{GDBN} requires various tools and packages to be available.
38769 Other packages will be used only if they are found.
38771 @heading Tools/Packages Necessary for Building @value{GDBN}
38772 @table @asis
38773 @item C@t{++}11 compiler
38774 @value{GDBN} is written in C@t{++}11.  It should be buildable with any
38775 recent C@t{++}11 compiler, e.g.@: GCC.
38777 @item GNU make
38778 @value{GDBN}'s build system relies on features only found in the GNU
38779 make program.  Other variants of @code{make} will not work.
38781 @item GMP (The GNU Multiple Precision Arithmetic Library)
38782 @value{GDBN} now uses GMP to perform some of its arithmetics.
38783 This library may be included with your operating system distribution;
38784 if it is not, you can get the latest version from
38785 @url{https://gmplib.org/}. If GMP is installed at an unusual path,
38786 you can use the @option{--with-libgmp-prefix} option to specify
38787 its location.
38789 @end table
38791 @heading Tools/Packages Optional for Building @value{GDBN}
38792 @table @asis
38793 @item Expat
38794 @anchor{Expat}
38795 @value{GDBN} can use the Expat XML parsing library.  This library may be
38796 included with your operating system distribution; if it is not, you
38797 can get the latest version from @url{http://expat.sourceforge.net}.
38798 The @file{configure} script will search for this library in several
38799 standard locations; if it is installed in an unusual path, you can
38800 use the @option{--with-libexpat-prefix} option to specify its location.
38802 Expat is used for:
38804 @itemize @bullet
38805 @item
38806 Remote protocol memory maps (@pxref{Memory Map Format})
38807 @item
38808 Target descriptions (@pxref{Target Descriptions})
38809 @item
38810 Remote shared library lists (@xref{Library List Format},
38811 or alternatively @pxref{Library List Format for SVR4 Targets})
38812 @item
38813 MS-Windows shared libraries (@pxref{Shared Libraries})
38814 @item
38815 Traceframe info (@pxref{Traceframe Info Format})
38816 @item
38817 Branch trace (@pxref{Branch Trace Format},
38818 @pxref{Branch Trace Configuration Format})
38819 @end itemize
38821 @item Guile
38822 @value{GDBN} can be scripted using GNU Guile.  @xref{Guile}.  By
38823 default, @value{GDBN} will be compiled if the Guile libraries are
38824 installed and are found by @file{configure}.  You can use the
38825 @code{--with-guile} option to request Guile, and pass either the Guile
38826 version number or the file name of the relevant @code{pkg-config}
38827 program to choose a particular version of Guile.
38829 @item iconv
38830 @value{GDBN}'s features related to character sets (@pxref{Character
38831 Sets}) require a functioning @code{iconv} implementation.  If you are
38832 on a GNU system, then this is provided by the GNU C Library.  Some
38833 other systems also provide a working @code{iconv}.
38835 If @value{GDBN} is using the @code{iconv} program which is installed
38836 in a non-standard place, you will need to tell @value{GDBN} where to
38837 find it.  This is done with @option{--with-iconv-bin} which specifies
38838 the directory that contains the @code{iconv} program.  This program is
38839 run in order to make a list of the available character sets.
38841 On systems without @code{iconv}, you can install GNU Libiconv.  If
38842 Libiconv is installed in a standard place, @value{GDBN} will
38843 automatically use it if it is needed.  If you have previously
38844 installed Libiconv in a non-standard place, you can use the
38845 @option{--with-libiconv-prefix} option to @file{configure}.
38847 @value{GDBN}'s top-level @file{configure} and @file{Makefile} will
38848 arrange to build Libiconv if a directory named @file{libiconv} appears
38849 in the top-most source directory.  If Libiconv is built this way, and
38850 if the operating system does not provide a suitable @code{iconv}
38851 implementation, then the just-built library will automatically be used
38852 by @value{GDBN}.  One easy way to set this up is to download GNU
38853 Libiconv, unpack it inside the top-level directory of the @value{GDBN}
38854 source tree, and then rename the directory holding the Libiconv source
38855 code to @samp{libiconv}.
38857 @item lzma
38858 @value{GDBN} can support debugging sections that are compressed with
38859 the LZMA library.  @xref{MiniDebugInfo}.  If this library is not
38860 included with your operating system, you can find it in the xz package
38861 at @url{http://tukaani.org/xz/}.  If the LZMA library is available in
38862 the usual place, then the @file{configure} script will use it
38863 automatically.  If it is installed in an unusual path, you can use the
38864 @option{--with-liblzma-prefix} option to specify its location.
38866 @item MPFR
38867 @anchor{MPFR}
38868 @value{GDBN} can use the GNU MPFR multiple-precision floating-point
38869 library.  This library may be included with your operating system
38870 distribution; if it is not, you can get the latest version from
38871 @url{http://www.mpfr.org}.  The @file{configure} script will search
38872 for this library in several standard locations; if it is installed
38873 in an unusual path, you can use the @option{--with-libmpfr-prefix}
38874 option to specify its location.
38876 GNU MPFR is used to emulate target floating-point arithmetic during
38877 expression evaluation when the target uses different floating-point
38878 formats than the host.  If GNU MPFR it is not available, @value{GDBN}
38879 will fall back to using host floating-point arithmetic.
38881 @item Python
38882 @value{GDBN} can be scripted using Python language.  @xref{Python}.
38883 By default, @value{GDBN} will be compiled if the Python libraries are
38884 installed and are found by @file{configure}.  You can use the
38885 @code{--with-python} option to request Python, and pass either the
38886 file name of the relevant @code{python} executable, or the name of the
38887 directory in which Python is installed, to choose a particular
38888 installation of Python.
38890 @item zlib
38891 @cindex compressed debug sections 
38892 @value{GDBN} will use the @samp{zlib} library, if available, to read
38893 compressed debug sections.  Some linkers, such as GNU gold, are capable
38894 of producing binaries with compressed debug sections.  If @value{GDBN}
38895 is compiled with @samp{zlib}, it will be able to read the debug
38896 information in such binaries.
38898 The @samp{zlib} library is likely included with your operating system
38899 distribution; if it is not, you can get the latest version from
38900 @url{http://zlib.net}.
38901 @end table
38903 @node Running Configure
38904 @section Invoking the @value{GDBN} @file{configure} Script
38905 @cindex configuring @value{GDBN}
38906 @value{GDBN} comes with a @file{configure} script that automates the process
38907 of preparing @value{GDBN} for installation; you can then use @code{make} to
38908 build the @code{gdb} program.
38909 @iftex
38910 @c irrelevant in info file; it's as current as the code it lives with.
38911 @footnote{If you have a more recent version of @value{GDBN} than @value{GDBVN},
38912 look at the @file{README} file in the sources; we may have improved the
38913 installation procedures since publishing this manual.}
38914 @end iftex
38916 The @value{GDBN} distribution includes all the source code you need for
38917 @value{GDBN} in a single directory, whose name is usually composed by
38918 appending the version number to @samp{gdb}.
38920 For example, the @value{GDBN} version @value{GDBVN} distribution is in the
38921 @file{gdb-@value{GDBVN}} directory.  That directory contains:
38923 @table @code
38924 @item gdb-@value{GDBVN}/configure @r{(and supporting files)}
38925 script for configuring @value{GDBN} and all its supporting libraries
38927 @item gdb-@value{GDBVN}/gdb
38928 the source specific to @value{GDBN} itself
38930 @item gdb-@value{GDBVN}/bfd
38931 source for the Binary File Descriptor library
38933 @item gdb-@value{GDBVN}/include
38934 @sc{gnu} include files
38936 @item gdb-@value{GDBVN}/libiberty
38937 source for the @samp{-liberty} free software library
38939 @item gdb-@value{GDBVN}/opcodes
38940 source for the library of opcode tables and disassemblers
38942 @item gdb-@value{GDBVN}/readline
38943 source for the @sc{gnu} command-line interface
38944 @end table
38946 There may be other subdirectories as well.
38948 The simplest way to configure and build @value{GDBN} is to run @file{configure}
38949 from the @file{gdb-@var{version-number}} source directory, which in
38950 this example is the @file{gdb-@value{GDBVN}} directory.
38952 First switch to the @file{gdb-@var{version-number}} source directory
38953 if you are not already in it; then run @file{configure}.  Pass the
38954 identifier for the platform on which @value{GDBN} will run as an
38955 argument.
38957 For example:
38959 @smallexample
38960 cd gdb-@value{GDBVN}
38961 ./configure
38962 make
38963 @end smallexample
38965 Running @samp{configure} and then running @code{make} builds the
38966 included supporting libraries, then @code{gdb} itself.  The configured
38967 source files, and the binaries, are left in the corresponding source
38968 directories.
38970 @need 750
38971 @file{configure} is a Bourne-shell (@code{/bin/sh}) script; if your
38972 system does not recognize this automatically when you run a different
38973 shell, you may need to run @code{sh} on it explicitly:
38975 @smallexample
38976 sh configure
38977 @end smallexample
38979 You should run the @file{configure} script from the top directory in the
38980 source tree, the @file{gdb-@var{version-number}} directory.  If you run
38981 @file{configure} from one of the subdirectories, you will configure only
38982 that subdirectory.  That is usually not what you want.  In particular,
38983 if you run the first @file{configure} from the @file{gdb} subdirectory
38984 of the @file{gdb-@var{version-number}} directory, you will omit the
38985 configuration of @file{bfd}, @file{readline}, and other sibling
38986 directories of the @file{gdb} subdirectory.  This leads to build errors
38987 about missing include files such as @file{bfd/bfd.h}.
38989 You can install @code{@value{GDBN}} anywhere.  The best way to do this
38990 is to pass the @code{--prefix} option to @code{configure}, and then
38991 install it with @code{make install}.
38993 @node Separate Objdir
38994 @section Compiling @value{GDBN} in Another Directory
38996 If you want to run @value{GDBN} versions for several host or target machines,
38997 you need a different @code{gdb} compiled for each combination of
38998 host and target.  @file{configure} is designed to make this easy by
38999 allowing you to generate each configuration in a separate subdirectory,
39000 rather than in the source directory.  If your @code{make} program
39001 handles the @samp{VPATH} feature (@sc{gnu} @code{make} does), running
39002 @code{make} in each of these directories builds the @code{gdb}
39003 program specified there.
39005 To build @code{gdb} in a separate directory, run @file{configure}
39006 with the @samp{--srcdir} option to specify where to find the source.
39007 (You also need to specify a path to find @file{configure}
39008 itself from your working directory.  If the path to @file{configure}
39009 would be the same as the argument to @samp{--srcdir}, you can leave out
39010 the @samp{--srcdir} option; it is assumed.)
39012 For example, with version @value{GDBVN}, you can build @value{GDBN} in a
39013 separate directory for a Sun 4 like this:
39015 @smallexample
39016 @group
39017 cd gdb-@value{GDBVN}
39018 mkdir ../gdb-sun4
39019 cd ../gdb-sun4
39020 ../gdb-@value{GDBVN}/configure
39021 make
39022 @end group
39023 @end smallexample
39025 When @file{configure} builds a configuration using a remote source
39026 directory, it creates a tree for the binaries with the same structure
39027 (and using the same names) as the tree under the source directory.  In
39028 the example, you'd find the Sun 4 library @file{libiberty.a} in the
39029 directory @file{gdb-sun4/libiberty}, and @value{GDBN} itself in
39030 @file{gdb-sun4/gdb}.
39032 Make sure that your path to the @file{configure} script has just one
39033 instance of @file{gdb} in it.  If your path to @file{configure} looks
39034 like @file{../gdb-@value{GDBVN}/gdb/configure}, you are configuring only
39035 one subdirectory of @value{GDBN}, not the whole package.  This leads to
39036 build errors about missing include files such as @file{bfd/bfd.h}.
39038 One popular reason to build several @value{GDBN} configurations in separate
39039 directories is to configure @value{GDBN} for cross-compiling (where
39040 @value{GDBN} runs on one machine---the @dfn{host}---while debugging
39041 programs that run on another machine---the @dfn{target}).
39042 You specify a cross-debugging target by
39043 giving the @samp{--target=@var{target}} option to @file{configure}.
39045 When you run @code{make} to build a program or library, you must run
39046 it in a configured directory---whatever directory you were in when you
39047 called @file{configure} (or one of its subdirectories).
39049 The @code{Makefile} that @file{configure} generates in each source
39050 directory also runs recursively.  If you type @code{make} in a source
39051 directory such as @file{gdb-@value{GDBVN}} (or in a separate configured
39052 directory configured with @samp{--srcdir=@var{dirname}/gdb-@value{GDBVN}}), you
39053 will build all the required libraries, and then build GDB.
39055 When you have multiple hosts or targets configured in separate
39056 directories, you can run @code{make} on them in parallel (for example,
39057 if they are NFS-mounted on each of the hosts); they will not interfere
39058 with each other.
39060 @node Config Names
39061 @section Specifying Names for Hosts and Targets
39063 The specifications used for hosts and targets in the @file{configure}
39064 script are based on a three-part naming scheme, but some short predefined
39065 aliases are also supported.  The full naming scheme encodes three pieces
39066 of information in the following pattern:
39068 @smallexample
39069 @var{architecture}-@var{vendor}-@var{os}
39070 @end smallexample
39072 For example, you can use the alias @code{sun4} as a @var{host} argument,
39073 or as the value for @var{target} in a @code{--target=@var{target}}
39074 option.  The equivalent full name is @samp{sparc-sun-sunos4}.
39076 The @file{configure} script accompanying @value{GDBN} does not provide
39077 any query facility to list all supported host and target names or
39078 aliases.  @file{configure} calls the Bourne shell script
39079 @code{config.sub} to map abbreviations to full names; you can read the
39080 script, if you wish, or you can use it to test your guesses on
39081 abbreviations---for example:
39083 @smallexample
39084 % sh config.sub i386-linux
39085 i386-pc-linux-gnu
39086 % sh config.sub alpha-linux
39087 alpha-unknown-linux-gnu
39088 % sh config.sub hp9k700
39089 hppa1.1-hp-hpux
39090 % sh config.sub sun4
39091 sparc-sun-sunos4.1.1
39092 % sh config.sub sun3
39093 m68k-sun-sunos4.1.1
39094 % sh config.sub i986v
39095 Invalid configuration `i986v': machine `i986v' not recognized
39096 @end smallexample
39098 @noindent
39099 @code{config.sub} is also distributed in the @value{GDBN} source
39100 directory (@file{gdb-@value{GDBVN}}, for version @value{GDBVN}).
39102 @node Configure Options
39103 @section @file{configure} Options
39105 Here is a summary of the @file{configure} options and arguments that
39106 are most often useful for building @value{GDBN}.  @file{configure}
39107 also has several other options not listed here.  @xref{Running
39108 configure Scripts,,,autoconf}, for a full
39109 explanation of @file{configure}.
39111 @smallexample
39112 configure @r{[}--help@r{]}
39113           @r{[}--prefix=@var{dir}@r{]}
39114           @r{[}--exec-prefix=@var{dir}@r{]}
39115           @r{[}--srcdir=@var{dirname}@r{]}
39116           @r{[}--target=@var{target}@r{]}
39117 @end smallexample
39119 @noindent
39120 You may introduce options with a single @samp{-} rather than
39121 @samp{--} if you prefer; but you may abbreviate option names if you use
39122 @samp{--}.
39124 @table @code
39125 @item --help
39126 Display a quick summary of how to invoke @file{configure}.
39128 @item --prefix=@var{dir}
39129 Configure the source to install programs and files under directory
39130 @file{@var{dir}}.
39132 @item --exec-prefix=@var{dir}
39133 Configure the source to install programs under directory
39134 @file{@var{dir}}.
39136 @c avoid splitting the warning from the explanation:
39137 @need 2000
39138 @item --srcdir=@var{dirname}
39139 Use this option to make configurations in directories separate from the
39140 @value{GDBN} source directories.  Among other things, you can use this to
39141 build (or maintain) several configurations simultaneously, in separate
39142 directories.  @file{configure} writes configuration-specific files in
39143 the current directory, but arranges for them to use the source in the
39144 directory @var{dirname}.  @file{configure} creates directories under
39145 the working directory in parallel to the source directories below
39146 @var{dirname}.
39148 @item --target=@var{target}
39149 Configure @value{GDBN} for cross-debugging programs running on the specified
39150 @var{target}.  Without this option, @value{GDBN} is configured to debug
39151 programs that run on the same machine (@var{host}) as @value{GDBN} itself.
39153 There is no convenient way to generate a list of all available
39154 targets.  Also see the @code{--enable-targets} option, below.
39155 @end table
39157 There are many other options that are specific to @value{GDBN}.  This
39158 lists just the most common ones; there are some very specialized
39159 options not described here.
39161 @table @code
39162 @item --enable-targets=@r{[}@var{target}@r{]}@dots{}
39163 @itemx --enable-targets=all
39164 Configure @value{GDBN} for cross-debugging programs running on the
39165 specified list of targets.  The special value @samp{all} configures
39166 @value{GDBN} for debugging programs running on any target it supports.
39168 @item --with-gdb-datadir=@var{path}
39169 Set the @value{GDBN}-specific data directory.  @value{GDBN} will look
39170 here for certain supporting files or scripts.  This defaults to the
39171 @file{gdb} subdirectory of @samp{datadir} (which can be set using
39172 @code{--datadir}).
39174 @item --with-relocated-sources=@var{dir}
39175 Sets up the default source path substitution rule so that directory
39176 names recorded in debug information will be automatically adjusted for
39177 any directory under @var{dir}.  @var{dir} should be a subdirectory of
39178 @value{GDBN}'s configured prefix, the one mentioned in the
39179 @code{--prefix} or @code{--exec-prefix} options to configure.  This
39180 option is useful if GDB is supposed to be moved to a different place
39181 after it is built.
39183 @item --enable-64-bit-bfd
39184 Enable 64-bit support in BFD on 32-bit hosts.
39186 @item --disable-gdbmi
39187 Build @value{GDBN} without the GDB/MI machine interface
39188 (@pxref{GDB/MI}).
39190 @item --enable-tui
39191 Build @value{GDBN} with the text-mode full-screen user interface
39192 (TUI).  Requires a curses library (ncurses and cursesX are also
39193 supported).
39195 @item --with-curses
39196 Use the curses library instead of the termcap library, for text-mode
39197 terminal operations.
39199 @item --with-debuginfod
39200 Build @value{GDBN} with @file{libdebuginfod}, the @code{debuginfod} client
39201 library.  Used to automatically fetch ELF, DWARF and source files from
39202 @code{debuginfod} servers using build IDs associated with any missing
39203 files.  Enabled by default if @file{libdebuginfod} is installed and found
39204 at configure time.  For more information regarding @code{debuginfod} see
39205 @ref{Debuginfod}.
39207 @item --with-libunwind-ia64
39208 Use the libunwind library for unwinding function call stack on ia64
39209 target platforms.  See http://www.nongnu.org/libunwind/index.html for
39210 details.
39212 @item --with-system-readline
39213 Use the readline library installed on the host, rather than the
39214 library supplied as part of @value{GDBN}.  Readline 7 or newer is
39215 required; this is enforced by the build system.
39217 @item --with-system-zlib
39218 Use the zlib library installed on the host, rather than the library
39219 supplied as part of @value{GDBN}.
39221 @item --with-expat
39222 Build @value{GDBN} with Expat, a library for XML parsing.  (Done by
39223 default if libexpat is installed and found at configure time.)  This
39224 library is used to read XML files supplied with @value{GDBN}.  If it
39225 is unavailable, some features, such as remote protocol memory maps,
39226 target descriptions, and shared library lists, that are based on XML
39227 files, will not be available in @value{GDBN}.  If your host does not
39228 have libexpat installed, you can get the latest version from
39229 `http://expat.sourceforge.net'.
39231 @item --with-libiconv-prefix@r{[}=@var{dir}@r{]}
39233 Build @value{GDBN} with GNU libiconv, a character set encoding
39234 conversion library.  This is not done by default, as on GNU systems
39235 the @code{iconv} that is built in to the C library is sufficient.  If
39236 your host does not have a working @code{iconv}, you can get the latest
39237 version of GNU iconv from `https://www.gnu.org/software/libiconv/'.
39239 @value{GDBN}'s build system also supports building GNU libiconv as
39240 part of the overall build.   @xref{Requirements}.
39242 @item --with-lzma
39243 Build @value{GDBN} with LZMA, a compression library.  (Done by default
39244 if liblzma is installed and found at configure time.)  LZMA is used by
39245 @value{GDBN}'s "mini debuginfo" feature, which is only useful on
39246 platforms using the ELF object file format.  If your host does not
39247 have liblzma installed, you can get the latest version from
39248 `https://tukaani.org/xz/'.
39250 @item --with-mpfr
39251 Build @value{GDBN} with GNU MPFR, a library for multiple-precision
39252 floating-point computation with correct rounding.  (Done by default if
39253 GNU MPFR is installed and found at configure time.)  This library is
39254 used to emulate target floating-point arithmetic during expression
39255 evaluation when the target uses different floating-point formats than
39256 the host.  If GNU MPFR is not available, @value{GDBN} will fall back
39257 to using host floating-point arithmetic.  If your host does not have
39258 GNU MPFR installed, you can get the latest version from
39259 `http://www.mpfr.org'.
39261 @item --with-python@r{[}=@var{python}@r{]}
39262 Build @value{GDBN} with Python scripting support.  (Done by default if
39263 libpython is present and found at configure time.)  Python makes
39264 @value{GDBN} scripting much more powerful than the restricted CLI
39265 scripting language.  If your host does not have Python installed, you
39266 can find it on `http://www.python.org/download/'.  The oldest version
39267 of Python supported by GDB is 2.6.  The optional argument @var{python}
39268 is used to find the Python headers and libraries.  It can be either
39269 the name of a Python executable, or the name of the directory in which
39270 Python is installed.
39272 @item --with-guile[=GUILE]'
39273 Build @value{GDBN} with GNU Guile scripting support.  (Done by default
39274 if libguile is present and found at configure time.)  If your host
39275 does not have Guile installed, you can find it at
39276 `https://www.gnu.org/software/guile/'.  The optional argument GUILE
39277 can be a version number, which will cause @code{configure} to try to
39278 use that version of Guile; or the file name of a @code{pkg-config}
39279 executable, which will be queried to find the information needed to
39280 compile and link against Guile.
39282 @item --without-included-regex
39283 Don't use the regex library included with @value{GDBN} (as part of the
39284 libiberty library).  This is the default on hosts with version 2 of
39285 the GNU C library.
39287 @item --with-sysroot=@var{dir}
39288 Use @var{dir} as the default system root directory for libraries whose
39289 file names begin with @file{/lib}' or @file{/usr/lib'}.  (The value of
39290 @var{dir} can be modified at run time by using the @command{set
39291 sysroot} command.)  If @var{dir} is under the @value{GDBN} configured
39292 prefix (set with @code{--prefix} or @code{--exec-prefix options}, the
39293 default system root will be automatically adjusted if and when
39294 @value{GDBN} is moved to a different location.
39296 @item --with-system-gdbinit=@var{file}
39297 Configure @value{GDBN} to automatically load a system-wide init file.
39298 @var{file} should be an absolute file name.  If @var{file} is in a
39299 directory under the configured prefix, and @value{GDBN} is moved to
39300 another location after being built, the location of the system-wide
39301 init file will be adjusted accordingly.
39303 @item --with-system-gdbinit-dir=@var{directory}
39304 Configure @value{GDBN} to automatically load init files from a
39305 system-wide directory.  @var{directory} should be an absolute directory
39306 name.  If @var{directory} is in a directory under the configured
39307 prefix, and @value{GDBN} is moved to another location after being
39308 built, the location of the system-wide init directory will be
39309 adjusted accordingly.
39311 @item --enable-build-warnings
39312 When building the @value{GDBN} sources, ask the compiler to warn about
39313 any code which looks even vaguely suspicious.  It passes many
39314 different warning flags, depending on the exact version of the
39315 compiler you are using.
39317 @item --enable-werror
39318 Treat compiler warnings as errors.  It adds the @code{-Werror} flag
39319 to the compiler, which will fail the compilation if the compiler
39320 outputs any warning messages.
39322 @item --enable-ubsan
39323 Enable the GCC undefined behavior sanitizer.  This is disabled by
39324 default, but passing @code{--enable-ubsan=yes} or
39325 @code{--enable-ubsan=auto} to @code{configure} will enable it.  The
39326 undefined behavior sanitizer checks for C@t{++} undefined behavior.
39327 It has a performance cost, so if you are looking at @value{GDBN}'s
39328 performance, you should disable it.  The undefined behavior sanitizer
39329 was first introduced in GCC 4.9.
39330 @end table
39332 @node System-wide configuration
39333 @section System-wide configuration and settings
39334 @cindex system-wide init file
39336 @value{GDBN} can be configured to have a system-wide init file and a
39337 system-wide init file directory; this file and files in that directory
39338 (if they have a recognized file extension) will be read and executed at
39339 startup (@pxref{Startup, , What @value{GDBN} does during startup}).
39341 Here are the corresponding configure options:
39343 @table @code
39344 @item --with-system-gdbinit=@var{file}
39345 Specify that the default location of the system-wide init file is
39346 @var{file}.
39347 @item --with-system-gdbinit-dir=@var{directory}
39348 Specify that the default location of the system-wide init file directory
39349 is @var{directory}.
39350 @end table
39352 If @value{GDBN} has been configured with the option @option{--prefix=$prefix},
39353 they may be subject to relocation.  Two possible cases:
39355 @itemize @bullet
39356 @item 
39357 If the default location of this init file/directory contains @file{$prefix},
39358 it will be subject to relocation.  Suppose that the configure options
39359 are @option{--prefix=$prefix --with-system-gdbinit=$prefix/etc/gdbinit};
39360 if @value{GDBN} is moved from @file{$prefix} to @file{$install}, the system
39361 init file is looked for as @file{$install/etc/gdbinit} instead of
39362 @file{$prefix/etc/gdbinit}.
39364 @item
39365 By contrast, if the default location does not contain the prefix,
39366 it will not be relocated.  E.g.@: if @value{GDBN} has been configured with
39367 @option{--prefix=/usr/local --with-system-gdbinit=/usr/share/gdb/gdbinit},
39368 then @value{GDBN} will always look for @file{/usr/share/gdb/gdbinit},
39369 wherever @value{GDBN} is installed.
39370 @end itemize
39372 If the configured location of the system-wide init file (as given by the
39373 @option{--with-system-gdbinit} option at configure time) is in the
39374 data-directory (as specified by @option{--with-gdb-datadir} at configure
39375 time) or in one of its subdirectories, then @value{GDBN} will look for the
39376 system-wide init file in the directory specified by the
39377 @option{--data-directory} command-line option.
39378 Note that the system-wide init file is only read once, during @value{GDBN}
39379 initialization.  If the data-directory is changed after @value{GDBN} has
39380 started with the @code{set data-directory} command, the file will not be
39381 reread.
39383 This applies similarly to the system-wide directory specified in
39384 @option{--with-system-gdbinit-dir}.
39386 Any supported scripting language can be used for these init files, as long
39387 as the file extension matches the scripting language.  To be interpreted
39388 as regular @value{GDBN} commands, the files needs to have a @file{.gdb}
39389 extension.
39391 @menu
39392 * System-wide Configuration Scripts::  Installed System-wide Configuration Scripts
39393 @end menu
39395 @node System-wide Configuration Scripts
39396 @subsection Installed System-wide Configuration Scripts
39397 @cindex system-wide configuration scripts
39399 The @file{system-gdbinit} directory, located inside the data-directory
39400 (as specified by @option{--with-gdb-datadir} at configure time) contains
39401 a number of scripts which can be used as system-wide init files.  To
39402 automatically source those scripts at startup, @value{GDBN} should be
39403 configured with @option{--with-system-gdbinit}.  Otherwise, any user
39404 should be able to source them by hand as needed.
39406 The following scripts are currently available:
39407 @itemize @bullet
39409 @item @file{elinos.py}
39410 @pindex elinos.py
39411 @cindex ELinOS system-wide configuration script
39412 This script is useful when debugging a program on an ELinOS target.
39413 It takes advantage of the environment variables defined in a standard
39414 ELinOS environment in order to determine the location of the system
39415 shared libraries, and then sets the @samp{solib-absolute-prefix}
39416 and @samp{solib-search-path} variables appropriately.
39418 @item @file{wrs-linux.py}
39419 @pindex wrs-linux.py
39420 @cindex Wind River Linux system-wide configuration script
39421 This script is useful when debugging a program on a target running
39422 Wind River Linux.  It expects the @env{ENV_PREFIX} to be set to
39423 the host-side sysroot used by the target system.
39425 @end itemize
39427 @node Maintenance Commands
39428 @appendix Maintenance Commands
39429 @cindex maintenance commands
39430 @cindex internal commands
39432 In addition to commands intended for @value{GDBN} users, @value{GDBN}
39433 includes a number of commands intended for @value{GDBN} developers,
39434 that are not documented elsewhere in this manual.  These commands are
39435 provided here for reference.  (For commands that turn on debugging
39436 messages, see @ref{Debugging Output}.)
39438 @table @code
39439 @kindex maint agent
39440 @kindex maint agent-eval
39441 @item maint agent @r{[}-at @var{location}@r{,}@r{]} @var{expression}
39442 @itemx maint agent-eval @r{[}-at @var{location}@r{,}@r{]} @var{expression}
39443 Translate the given @var{expression} into remote agent bytecodes.
39444 This command is useful for debugging the Agent Expression mechanism
39445 (@pxref{Agent Expressions}).  The @samp{agent} version produces an
39446 expression useful for data collection, such as by tracepoints, while
39447 @samp{maint agent-eval} produces an expression that evaluates directly
39448 to a result.  For instance, a collection expression for @code{globa +
39449 globb} will include bytecodes to record four bytes of memory at each
39450 of the addresses of @code{globa} and @code{globb}, while discarding
39451 the result of the addition, while an evaluation expression will do the
39452 addition and return the sum.
39453 If @code{-at} is given, generate remote agent bytecode for @var{location}.
39454 If not, generate remote agent bytecode for current frame PC address.
39456 @kindex maint agent-printf
39457 @item maint agent-printf @var{format},@var{expr},...
39458 Translate the given format string and list of argument expressions
39459 into remote agent bytecodes and display them as a disassembled list.
39460 This command is useful for debugging the agent version of dynamic
39461 printf (@pxref{Dynamic Printf}).
39463 @kindex maint info breakpoints
39464 @item @anchor{maint info breakpoints}maint info breakpoints
39465 Using the same format as @samp{info breakpoints}, display both the
39466 breakpoints you've set explicitly, and those @value{GDBN} is using for
39467 internal purposes.  Internal breakpoints are shown with negative
39468 breakpoint numbers.  The type column identifies what kind of breakpoint
39469 is shown:
39471 @table @code
39472 @item breakpoint
39473 Normal, explicitly set breakpoint.
39475 @item watchpoint
39476 Normal, explicitly set watchpoint.
39478 @item longjmp
39479 Internal breakpoint, used to handle correctly stepping through
39480 @code{longjmp} calls.
39482 @item longjmp resume
39483 Internal breakpoint at the target of a @code{longjmp}.
39485 @item until
39486 Temporary internal breakpoint used by the @value{GDBN} @code{until} command.
39488 @item finish
39489 Temporary internal breakpoint used by the @value{GDBN} @code{finish} command.
39491 @item shlib events
39492 Shared library events.
39494 @end table
39496 @kindex maint info btrace
39497 @item maint info btrace
39498 Pint information about raw branch tracing data.
39500 @kindex maint btrace packet-history
39501 @item maint btrace packet-history
39502 Print the raw branch trace packets that are used to compute the
39503 execution history for the @samp{record btrace} command.  Both the
39504 information and the format in which it is printed depend on the btrace
39505 recording format.
39507 @table @code
39508 @item bts
39509 For the BTS recording format, print a list of blocks of sequential
39510 code.  For each block, the following information is printed:
39512 @table @asis
39513 @item Block number
39514 Newer blocks have higher numbers.  The oldest block has number zero.
39515 @item Lowest @samp{PC}
39516 @item Highest @samp{PC}
39517 @end table
39519 @item pt
39520 For the Intel Processor Trace recording format, print a list of
39521 Intel Processor Trace packets.  For each packet, the following
39522 information is printed:
39524 @table @asis
39525 @item Packet number
39526 Newer packets have higher numbers.  The oldest packet has number zero.
39527 @item Trace offset
39528 The packet's offset in the trace stream.
39529 @item Packet opcode and payload
39530 @end table
39531 @end table
39533 @kindex maint btrace clear-packet-history
39534 @item maint btrace clear-packet-history
39535 Discards the cached packet history printed by the @samp{maint btrace
39536 packet-history} command.  The history will be computed again when
39537 needed.
39539 @kindex maint btrace clear
39540 @item maint btrace clear
39541 Discard the branch trace data.  The data will be fetched anew and the
39542 branch trace will be recomputed when needed.
39544 This implicitly truncates the branch trace to a single branch trace
39545 buffer.  When updating branch trace incrementally, the branch trace
39546 available to @value{GDBN} may be bigger than a single branch trace
39547 buffer.
39549 @kindex maint set btrace pt skip-pad
39550 @item maint set btrace pt skip-pad
39551 @kindex maint show btrace pt skip-pad
39552 @item maint show btrace pt skip-pad
39553 Control whether @value{GDBN} will skip PAD packets when computing the
39554 packet history.
39556 @kindex maint info jit
39557 @item maint info jit
39558 Print information about JIT code objects loaded in the current inferior.
39560 @kindex set displaced-stepping
39561 @kindex show displaced-stepping
39562 @cindex displaced stepping support
39563 @cindex out-of-line single-stepping
39564 @item set displaced-stepping
39565 @itemx show displaced-stepping
39566 Control whether or not @value{GDBN} will do @dfn{displaced stepping}
39567 if the target supports it.  Displaced stepping is a way to single-step
39568 over breakpoints without removing them from the inferior, by executing
39569 an out-of-line copy of the instruction that was originally at the
39570 breakpoint location.  It is also known as out-of-line single-stepping.
39572 @table @code
39573 @item set displaced-stepping on
39574 If the target architecture supports it, @value{GDBN} will use
39575 displaced stepping to step over breakpoints.
39577 @item set displaced-stepping off
39578 @value{GDBN} will not use displaced stepping to step over breakpoints,
39579 even if such is supported by the target architecture.
39581 @cindex non-stop mode, and @samp{set displaced-stepping}
39582 @item set displaced-stepping auto
39583 This is the default mode.  @value{GDBN} will use displaced stepping
39584 only if non-stop mode is active (@pxref{Non-Stop Mode}) and the target
39585 architecture supports displaced stepping.
39586 @end table
39588 @kindex maint check-psymtabs
39589 @item maint check-psymtabs
39590 Check the consistency of currently expanded psymtabs versus symtabs.
39591 Use this to check, for example, whether a symbol is in one but not the other.
39593 @kindex maint check-symtabs
39594 @item maint check-symtabs
39595 Check the consistency of currently expanded symtabs.
39597 @kindex maint expand-symtabs
39598 @item maint expand-symtabs [@var{regexp}]
39599 Expand symbol tables.
39600 If @var{regexp} is specified, only expand symbol tables for file
39601 names matching @var{regexp}.
39603 @kindex maint set catch-demangler-crashes
39604 @kindex maint show catch-demangler-crashes
39605 @cindex demangler crashes
39606 @item maint set catch-demangler-crashes [on|off]
39607 @itemx maint show catch-demangler-crashes
39608 Control whether @value{GDBN} should attempt to catch crashes in the
39609 symbol name demangler.  The default is to attempt to catch crashes.
39610 If enabled, the first time a crash is caught, a core file is created,
39611 the offending symbol is displayed and the user is presented with the
39612 option to terminate the current session.
39614 @kindex maint cplus first_component
39615 @item maint cplus first_component @var{name}
39616 Print the first C@t{++} class/namespace component of @var{name}.
39618 @kindex maint cplus namespace
39619 @item maint cplus namespace
39620 Print the list of possible C@t{++} namespaces.
39622 @kindex maint deprecate
39623 @kindex maint undeprecate
39624 @cindex deprecated commands
39625 @item maint deprecate @var{command} @r{[}@var{replacement}@r{]}
39626 @itemx maint undeprecate @var{command}
39627 Deprecate or undeprecate the named @var{command}.  Deprecated commands
39628 cause @value{GDBN} to issue a warning when you use them.  The optional
39629 argument @var{replacement} says which newer command should be used in
39630 favor of the deprecated one; if it is given, @value{GDBN} will mention
39631 the replacement as part of the warning.
39633 @kindex maint dump-me
39634 @item maint dump-me
39635 @cindex @code{SIGQUIT} signal, dump core of @value{GDBN}
39636 Cause a fatal signal in the debugger and force it to dump its core.
39637 This is supported only on systems which support aborting a program
39638 with the @code{SIGQUIT} signal.
39640 @kindex maint internal-error
39641 @kindex maint internal-warning
39642 @kindex maint demangler-warning
39643 @cindex demangler crashes
39644 @item maint internal-error @r{[}@var{message-text}@r{]}
39645 @itemx maint internal-warning @r{[}@var{message-text}@r{]}
39646 @itemx maint demangler-warning @r{[}@var{message-text}@r{]}
39648 Cause @value{GDBN} to call the internal function @code{internal_error},
39649 @code{internal_warning} or @code{demangler_warning} and hence behave
39650 as though an internal problem has been detected.  In addition to
39651 reporting the internal problem, these functions give the user the
39652 opportunity to either quit @value{GDBN} or (for @code{internal_error}
39653 and @code{internal_warning}) create a core file of the current
39654 @value{GDBN} session.
39656 These commands take an optional parameter @var{message-text} that is
39657 used as the text of the error or warning message.
39659 Here's an example of using @code{internal-error}:
39661 @smallexample
39662 (@value{GDBP}) @kbd{maint internal-error testing, 1, 2}
39663 @dots{}/maint.c:121: internal-error: testing, 1, 2
39664 A problem internal to GDB has been detected.  Further
39665 debugging may prove unreliable.
39666 Quit this debugging session? (y or n) @kbd{n}
39667 Create a core file? (y or n) @kbd{n}
39668 (@value{GDBP})
39669 @end smallexample
39671 @cindex @value{GDBN} internal error
39672 @cindex internal errors, control of @value{GDBN} behavior
39673 @cindex demangler crashes
39675 @kindex maint set internal-error
39676 @kindex maint show internal-error
39677 @kindex maint set internal-warning
39678 @kindex maint show internal-warning
39679 @kindex maint set demangler-warning
39680 @kindex maint show demangler-warning
39681 @item maint set internal-error @var{action} [ask|yes|no]
39682 @itemx maint show internal-error @var{action}
39683 @itemx maint set internal-warning @var{action} [ask|yes|no]
39684 @itemx maint show internal-warning @var{action}
39685 @itemx maint set demangler-warning @var{action} [ask|yes|no]
39686 @itemx maint show demangler-warning @var{action}
39687 When @value{GDBN} reports an internal problem (error or warning) it
39688 gives the user the opportunity to both quit @value{GDBN} and create a
39689 core file of the current @value{GDBN} session.  These commands let you
39690 override the default behaviour for each particular @var{action},
39691 described in the table below.
39693 @table @samp
39694 @item quit
39695 You can specify that @value{GDBN} should always (yes) or never (no)
39696 quit.  The default is to ask the user what to do.
39698 @item corefile
39699 You can specify that @value{GDBN} should always (yes) or never (no)
39700 create a core file.  The default is to ask the user what to do.  Note
39701 that there is no @code{corefile} option for @code{demangler-warning}:
39702 demangler warnings always create a core file and this cannot be
39703 disabled.
39704 @end table
39706 @kindex maint set internal-error
39707 @kindex maint show internal-error
39708 @kindex maint set internal-warning
39709 @kindex maint show internal-warning
39710 @item maint set internal-error backtrace @r{[}on|off@r{]}
39711 @itemx maint show internal-error backtrace
39712 @itemx maint set internal-warning backtrace @r{[}on|off@r{]}
39713 @itemx maint show internal-warning backtrace
39714 When @value{GDBN} reports an internal problem (error or warning) it is
39715 possible to have a backtrace of @value{GDBN} printed to the standard
39716 error stream.  This is @samp{on} by default for @code{internal-error}
39717 and @samp{off} by default for @code{internal-warning}.
39719 @anchor{maint packet}
39720 @kindex maint packet
39721 @item maint packet @var{text}
39722 If @value{GDBN} is talking to an inferior via the serial protocol,
39723 then this command sends the string @var{text} to the inferior, and
39724 displays the response packet.  @value{GDBN} supplies the initial
39725 @samp{$} character, the terminating @samp{#} character, and the
39726 checksum.
39728 Any non-printable characters in the reply are printed as escaped hex,
39729 e.g. @samp{\x00}, @samp{\x01}, etc.
39731 @kindex maint print architecture
39732 @item maint print architecture @r{[}@var{file}@r{]}
39733 Print the entire architecture configuration.  The optional argument
39734 @var{file} names the file where the output goes.
39736 @kindex maint print c-tdesc
39737 @item maint print c-tdesc @r{[}-single-feature@r{]} @r{[}@var{file}@r{]}
39738 Print the target description (@pxref{Target Descriptions}) as
39739 a C source file.  By default, the target description is for the current
39740 target, but if the optional argument @var{file} is provided, that file
39741 is used to produce the description.  The @var{file} should be an XML
39742 document, of the form described in @ref{Target Description Format}.
39743 The created source file is built into @value{GDBN} when @value{GDBN} is
39744 built again.  This command is used by developers after they add or
39745 modify XML target descriptions.
39747 When the optional flag @samp{-single-feature} is provided then the
39748 target description being processed (either the default, or from
39749 @var{file}) must only contain a single feature.  The source file
39750 produced is different in this case.
39752 @kindex maint print xml-tdesc
39753 @item maint print xml-tdesc  @r{[}@var{file}@r{]}
39754 Print the target description (@pxref{Target Descriptions}) as an XML
39755 file.  By default print the target description for the current target,
39756 but if the optional argument @var{file} is provided, then that file is
39757 read in by GDB and then used to produce the description.  The
39758 @var{file} should be an XML document, of the form described in
39759 @ref{Target Description Format}.
39761 @kindex maint check xml-descriptions
39762 @item maint check xml-descriptions @var{dir}
39763 Check that the target descriptions dynamically created by @value{GDBN}
39764 equal the descriptions created from XML files found in @var{dir}.
39766 @anchor{maint check libthread-db}
39767 @kindex maint check libthread-db
39768 @item maint check libthread-db
39769 Run integrity checks on the current inferior's thread debugging
39770 library.  This exercises all @code{libthread_db} functionality used by
39771 @value{GDBN} on GNU/Linux systems, and by extension also exercises the
39772 @code{proc_service} functions provided by @value{GDBN} that
39773 @code{libthread_db} uses.  Note that parts of the test may be skipped
39774 on some platforms when debugging core files.
39776 @kindex maint print core-file-backed-mappings
39777 @cindex memory address space mappings
39778 @item maint print core-file-backed-mappings
39779 Print the file-backed mappings which were loaded from a core file note.
39780 This output represents state internal to @value{GDBN} and should be
39781 similar to the mappings displayed by the @code{info proc mappings}
39782 command.
39784 @kindex maint print dummy-frames
39785 @item maint print dummy-frames
39786 Prints the contents of @value{GDBN}'s internal dummy-frame stack.
39788 @smallexample
39789 (@value{GDBP}) @kbd{b add}
39790 @dots{}
39791 (@value{GDBP}) @kbd{print add(2,3)}
39792 Breakpoint 2, add (a=2, b=3) at @dots{}
39793 58        return (a + b);
39794 The program being debugged stopped while in a function called from GDB.
39795 @dots{}
39796 (@value{GDBP}) @kbd{maint print dummy-frames}
39797 0xa8206d8: id=@{stack=0xbfffe734,code=0xbfffe73f,!special@}, ptid=process 9353
39798 (@value{GDBP})
39799 @end smallexample
39801 Takes an optional file parameter.
39803 @kindex maint print registers
39804 @kindex maint print raw-registers
39805 @kindex maint print cooked-registers
39806 @kindex maint print register-groups
39807 @kindex maint print remote-registers
39808 @item maint print registers @r{[}@var{file}@r{]}
39809 @itemx maint print raw-registers @r{[}@var{file}@r{]}
39810 @itemx maint print cooked-registers @r{[}@var{file}@r{]}
39811 @itemx maint print register-groups @r{[}@var{file}@r{]}
39812 @itemx maint print remote-registers @r{[}@var{file}@r{]}
39813 Print @value{GDBN}'s internal register data structures.
39815 The command @code{maint print raw-registers} includes the contents of
39816 the raw register cache; the command @code{maint print
39817 cooked-registers} includes the (cooked) value of all registers,
39818 including registers which aren't available on the target nor visible
39819 to user; the command @code{maint print register-groups} includes the
39820 groups that each register is a member of; and the command @code{maint
39821 print remote-registers} includes the remote target's register numbers
39822 and offsets in the `G' packets.
39824 These commands take an optional parameter, a file name to which to
39825 write the information.
39827 @kindex maint print reggroups
39828 @item maint print reggroups @r{[}@var{file}@r{]}
39829 Print @value{GDBN}'s internal register group data structures.  The
39830 optional argument @var{file} tells to what file to write the
39831 information.
39833 The register groups info looks like this:
39835 @smallexample
39836 (@value{GDBP}) @kbd{maint print reggroups}
39837  Group      Type
39838  general    user
39839  float      user
39840  all        user
39841  vector     user
39842  system     user
39843  save       internal
39844  restore    internal
39845 @end smallexample
39847 @kindex maint flush register-cache
39848 @kindex flushregs
39849 @cindex register cache, flushing
39850 @item maint flush register-cache
39851 @itemx flushregs
39852 Flush the contents of the register cache and as a consequence the
39853 frame cache.  This command is useful when debugging issues related to
39854 register fetching, or frame unwinding.  The command @code{flushregs}
39855 is deprecated in favor of @code{maint flush register-cache}.
39857 @kindex maint flush source-cache
39858 @cindex source code, caching
39859 @item maint flush source-cache
39860 Flush @value{GDBN}'s cache of source code file contents.  After
39861 @value{GDBN} reads a source file, and optionally applies styling
39862 (@pxref{Output Styling}), the file contents are cached.  This command
39863 clears that cache.  The next time @value{GDBN} wants to show lines
39864 from a source file, the content will be re-read.
39866 This command is useful when debugging issues related to source code
39867 styling.  After flushing the cache any source code displayed by
39868 @value{GDBN} will be re-read and re-styled.
39870 @kindex maint print objfiles
39871 @cindex info for known object files
39872 @item maint print objfiles @r{[}@var{regexp}@r{]}
39873 Print a dump of all known object files.
39874 If @var{regexp} is specified, only print object files whose names
39875 match @var{regexp}.  For each object file, this command prints its name,
39876 address in memory, and all of its psymtabs and symtabs.
39878 @kindex maint print user-registers
39879 @cindex user registers
39880 @item maint print user-registers
39881 List all currently available @dfn{user registers}.  User registers
39882 typically provide alternate names for actual hardware registers.  They
39883 include the four ``standard'' registers @code{$fp}, @code{$pc},
39884 @code{$sp}, and @code{$ps}.  @xref{standard registers}.  User
39885 registers can be used in expressions in the same way as the canonical
39886 register names, but only the latter are listed by the @code{info
39887 registers} and @code{maint print registers} commands.
39889 @kindex maint print section-scripts
39890 @cindex info for known .debug_gdb_scripts-loaded scripts
39891 @item maint print section-scripts [@var{regexp}]
39892 Print a dump of scripts specified in the @code{.debug_gdb_section} section.
39893 If @var{regexp} is specified, only print scripts loaded by object files
39894 matching @var{regexp}.
39895 For each script, this command prints its name as specified in the objfile,
39896 and the full path if known.
39897 @xref{dotdebug_gdb_scripts section}.
39899 @kindex maint print statistics
39900 @cindex bcache statistics
39901 @item maint print statistics
39902 This command prints, for each object file in the program, various data
39903 about that object file followed by the byte cache (@dfn{bcache})
39904 statistics for the object file.  The objfile data includes the number
39905 of minimal, partial, full, and stabs symbols, the number of types
39906 defined by the objfile, the number of as yet unexpanded psym tables,
39907 the number of line tables and string tables, and the amount of memory
39908 used by the various tables.  The bcache statistics include the counts,
39909 sizes, and counts of duplicates of all and unique objects, max,
39910 average, and median entry size, total memory used and its overhead and
39911 savings, and various measures of the hash table size and chain
39912 lengths.
39914 @kindex maint print target-stack
39915 @cindex target stack description
39916 @item maint print target-stack
39917 A @dfn{target} is an interface between the debugger and a particular
39918 kind of file or process.  Targets can be stacked in @dfn{strata},
39919 so that more than one target can potentially respond to a request.
39920 In particular, memory accesses will walk down the stack of targets
39921 until they find a target that is interested in handling that particular
39922 address.
39924 This command prints a short description of each layer that was pushed on
39925 the @dfn{target stack}, starting from the top layer down to the bottom one.
39927 @kindex maint print type
39928 @cindex type chain of a data type
39929 @item maint print type @var{expr}
39930 Print the type chain for a type specified by @var{expr}.  The argument
39931 can be either a type name or a symbol.  If it is a symbol, the type of
39932 that symbol is described.  The type chain produced by this command is
39933 a recursive definition of the data type as stored in @value{GDBN}'s
39934 data structures, including its flags and contained types.
39936 @kindex maint selftest
39937 @cindex self tests
39938 @item maint selftest @r{[}-verbose@r{]} @r{[}@var{filter}@r{]}
39939 Run any self tests that were compiled in to @value{GDBN}.  This will
39940 print a message showing how many tests were run, and how many failed.
39941 If a @var{filter} is passed, only the tests with @var{filter} in their
39942 name will be ran.  If @code{-verbose} is passed, the self tests can be
39943 more verbose.
39945 @kindex maint set selftest verbose
39946 @kindex maint show selftest verbose
39947 @cindex self tests
39948 @item maint set selftest verbose
39949 @item maint show selftest verbose
39950 Control whether self tests are run verbosely or not.
39952 @kindex maint info selftests
39953 @cindex self tests
39954 @item maint info selftests
39955 List the selftests compiled in to @value{GDBN}.
39957 @kindex maint set dwarf always-disassemble
39958 @kindex maint show dwarf always-disassemble
39959 @item maint set dwarf always-disassemble
39960 @item maint show dwarf always-disassemble
39961 Control the behavior of @code{info address} when using DWARF debugging
39962 information.
39964 The default is @code{off}, which means that @value{GDBN} should try to
39965 describe a variable's location in an easily readable format.  When
39966 @code{on}, @value{GDBN} will instead display the DWARF location
39967 expression in an assembly-like format.  Note that some locations are
39968 too complex for @value{GDBN} to describe simply; in this case you will
39969 always see the disassembly form.
39971 Here is an example of the resulting disassembly:
39973 @smallexample
39974 (gdb) info addr argc
39975 Symbol "argc" is a complex DWARF expression:
39976      1: DW_OP_fbreg 0
39977 @end smallexample
39979 For more information on these expressions, see
39980 @uref{http://www.dwarfstd.org/, the DWARF standard}.
39982 @kindex maint set dwarf max-cache-age
39983 @kindex maint show dwarf max-cache-age
39984 @item maint set dwarf max-cache-age
39985 @itemx maint show dwarf max-cache-age
39986 Control the DWARF compilation unit cache.
39988 @cindex DWARF compilation units cache
39989 In object files with inter-compilation-unit references, such as those
39990 produced by the GCC option @samp{-feliminate-dwarf2-dups}, the DWARF
39991 reader needs to frequently refer to previously read compilation units.
39992 This setting controls how long a compilation unit will remain in the
39993 cache if it is not referenced.  A higher limit means that cached
39994 compilation units will be stored in memory longer, and more total
39995 memory will be used.  Setting it to zero disables caching, which will
39996 slow down @value{GDBN} startup, but reduce memory consumption.
39998 @kindex maint set dwarf unwinders
39999 @kindex maint show dwarf unwinders
40000 @item maint set dwarf unwinders
40001 @itemx maint show dwarf unwinders
40002 Control use of the DWARF frame unwinders.
40004 @cindex DWARF frame unwinders
40005 Many targets that support DWARF debugging use @value{GDBN}'s DWARF
40006 frame unwinders to build the backtrace.  Many of these targets will
40007 also have a second mechanism for building the backtrace for use in
40008 cases where DWARF information is not available, this second mechanism
40009 is often an analysis of a function's prologue.
40011 In order to extend testing coverage of the second level stack
40012 unwinding mechanisms it is helpful to be able to disable the DWARF
40013 stack unwinders, this can be done with this switch.
40015 In normal use of @value{GDBN} disabling the DWARF unwinders is not
40016 advisable, there are cases that are better handled through DWARF than
40017 prologue analysis, and the debug experience is likely to be better
40018 with the DWARF frame unwinders enabled.
40020 If DWARF frame unwinders are not supported for a particular target
40021 architecture, then enabling this flag does not cause them to be used.
40023 @kindex maint set worker-threads
40024 @kindex maint show worker-threads
40025 @item maint set worker-threads
40026 @item maint show worker-threads
40027 Control the number of worker threads that may be used by @value{GDBN}.
40028 On capable hosts, @value{GDBN} may use multiple threads to speed up
40029 certain CPU-intensive operations, such as demangling symbol names.
40030 While the number of threads used by @value{GDBN} may vary, this
40031 command can be used to set an upper bound on this number.  The default
40032 is @code{unlimited}, which lets @value{GDBN} choose a reasonable
40033 number.  Note that this only controls worker threads started by
40034 @value{GDBN} itself; libraries used by @value{GDBN} may start threads
40035 of their own.
40037 @kindex maint set profile
40038 @kindex maint show profile
40039 @cindex profiling GDB
40040 @item maint set profile
40041 @itemx maint show profile
40042 Control profiling of @value{GDBN}.
40044 Profiling will be disabled until you use the @samp{maint set profile}
40045 command to enable it.  When you enable profiling, the system will begin
40046 collecting timing and execution count data; when you disable profiling or
40047 exit @value{GDBN}, the results will be written to a log file.  Remember that
40048 if you use profiling, @value{GDBN} will overwrite the profiling log file
40049 (often called @file{gmon.out}).  If you have a record of important profiling
40050 data in a @file{gmon.out} file, be sure to move it to a safe location.
40052 Configuring with @samp{--enable-profiling} arranges for @value{GDBN} to be
40053 compiled with the @samp{-pg} compiler option.
40055 @kindex maint set show-debug-regs
40056 @kindex maint show show-debug-regs
40057 @cindex hardware debug registers
40058 @item maint set show-debug-regs
40059 @itemx maint show show-debug-regs
40060 Control whether to show variables that mirror the hardware debug
40061 registers.  Use @code{on} to enable, @code{off} to disable.  If
40062 enabled, the debug registers values are shown when @value{GDBN} inserts or
40063 removes a hardware breakpoint or watchpoint, and when the inferior
40064 triggers a hardware-assisted breakpoint or watchpoint.
40066 @kindex maint set show-all-tib
40067 @kindex maint show show-all-tib
40068 @item maint set show-all-tib
40069 @itemx maint show show-all-tib
40070 Control whether to show all non zero areas within a 1k block starting
40071 at thread local base, when using the @samp{info w32 thread-information-block}
40072 command.
40074 @kindex maint set target-async
40075 @kindex maint show target-async
40076 @item maint set target-async
40077 @itemx maint show target-async
40078 This controls whether @value{GDBN} targets operate in synchronous or
40079 asynchronous mode (@pxref{Background Execution}).  Normally the
40080 default is asynchronous, if it is available; but this can be changed
40081 to more easily debug problems occurring only in synchronous mode.
40083 @kindex maint set target-non-stop @var{mode} [on|off|auto]
40084 @kindex maint show target-non-stop
40085 @item maint set target-non-stop
40086 @itemx maint show target-non-stop
40088 This controls whether @value{GDBN} targets always operate in non-stop
40089 mode even if @code{set non-stop} is @code{off} (@pxref{Non-Stop
40090 Mode}).  The default is @code{auto}, meaning non-stop mode is enabled
40091 if supported by the target.
40093 @table @code
40094 @item maint set target-non-stop auto
40095 This is the default mode.  @value{GDBN} controls the target in
40096 non-stop mode if the target supports it.
40098 @item maint set target-non-stop on
40099 @value{GDBN} controls the target in non-stop mode even if the target
40100 does not indicate support.
40102 @item maint set target-non-stop off
40103 @value{GDBN} does not control the target in non-stop mode even if the
40104 target supports it.
40105 @end table
40107 @kindex maint set tui-resize-message
40108 @kindex maint show tui-resize-message
40109 @item maint set tui-resize-message
40110 @item maint show tui-resize-message
40111 Control whether @value{GDBN} displays a message each time the terminal
40112 is resized when in TUI mode.  The default is @code{off}, which means
40113 that @value{GDBN} is silent during resizes.  When @code{on},
40114 @value{GDBN} will display a message after a resize is completed; the
40115 message will include a number indicating how many times the terminal
40116 has been resized.  This setting is intended for use by the test suite,
40117 where it would otherwise be difficult to determine when a resize and
40118 refresh has been completed.
40120 @kindex maint set per-command
40121 @kindex maint show per-command
40122 @item maint set per-command
40123 @itemx maint show per-command
40124 @cindex resources used by commands
40126 @value{GDBN} can display the resources used by each command.
40127 This is useful in debugging performance problems.
40129 @table @code
40130 @item maint set per-command space [on|off]
40131 @itemx maint show per-command space
40132 Enable or disable the printing of the memory used by GDB for each command.
40133 If enabled, @value{GDBN} will display how much memory each command
40134 took, following the command's own output.
40135 This can also be requested by invoking @value{GDBN} with the
40136 @option{--statistics} command-line switch (@pxref{Mode Options}).
40138 @item maint set per-command time [on|off]
40139 @itemx maint show per-command time
40140 Enable or disable the printing of the execution time of @value{GDBN}
40141 for each command.
40142 If enabled, @value{GDBN} will display how much time it
40143 took to execute each command, following the command's own output.
40144 Both CPU time and wallclock time are printed.
40145 Printing both is useful when trying to determine whether the cost is
40146 CPU or, e.g., disk/network latency.
40147 Note that the CPU time printed is for @value{GDBN} only, it does not include
40148 the execution time of the inferior because there's no mechanism currently
40149 to compute how much time was spent by @value{GDBN} and how much time was
40150 spent by the program been debugged.
40151 This can also be requested by invoking @value{GDBN} with the
40152 @option{--statistics} command-line switch (@pxref{Mode Options}).
40154 @item maint set per-command symtab [on|off]
40155 @itemx maint show per-command symtab
40156 Enable or disable the printing of basic symbol table statistics
40157 for each command.
40158 If enabled, @value{GDBN} will display the following information:
40160 @enumerate a
40161 @item
40162 number of symbol tables
40163 @item
40164 number of primary symbol tables
40165 @item
40166 number of blocks in the blockvector
40167 @end enumerate
40168 @end table
40170 @kindex maint set check-libthread-db
40171 @kindex maint show check-libthread-db
40172 @item maint set check-libthread-db [on|off]
40173 @itemx maint show check-libthread-db
40174 Control whether @value{GDBN} should run integrity checks on inferior
40175 specific thread debugging libraries as they are loaded.  The default
40176 is not to perform such checks.  If any check fails @value{GDBN} will
40177 unload the library and continue searching for a suitable candidate as
40178 described in @ref{set libthread-db-search-path}.  For more information
40179 about the tests, see @ref{maint check libthread-db}.
40181 @kindex maint set gnu-source-highlight enabled
40182 @kindex maint show gnu-source-highlight enabled
40183 @item maint set gnu-source-highlight enabled @r{[}on|off@r{]}
40184 @itemx maint show gnu-source-highlight enabled
40185 Control whether @value{GDBN} should use the GNU Source Highlight
40186 library for applying styling to source code (@pxref{Output Styling}).
40187 This will be @samp{on} by default if the GNU Source Highlight library
40188 is available.  If the GNU Source Highlight library is not available,
40189 then this will be @samp{off} by default, and attempting to change this
40190 value to @samp{on} will give an error.
40192 If the GNU Source Highlight library is not being used, then
40193 @value{GDBN} will use the Python Pygments package for source code
40194 styling, if it is available.
40196 This option is useful for debugging @value{GDBN}'s use of the Pygments
40197 library when @value{GDBN} is linked against the GNU Source Highlight
40198 library.
40200 @kindex maint space
40201 @cindex memory used by commands
40202 @item maint space @var{value}
40203 An alias for @code{maint set per-command space}.
40204 A non-zero value enables it, zero disables it.
40206 @kindex maint time
40207 @cindex time of command execution
40208 @item maint time @var{value}
40209 An alias for @code{maint set per-command time}.
40210 A non-zero value enables it, zero disables it.
40212 @kindex maint translate-address
40213 @item maint translate-address @r{[}@var{section}@r{]} @var{addr}
40214 Find the symbol stored at the location specified by the address
40215 @var{addr} and an optional section name @var{section}.  If found,
40216 @value{GDBN} prints the name of the closest symbol and an offset from
40217 the symbol's location to the specified address.  This is similar to
40218 the @code{info address} command (@pxref{Symbols}), except that this
40219 command also allows to find symbols in other sections.
40221 If section was not specified, the section in which the symbol was found
40222 is also printed.  For dynamically linked executables, the name of
40223 executable or shared library containing the symbol is printed as well.
40225 @kindex maint test-options
40226 @item maint test-options require-delimiter
40227 @itemx maint test-options unknown-is-error
40228 @itemx maint test-options unknown-is-operand
40229 These commands are used by the testsuite to validate the command
40230 options framework.  The @code{require-delimiter} variant requires a
40231 double-dash delimiter to indicate end of options.  The
40232 @code{unknown-is-error} and @code{unknown-is-operand} do not.  The
40233 @code{unknown-is-error} variant throws an error on unknown option,
40234 while @code{unknown-is-operand} treats unknown options as the start of
40235 the command's operands.  When run, the commands output the result of
40236 the processed options.  When completed, the commands store the
40237 internal result of completion in a variable exposed by the @code{maint
40238 show test-options-completion-result} command.
40240 @kindex maint show test-options-completion-result
40241 @item maint show test-options-completion-result
40242 Shows the result of completing the @code{maint test-options}
40243 subcommands.  This is used by the testsuite to validate completion
40244 support in the command options framework.
40246 @kindex maint set test-settings
40247 @kindex maint show test-settings
40248 @item maint set test-settings @var{kind}
40249 @itemx maint show test-settings @var{kind}
40250 These are representative commands for each @var{kind} of setting type
40251 @value{GDBN} supports.  They are used by the testsuite for exercising
40252 the settings infrastructure.
40254 @kindex maint set backtrace-on-fatal-signal
40255 @kindex maint show backtrace-on-fatal-signal
40256 @item maint set backtrace-on-fatal-signal [on|off]
40257 @itemx maint show backtrace-on-fatal-signal
40258 When this setting is @code{on}, if @value{GDBN} itself terminates with
40259 a fatal signal (e.g.@: SIGSEGV), then a limited backtrace will be
40260 printed to the standard error stream.  This backtrace can be used to
40261 help diagnose crashes within @value{GDBN} in situations where a user
40262 is unable to share a corefile with the @value{GDBN} developers.
40264 If the functionality to provide this backtrace is not available for
40265 the platform on which GDB is running then this feature will be
40266 @code{off} by default, and attempting to turn this feature on will
40267 give an error.
40269 For platforms that do support creating the backtrace this feature is
40270 @code{on} by default.
40272 @kindex maint with
40273 @item maint with @var{setting} [@var{value}] [-- @var{command}]
40274 Like the @code{with} command, but works with @code{maintenance set}
40275 variables.  This is used by the testsuite to exercise the @code{with}
40276 command's infrastructure.
40278 @end table
40280 The following command is useful for non-interactive invocations of
40281 @value{GDBN}, such as in the test suite.
40283 @table @code
40284 @item set watchdog @var{nsec}
40285 @kindex set watchdog
40286 @cindex watchdog timer
40287 @cindex timeout for commands
40288 Set the maximum number of seconds @value{GDBN} will wait for the
40289 target operation to finish.  If this time expires, @value{GDBN}
40290 reports and error and the command is aborted.
40292 @item show watchdog
40293 Show the current setting of the target wait timeout.
40294 @end table
40296 @node Remote Protocol
40297 @appendix @value{GDBN} Remote Serial Protocol
40299 @menu
40300 * Overview::
40301 * Packets::
40302 * Stop Reply Packets::
40303 * General Query Packets::
40304 * Architecture-Specific Protocol Details::
40305 * Tracepoint Packets::
40306 * Host I/O Packets::
40307 * Interrupts::
40308 * Notification Packets::
40309 * Remote Non-Stop::
40310 * Packet Acknowledgment::
40311 * Examples::
40312 * File-I/O Remote Protocol Extension::
40313 * Library List Format::
40314 * Library List Format for SVR4 Targets::
40315 * Memory Map Format::
40316 * Thread List Format::
40317 * Traceframe Info Format::
40318 * Branch Trace Format::
40319 * Branch Trace Configuration Format::
40320 @end menu
40322 @node Overview
40323 @section Overview
40325 There may be occasions when you need to know something about the
40326 protocol---for example, if there is only one serial port to your target
40327 machine, you might want your program to do something special if it
40328 recognizes a packet meant for @value{GDBN}.
40330 In the examples below, @samp{->} and @samp{<-} are used to indicate
40331 transmitted and received data, respectively.
40333 @cindex protocol, @value{GDBN} remote serial
40334 @cindex serial protocol, @value{GDBN} remote
40335 @cindex remote serial protocol
40336 All @value{GDBN} commands and responses (other than acknowledgments
40337 and notifications, see @ref{Notification Packets}) are sent as a
40338 @var{packet}.  A @var{packet} is introduced with the character
40339 @samp{$}, the actual @var{packet-data}, and the terminating character
40340 @samp{#} followed by a two-digit @var{checksum}:
40342 @smallexample
40343 @code{$}@var{packet-data}@code{#}@var{checksum}
40344 @end smallexample
40345 @noindent
40347 @cindex checksum, for @value{GDBN} remote
40348 @noindent
40349 The two-digit @var{checksum} is computed as the modulo 256 sum of all
40350 characters between the leading @samp{$} and the trailing @samp{#} (an
40351 eight bit unsigned checksum).
40353 Implementors should note that prior to @value{GDBN} 5.0 the protocol
40354 specification also included an optional two-digit @var{sequence-id}:
40356 @smallexample
40357 @code{$}@var{sequence-id}@code{:}@var{packet-data}@code{#}@var{checksum}
40358 @end smallexample
40360 @cindex sequence-id, for @value{GDBN} remote
40361 @noindent
40362 That @var{sequence-id} was appended to the acknowledgment.  @value{GDBN}
40363 has never output @var{sequence-id}s.  Stubs that handle packets added
40364 since @value{GDBN} 5.0 must not accept @var{sequence-id}.
40366 When either the host or the target machine receives a packet, the first
40367 response expected is an acknowledgment: either @samp{+} (to indicate
40368 the package was received correctly) or @samp{-} (to request
40369 retransmission):
40371 @smallexample
40372 -> @code{$}@var{packet-data}@code{#}@var{checksum}
40373 <- @code{+}
40374 @end smallexample
40375 @noindent
40377 The @samp{+}/@samp{-} acknowledgments can be disabled
40378 once a connection is established.
40379 @xref{Packet Acknowledgment}, for details.
40381 The host (@value{GDBN}) sends @var{command}s, and the target (the
40382 debugging stub incorporated in your program) sends a @var{response}.  In
40383 the case of step and continue @var{command}s, the response is only sent
40384 when the operation has completed, and the target has again stopped all
40385 threads in all attached processes.  This is the default all-stop mode
40386 behavior, but the remote protocol also supports @value{GDBN}'s non-stop 
40387 execution mode; see @ref{Remote Non-Stop}, for details.
40389 @var{packet-data} consists of a sequence of characters with the
40390 exception of @samp{#} and @samp{$} (see @samp{X} packet for additional
40391 exceptions).
40393 @cindex remote protocol, field separator
40394 Fields within the packet should be separated using @samp{,} @samp{;} or
40395 @samp{:}.  Except where otherwise noted all numbers are represented in
40396 @sc{hex} with leading zeros suppressed.
40398 Implementors should note that prior to @value{GDBN} 5.0, the character
40399 @samp{:} could not appear as the third character in a packet (as it
40400 would potentially conflict with the @var{sequence-id}).
40402 @cindex remote protocol, binary data
40403 @anchor{Binary Data}
40404 Binary data in most packets is encoded either as two hexadecimal
40405 digits per byte of binary data.  This allowed the traditional remote
40406 protocol to work over connections which were only seven-bit clean.
40407 Some packets designed more recently assume an eight-bit clean
40408 connection, and use a more efficient encoding to send and receive
40409 binary data.
40411 The binary data representation uses @code{7d} (@sc{ascii} @samp{@}})
40412 as an escape character.  Any escaped byte is transmitted as the escape
40413 character followed by the original character XORed with @code{0x20}.
40414 For example, the byte @code{0x7d} would be transmitted as the two
40415 bytes @code{0x7d 0x5d}.  The bytes @code{0x23} (@sc{ascii} @samp{#}),
40416 @code{0x24} (@sc{ascii} @samp{$}), and @code{0x7d} (@sc{ascii}
40417 @samp{@}}) must always be escaped.  Responses sent by the stub
40418 must also escape @code{0x2a} (@sc{ascii} @samp{*}), so that it
40419 is not interpreted as the start of a run-length encoded sequence
40420 (described next).
40422 Response @var{data} can be run-length encoded to save space.
40423 Run-length encoding replaces runs of identical characters with one
40424 instance of the repeated character, followed by a @samp{*} and a
40425 repeat count.  The repeat count is itself sent encoded, to avoid
40426 binary characters in @var{data}: a value of @var{n} is sent as
40427 @code{@var{n}+29}.  For a repeat count greater or equal to 3, this
40428 produces a printable @sc{ascii} character, e.g.@: a space (@sc{ascii}
40429 code 32) for a repeat count of 3.  (This is because run-length
40430 encoding starts to win for counts 3 or more.)  Thus, for example,
40431 @samp{0* } is a run-length encoding of ``0000'': the space character
40432 after @samp{*} means repeat the leading @code{0} @w{@code{32 - 29 =
40433 3}} more times.
40435 The printable characters @samp{#} and @samp{$} or with a numeric value
40436 greater than 126 must not be used.  Runs of six repeats (@samp{#}) or
40437 seven repeats (@samp{$}) can be expanded using a repeat count of only
40438 five (@samp{"}).  For example, @samp{00000000} can be encoded as
40439 @samp{0*"00}.
40441 The error response returned for some packets includes a two character
40442 error number.  That number is not well defined.
40444 @cindex empty response, for unsupported packets
40445 For any @var{command} not supported by the stub, an empty response
40446 (@samp{$#00}) should be returned.  That way it is possible to extend the
40447 protocol.  A newer @value{GDBN} can tell if a packet is supported based
40448 on that response.
40450 At a minimum, a stub is required to support the @samp{?} command to
40451 tell @value{GDBN} the reason for halting, @samp{g} and @samp{G}
40452 commands for register access, and the @samp{m} and @samp{M} commands
40453 for memory access.  Stubs that only control single-threaded targets
40454 can implement run control with the @samp{c} (continue) command, and if
40455 the target architecture supports hardware-assisted single-stepping,
40456 the @samp{s} (step) command.  Stubs that support multi-threading
40457 targets should support the @samp{vCont} command.  All other commands
40458 are optional.
40460 @node Packets
40461 @section Packets
40463 The following table provides a complete list of all currently defined
40464 @var{command}s and their corresponding response @var{data}.
40465 @xref{File-I/O Remote Protocol Extension}, for details about the File
40466 I/O extension of the remote protocol.
40468 Each packet's description has a template showing the packet's overall
40469 syntax, followed by an explanation of the packet's meaning.  We
40470 include spaces in some of the templates for clarity; these are not
40471 part of the packet's syntax.  No @value{GDBN} packet uses spaces to
40472 separate its components.  For example, a template like @samp{foo
40473 @var{bar} @var{baz}} describes a packet beginning with the three ASCII
40474 bytes @samp{foo}, followed by a @var{bar}, followed directly by a
40475 @var{baz}.  @value{GDBN} does not transmit a space character between the
40476 @samp{foo} and the @var{bar}, or between the @var{bar} and the
40477 @var{baz}.
40479 @cindex @var{thread-id}, in remote protocol
40480 @anchor{thread-id syntax} 
40481 Several packets and replies include a @var{thread-id} field to identify
40482 a thread.  Normally these are positive numbers with a target-specific
40483 interpretation, formatted as big-endian hex strings.  A @var{thread-id}
40484 can also be a literal @samp{-1} to indicate all threads, or @samp{0} to
40485 pick any thread.
40487 In addition, the remote protocol supports a multiprocess feature in
40488 which the @var{thread-id} syntax is extended to optionally include both
40489 process and thread ID fields, as @samp{p@var{pid}.@var{tid}}.
40490 The @var{pid} (process) and @var{tid} (thread) components each have the
40491 format described above: a positive number with target-specific
40492 interpretation formatted as a big-endian hex string, literal @samp{-1}
40493 to indicate all processes or threads (respectively), or @samp{0} to
40494 indicate an arbitrary process or thread.  Specifying just a process, as
40495 @samp{p@var{pid}}, is equivalent to @samp{p@var{pid}.-1}.  It is an
40496 error to specify all processes but a specific thread, such as
40497 @samp{p-1.@var{tid}}.  Note that the @samp{p} prefix is @emph{not} used
40498 for those packets and replies explicitly documented to include a process
40499 ID, rather than a @var{thread-id}.
40501 The multiprocess @var{thread-id} syntax extensions are only used if both
40502 @value{GDBN} and the stub report support for the @samp{multiprocess}
40503 feature using @samp{qSupported}.  @xref{multiprocess extensions}, for
40504 more information.
40506 Note that all packet forms beginning with an upper- or lower-case
40507 letter, other than those described here, are reserved for future use.
40509 Here are the packet descriptions.
40511 @table @samp
40513 @item !
40514 @cindex @samp{!} packet
40515 @anchor{extended mode}
40516 Enable extended mode.  In extended mode, the remote server is made
40517 persistent.  The @samp{R} packet is used to restart the program being
40518 debugged.
40520 Reply:
40521 @table @samp
40522 @item OK
40523 The remote target both supports and has enabled extended mode.
40524 @end table
40526 @item ?
40527 @cindex @samp{?} packet
40528 @anchor{? packet}
40529 This is sent when connection is first established to query the reason
40530 the target halted.  The reply is the same as for step and continue.
40531 This packet has a special interpretation when the target is in
40532 non-stop mode; see @ref{Remote Non-Stop}.
40534 Reply:
40535 @xref{Stop Reply Packets}, for the reply specifications.
40537 @item A @var{arglen},@var{argnum},@var{arg},@dots{}
40538 @cindex @samp{A} packet
40539 Initialized @code{argv[]} array passed into program. @var{arglen}
40540 specifies the number of bytes in the hex encoded byte stream
40541 @var{arg}.  See @code{gdbserver} for more details.
40543 Reply:
40544 @table @samp
40545 @item OK
40546 The arguments were set.
40547 @item E @var{NN}
40548 An error occurred.
40549 @end table
40551 @item b @var{baud}
40552 @cindex @samp{b} packet
40553 (Don't use this packet; its behavior is not well-defined.)
40554 Change the serial line speed to @var{baud}.
40556 JTC: @emph{When does the transport layer state change?  When it's
40557 received, or after the ACK is transmitted.  In either case, there are
40558 problems if the command or the acknowledgment packet is dropped.}
40560 Stan: @emph{If people really wanted to add something like this, and get
40561 it working for the first time, they ought to modify ser-unix.c to send
40562 some kind of out-of-band message to a specially-setup stub and have the
40563 switch happen "in between" packets, so that from remote protocol's point
40564 of view, nothing actually happened.}
40566 @item B @var{addr},@var{mode}
40567 @cindex @samp{B} packet
40568 Set (@var{mode} is @samp{S}) or clear (@var{mode} is @samp{C}) a
40569 breakpoint at @var{addr}.
40571 Don't use this packet.  Use the @samp{Z} and @samp{z} packets instead
40572 (@pxref{insert breakpoint or watchpoint packet}).
40574 @cindex @samp{bc} packet
40575 @anchor{bc}
40576 @item bc
40577 Backward continue.  Execute the target system in reverse.  No parameter.
40578 @xref{Reverse Execution}, for more information.
40580 Reply:
40581 @xref{Stop Reply Packets}, for the reply specifications.
40583 @cindex @samp{bs} packet
40584 @anchor{bs}
40585 @item bs
40586 Backward single step.  Execute one instruction in reverse.  No parameter.
40587 @xref{Reverse Execution}, for more information.
40589 Reply:
40590 @xref{Stop Reply Packets}, for the reply specifications.
40592 @item c @r{[}@var{addr}@r{]}
40593 @cindex @samp{c} packet
40594 Continue at @var{addr}, which is the address to resume.  If @var{addr}
40595 is omitted, resume at current address.
40597 This packet is deprecated for multi-threading support.  @xref{vCont
40598 packet}.
40600 Reply:
40601 @xref{Stop Reply Packets}, for the reply specifications.
40603 @item C @var{sig}@r{[};@var{addr}@r{]}
40604 @cindex @samp{C} packet
40605 Continue with signal @var{sig} (hex signal number).  If
40606 @samp{;@var{addr}} is omitted, resume at same address.
40608 This packet is deprecated for multi-threading support.  @xref{vCont
40609 packet}.
40611 Reply:
40612 @xref{Stop Reply Packets}, for the reply specifications.
40614 @item d
40615 @cindex @samp{d} packet
40616 Toggle debug flag.
40618 Don't use this packet; instead, define a general set packet
40619 (@pxref{General Query Packets}).
40621 @item D
40622 @itemx D;@var{pid}
40623 @cindex @samp{D} packet
40624 The first form of the packet is used to detach @value{GDBN} from the 
40625 remote system.  It is sent to the remote target
40626 before @value{GDBN} disconnects via the @code{detach} command.
40628 The second form, including a process ID, is used when multiprocess
40629 protocol extensions are enabled (@pxref{multiprocess extensions}), to
40630 detach only a specific process.  The @var{pid} is specified as a
40631 big-endian hex string.
40633 Reply:
40634 @table @samp
40635 @item OK
40636 for success
40637 @item E @var{NN}
40638 for an error
40639 @end table
40641 @item F @var{RC},@var{EE},@var{CF};@var{XX}
40642 @cindex @samp{F} packet
40643 A reply from @value{GDBN} to an @samp{F} packet sent by the target.
40644 This is part of the File-I/O protocol extension.  @xref{File-I/O
40645 Remote Protocol Extension}, for the specification.
40647 @item g
40648 @anchor{read registers packet}
40649 @cindex @samp{g} packet
40650 Read general registers.
40652 Reply:
40653 @table @samp
40654 @item @var{XX@dots{}}
40655 Each byte of register data is described by two hex digits.  The bytes
40656 with the register are transmitted in target byte order.  The size of
40657 each register and their position within the @samp{g} packet are
40658 determined by the @value{GDBN} internal gdbarch functions
40659 @code{DEPRECATED_REGISTER_RAW_SIZE} and @code{gdbarch_register_name}.
40661 When reading registers from a trace frame (@pxref{Analyze Collected
40662 Data,,Using the Collected Data}), the stub may also return a string of
40663 literal @samp{x}'s in place of the register data digits, to indicate
40664 that the corresponding register has not been collected, thus its value
40665 is unavailable.  For example, for an architecture with 4 registers of
40666 4 bytes each, the following reply indicates to @value{GDBN} that
40667 registers 0 and 2 have not been collected, while registers 1 and 3
40668 have been collected, and both have zero value:
40670 @smallexample
40671 -> @code{g}
40672 <- @code{xxxxxxxx00000000xxxxxxxx00000000}
40673 @end smallexample
40675 @item E @var{NN}
40676 for an error.
40677 @end table
40679 @item G @var{XX@dots{}}
40680 @cindex @samp{G} packet
40681 Write general registers.  @xref{read registers packet}, for a
40682 description of the @var{XX@dots{}} data.
40684 Reply:
40685 @table @samp
40686 @item OK
40687 for success
40688 @item E @var{NN}
40689 for an error
40690 @end table
40692 @item H @var{op} @var{thread-id}
40693 @cindex @samp{H} packet
40694 Set thread for subsequent operations (@samp{m}, @samp{M}, @samp{g},
40695 @samp{G}, et.al.).  Depending on the operation to be performed, @var{op}
40696 should be @samp{c} for step and continue operations (note that this
40697 is deprecated, supporting the @samp{vCont} command is a better
40698 option), and @samp{g} for other operations.  The thread designator
40699 @var{thread-id} has the format and interpretation described in
40700 @ref{thread-id syntax}.
40702 Reply:
40703 @table @samp
40704 @item OK
40705 for success
40706 @item E @var{NN}
40707 for an error
40708 @end table
40710 @c FIXME: JTC:
40711 @c   'H': How restrictive (or permissive) is the thread model.  If a
40712 @c        thread is selected and stopped, are other threads allowed
40713 @c        to continue to execute?  As I mentioned above, I think the
40714 @c        semantics of each command when a thread is selected must be
40715 @c        described.  For example:
40717 @c        'g':    If the stub supports threads and a specific thread is
40718 @c                selected, returns the register block from that thread;
40719 @c                otherwise returns current registers.
40721 @c        'G'     If the stub supports threads and a specific thread is
40722 @c                selected, sets the registers of the register block of
40723 @c                that thread; otherwise sets current registers.
40725 @item i @r{[}@var{addr}@r{[},@var{nnn}@r{]]}
40726 @anchor{cycle step packet}
40727 @cindex @samp{i} packet
40728 Step the remote target by a single clock cycle.  If @samp{,@var{nnn}} is
40729 present, cycle step @var{nnn} cycles.  If @var{addr} is present, cycle
40730 step starting at that address.
40732 @item I
40733 @cindex @samp{I} packet
40734 Signal, then cycle step.  @xref{step with signal packet}.  @xref{cycle
40735 step packet}.
40737 @item k
40738 @cindex @samp{k} packet
40739 Kill request.
40741 The exact effect of this packet is not specified.
40743 For a bare-metal target, it may power cycle or reset the target
40744 system.  For that reason, the @samp{k} packet has no reply.
40746 For a single-process target, it may kill that process if possible.
40748 A multiple-process target may choose to kill just one process, or all
40749 that are under @value{GDBN}'s control.  For more precise control, use
40750 the vKill packet (@pxref{vKill packet}).
40752 If the target system immediately closes the connection in response to
40753 @samp{k}, @value{GDBN} does not consider the lack of packet
40754 acknowledgment to be an error, and assumes the kill was successful.
40756 If connected using @kbd{target extended-remote}, and the target does
40757 not close the connection in response to a kill request, @value{GDBN}
40758 probes the target state as if a new connection was opened
40759 (@pxref{? packet}).
40761 @item m @var{addr},@var{length}
40762 @cindex @samp{m} packet
40763 Read @var{length} addressable memory units starting at address @var{addr}
40764 (@pxref{addressable memory unit}).  Note that @var{addr} may not be aligned to
40765 any particular boundary.
40767 The stub need not use any particular size or alignment when gathering
40768 data from memory for the response; even if @var{addr} is word-aligned
40769 and @var{length} is a multiple of the word size, the stub is free to
40770 use byte accesses, or not.  For this reason, this packet may not be
40771 suitable for accessing memory-mapped I/O devices.
40772 @cindex alignment of remote memory accesses
40773 @cindex size of remote memory accesses
40774 @cindex memory, alignment and size of remote accesses
40776 Reply:
40777 @table @samp
40778 @item @var{XX@dots{}}
40779 Memory contents; each byte is transmitted as a two-digit hexadecimal number.
40780 The reply may contain fewer addressable memory units than requested if the
40781 server was able to read only part of the region of memory.
40782 @item E @var{NN}
40783 @var{NN} is errno
40784 @end table
40786 @item M @var{addr},@var{length}:@var{XX@dots{}}
40787 @cindex @samp{M} packet
40788 Write @var{length} addressable memory units starting at address @var{addr}
40789 (@pxref{addressable memory unit}).  The data is given by @var{XX@dots{}}; each
40790 byte is transmitted as a two-digit hexadecimal number.
40792 Reply:
40793 @table @samp
40794 @item OK
40795 for success
40796 @item E @var{NN}
40797 for an error (this includes the case where only part of the data was
40798 written).
40799 @end table
40801 @item p @var{n}
40802 @cindex @samp{p} packet
40803 Read the value of register @var{n}; @var{n} is in hex.
40804 @xref{read registers packet}, for a description of how the returned
40805 register value is encoded.
40807 Reply:
40808 @table @samp
40809 @item @var{XX@dots{}}
40810 the register's value
40811 @item E @var{NN}
40812 for an error
40813 @item @w{}
40814 Indicating an unrecognized @var{query}.
40815 @end table
40817 @item P @var{n@dots{}}=@var{r@dots{}}
40818 @anchor{write register packet}
40819 @cindex @samp{P} packet
40820 Write register @var{n@dots{}} with value @var{r@dots{}}.  The register
40821 number @var{n} is in hexadecimal, and @var{r@dots{}} contains two hex
40822 digits for each byte in the register (target byte order).
40824 Reply:
40825 @table @samp
40826 @item OK
40827 for success
40828 @item E @var{NN}
40829 for an error
40830 @end table
40832 @item q @var{name} @var{params}@dots{}
40833 @itemx Q @var{name} @var{params}@dots{}
40834 @cindex @samp{q} packet
40835 @cindex @samp{Q} packet
40836 General query (@samp{q}) and set (@samp{Q}).  These packets are
40837 described fully in @ref{General Query Packets}.
40839 @item r
40840 @cindex @samp{r} packet
40841 Reset the entire system.
40843 Don't use this packet; use the @samp{R} packet instead.
40845 @item R @var{XX}
40846 @cindex @samp{R} packet
40847 Restart the program being debugged.  The @var{XX}, while needed, is ignored.
40848 This packet is only available in extended mode (@pxref{extended mode}).
40850 The @samp{R} packet has no reply.
40852 @item s @r{[}@var{addr}@r{]}
40853 @cindex @samp{s} packet
40854 Single step, resuming at @var{addr}.  If
40855 @var{addr} is omitted, resume at same address.
40857 This packet is deprecated for multi-threading support.  @xref{vCont
40858 packet}.
40860 Reply:
40861 @xref{Stop Reply Packets}, for the reply specifications.
40863 @item S @var{sig}@r{[};@var{addr}@r{]}
40864 @anchor{step with signal packet}
40865 @cindex @samp{S} packet
40866 Step with signal.  This is analogous to the @samp{C} packet, but
40867 requests a single-step, rather than a normal resumption of execution.
40869 This packet is deprecated for multi-threading support.  @xref{vCont
40870 packet}.
40872 Reply:
40873 @xref{Stop Reply Packets}, for the reply specifications.
40875 @item t @var{addr}:@var{PP},@var{MM}
40876 @cindex @samp{t} packet
40877 Search backwards starting at address @var{addr} for a match with pattern
40878 @var{PP} and mask @var{MM}, both of which are are 4 byte long.
40879 There must be at least 3 digits in @var{addr}.
40881 @item T @var{thread-id}
40882 @cindex @samp{T} packet
40883 Find out if the thread @var{thread-id} is alive.  @xref{thread-id syntax}.
40885 Reply:
40886 @table @samp
40887 @item OK
40888 thread is still alive
40889 @item E @var{NN}
40890 thread is dead
40891 @end table
40893 @item v
40894 Packets starting with @samp{v} are identified by a multi-letter name,
40895 up to the first @samp{;} or @samp{?} (or the end of the packet).
40897 @item vAttach;@var{pid}
40898 @cindex @samp{vAttach} packet
40899 Attach to a new process with the specified process ID @var{pid}.
40900 The process ID is a
40901 hexadecimal integer identifying the process.  In all-stop mode, all
40902 threads in the attached process are stopped; in non-stop mode, it may be
40903 attached without being stopped if that is supported by the target.
40905 @c In non-stop mode, on a successful vAttach, the stub should set the
40906 @c current thread to a thread of the newly-attached process.  After
40907 @c attaching, GDB queries for the attached process's thread ID with qC.
40908 @c Also note that, from a user perspective, whether or not the 
40909 @c target is stopped on attach in non-stop mode depends on whether you 
40910 @c use the foreground or background version of the attach command, not 
40911 @c on what vAttach does; GDB does the right thing with respect to either 
40912 @c stopping or restarting threads.
40914 This packet is only available in extended mode (@pxref{extended mode}).
40916 Reply:
40917 @table @samp
40918 @item E @var{nn}
40919 for an error
40920 @item @r{Any stop packet}
40921 for success in all-stop mode (@pxref{Stop Reply Packets})
40922 @item OK
40923 for success in non-stop mode (@pxref{Remote Non-Stop})
40924 @end table
40926 @item vCont@r{[};@var{action}@r{[}:@var{thread-id}@r{]]}@dots{}
40927 @cindex @samp{vCont} packet
40928 @anchor{vCont packet}
40929 Resume the inferior, specifying different actions for each thread.
40931 For each inferior thread, the leftmost action with a matching
40932 @var{thread-id} is applied.  Threads that don't match any action
40933 remain in their current state.  Thread IDs are specified using the
40934 syntax described in @ref{thread-id syntax}.  If multiprocess
40935 extensions (@pxref{multiprocess extensions}) are supported, actions
40936 can be specified to match all threads in a process by using the
40937 @samp{p@var{pid}.-1} form of the @var{thread-id}.  An action with no
40938 @var{thread-id} matches all threads.  Specifying no actions is an
40939 error.
40941 Currently supported actions are:
40943 @table @samp
40944 @item c
40945 Continue.
40946 @item C @var{sig}
40947 Continue with signal @var{sig}.  The signal @var{sig} should be two hex digits.
40948 @item s
40949 Step.
40950 @item S @var{sig}
40951 Step with signal @var{sig}.  The signal @var{sig} should be two hex digits.
40952 @item t
40953 Stop.
40954 @item r @var{start},@var{end}
40955 Step once, and then keep stepping as long as the thread stops at
40956 addresses between @var{start} (inclusive) and @var{end} (exclusive).
40957 The remote stub reports a stop reply when either the thread goes out
40958 of the range or is stopped due to an unrelated reason, such as hitting
40959 a breakpoint.  @xref{range stepping}.
40961 If the range is empty (@var{start} == @var{end}), then the action
40962 becomes equivalent to the @samp{s} action.  In other words,
40963 single-step once, and report the stop (even if the stepped instruction
40964 jumps to @var{start}).
40966 (A stop reply may be sent at any point even if the PC is still within
40967 the stepping range; for example, it is valid to implement this packet
40968 in a degenerate way as a single instruction step operation.)
40970 @end table
40972 The optional argument @var{addr} normally associated with the 
40973 @samp{c}, @samp{C}, @samp{s}, and @samp{S} packets is
40974 not supported in @samp{vCont}.
40976 The @samp{t} action is only relevant in non-stop mode
40977 (@pxref{Remote Non-Stop}) and may be ignored by the stub otherwise.
40978 A stop reply should be generated for any affected thread not already stopped.
40979 When a thread is stopped by means of a @samp{t} action,
40980 the corresponding stop reply should indicate that the thread has stopped with
40981 signal @samp{0}, regardless of whether the target uses some other signal
40982 as an implementation detail.
40984 The server must ignore @samp{c}, @samp{C}, @samp{s}, @samp{S}, and
40985 @samp{r} actions for threads that are already running.  Conversely,
40986 the server must ignore @samp{t} actions for threads that are already
40987 stopped.
40989 @emph{Note:} In non-stop mode, a thread is considered running until
40990 @value{GDBN} acknowledges an asynchronous stop notification for it with
40991 the @samp{vStopped} packet (@pxref{Remote Non-Stop}).
40993 The stub must support @samp{vCont} if it reports support for
40994 multiprocess extensions (@pxref{multiprocess extensions}).
40996 Reply:
40997 @xref{Stop Reply Packets}, for the reply specifications.
40999 @item vCont?
41000 @cindex @samp{vCont?} packet
41001 Request a list of actions supported by the @samp{vCont} packet.
41003 Reply:
41004 @table @samp
41005 @item vCont@r{[};@var{action}@dots{}@r{]}
41006 The @samp{vCont} packet is supported.  Each @var{action} is a supported
41007 command in the @samp{vCont} packet.
41008 @item @w{}
41009 The @samp{vCont} packet is not supported.
41010 @end table
41012 @anchor{vCtrlC packet}
41013 @item vCtrlC
41014 @cindex @samp{vCtrlC} packet
41015 Interrupt remote target as if a control-C was pressed on the remote
41016 terminal.  This is the equivalent to reacting to the @code{^C}
41017 (@samp{\003}, the control-C character) character in all-stop mode
41018 while the target is running, except this works in non-stop mode.
41019 @xref{interrupting remote targets}, for more info on the all-stop
41020 variant.
41022 Reply:
41023 @table @samp
41024 @item E @var{nn}
41025 for an error
41026 @item OK
41027 for success
41028 @end table
41030 @item vFile:@var{operation}:@var{parameter}@dots{}
41031 @cindex @samp{vFile} packet
41032 Perform a file operation on the target system.  For details,
41033 see @ref{Host I/O Packets}.
41035 @item vFlashErase:@var{addr},@var{length}
41036 @cindex @samp{vFlashErase} packet
41037 Direct the stub to erase @var{length} bytes of flash starting at
41038 @var{addr}.  The region may enclose any number of flash blocks, but
41039 its start and end must fall on block boundaries, as indicated by the
41040 flash block size appearing in the memory map (@pxref{Memory Map
41041 Format}).  @value{GDBN} groups flash memory programming operations
41042 together, and sends a @samp{vFlashDone} request after each group; the
41043 stub is allowed to delay erase operation until the @samp{vFlashDone}
41044 packet is received.
41046 Reply:
41047 @table @samp
41048 @item OK
41049 for success
41050 @item E @var{NN}
41051 for an error
41052 @end table
41054 @item vFlashWrite:@var{addr}:@var{XX@dots{}}
41055 @cindex @samp{vFlashWrite} packet
41056 Direct the stub to write data to flash address @var{addr}.  The data
41057 is passed in binary form using the same encoding as for the @samp{X}
41058 packet (@pxref{Binary Data}).  The memory ranges specified by
41059 @samp{vFlashWrite} packets preceding a @samp{vFlashDone} packet must
41060 not overlap, and must appear in order of increasing addresses
41061 (although @samp{vFlashErase} packets for higher addresses may already
41062 have been received; the ordering is guaranteed only between
41063 @samp{vFlashWrite} packets).  If a packet writes to an address that was
41064 neither erased by a preceding @samp{vFlashErase} packet nor by some other
41065 target-specific method, the results are unpredictable.
41068 Reply:
41069 @table @samp
41070 @item OK
41071 for success
41072 @item E.memtype
41073 for vFlashWrite addressing non-flash memory
41074 @item E @var{NN}
41075 for an error
41076 @end table
41078 @item vFlashDone
41079 @cindex @samp{vFlashDone} packet
41080 Indicate to the stub that flash programming operation is finished.
41081 The stub is permitted to delay or batch the effects of a group of
41082 @samp{vFlashErase} and @samp{vFlashWrite} packets until a
41083 @samp{vFlashDone} packet is received.  The contents of the affected
41084 regions of flash memory are unpredictable until the @samp{vFlashDone}
41085 request is completed.
41087 @item vKill;@var{pid}
41088 @cindex @samp{vKill} packet
41089 @anchor{vKill packet}
41090 Kill the process with the specified process ID @var{pid}, which is a
41091 hexadecimal integer identifying the process.  This packet is used in
41092 preference to @samp{k} when multiprocess protocol extensions are
41093 supported; see @ref{multiprocess extensions}.
41095 Reply:
41096 @table @samp
41097 @item E @var{nn}
41098 for an error
41099 @item OK
41100 for success
41101 @end table
41103 @item vMustReplyEmpty
41104 @cindex @samp{vMustReplyEmpty} packet
41105 The correct reply to an unknown @samp{v} packet is to return the empty
41106 string, however, some older versions of @command{gdbserver} would
41107 incorrectly return @samp{OK} for unknown @samp{v} packets.
41109 The @samp{vMustReplyEmpty} is used as a feature test to check how
41110 @command{gdbserver} handles unknown packets, it is important that this
41111 packet be handled in the same way as other unknown @samp{v} packets.
41112 If this packet is handled differently to other unknown @samp{v}
41113 packets then it is possible that @value{GDBN} may run into problems in
41114 other areas, specifically around use of @samp{vFile:setfs:}.
41116 @item vRun;@var{filename}@r{[};@var{argument}@r{]}@dots{}
41117 @cindex @samp{vRun} packet
41118 Run the program @var{filename}, passing it each @var{argument} on its
41119 command line.  The file and arguments are hex-encoded strings.  If
41120 @var{filename} is an empty string, the stub may use a default program
41121 (e.g.@: the last program run).  The program is created in the stopped
41122 state.
41124 @c FIXME:  What about non-stop mode?
41126 This packet is only available in extended mode (@pxref{extended mode}).
41128 Reply:
41129 @table @samp
41130 @item E @var{nn}
41131 for an error
41132 @item @r{Any stop packet}
41133 for success (@pxref{Stop Reply Packets})
41134 @end table
41136 @item vStopped
41137 @cindex @samp{vStopped} packet
41138 @xref{Notification Packets}.
41140 @item X @var{addr},@var{length}:@var{XX@dots{}}
41141 @anchor{X packet}
41142 @cindex @samp{X} packet
41143 Write data to memory, where the data is transmitted in binary.
41144 Memory is specified by its address @var{addr} and number of addressable memory
41145 units @var{length} (@pxref{addressable memory unit});
41146 @samp{@var{XX}@dots{}} is binary data (@pxref{Binary Data}).
41148 Reply:
41149 @table @samp
41150 @item OK
41151 for success
41152 @item E @var{NN}
41153 for an error
41154 @end table
41156 @item z @var{type},@var{addr},@var{kind}
41157 @itemx Z @var{type},@var{addr},@var{kind}
41158 @anchor{insert breakpoint or watchpoint packet}
41159 @cindex @samp{z} packet
41160 @cindex @samp{Z} packets
41161 Insert (@samp{Z}) or remove (@samp{z}) a @var{type} breakpoint or
41162 watchpoint starting at address @var{address} of kind @var{kind}.
41164 Each breakpoint and watchpoint packet @var{type} is documented
41165 separately.
41167 @emph{Implementation notes: A remote target shall return an empty string
41168 for an unrecognized breakpoint or watchpoint packet @var{type}.  A
41169 remote target shall support either both or neither of a given
41170 @samp{Z@var{type}@dots{}} and @samp{z@var{type}@dots{}} packet pair.  To
41171 avoid potential problems with duplicate packets, the operations should
41172 be implemented in an idempotent way.}
41174 @item z0,@var{addr},@var{kind}
41175 @itemx Z0,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
41176 @cindex @samp{z0} packet
41177 @cindex @samp{Z0} packet
41178 Insert (@samp{Z0}) or remove (@samp{z0}) a software breakpoint at address
41179 @var{addr} of type @var{kind}.
41181 A software breakpoint is implemented by replacing the instruction at
41182 @var{addr} with a software breakpoint or trap instruction.  The
41183 @var{kind} is target-specific and typically indicates the size of the
41184 breakpoint in bytes that should be inserted.  E.g., the @sc{arm} and
41185 @sc{mips} can insert either a 2 or 4 byte breakpoint.  Some
41186 architectures have additional meanings for @var{kind}
41187 (@pxref{Architecture-Specific Protocol Details}); if no
41188 architecture-specific value is being used, it should be @samp{0}.
41189 @var{kind} is hex-encoded.  @var{cond_list} is an optional list of
41190 conditional expressions in bytecode form that should be evaluated on
41191 the target's side.  These are the conditions that should be taken into
41192 consideration when deciding if the breakpoint trigger should be
41193 reported back to @value{GDBN}.
41195 See also the @samp{swbreak} stop reason (@pxref{swbreak stop reason})
41196 for how to best report a software breakpoint event to @value{GDBN}.
41198 The @var{cond_list} parameter is comprised of a series of expressions,
41199 concatenated without separators. Each expression has the following form:
41201 @table @samp
41203 @item X @var{len},@var{expr}
41204 @var{len} is the length of the bytecode expression and @var{expr} is the
41205 actual conditional expression in bytecode form.
41207 @end table
41209 The optional @var{cmd_list} parameter introduces commands that may be
41210 run on the target, rather than being reported back to @value{GDBN}.
41211 The parameter starts with a numeric flag @var{persist}; if the flag is
41212 nonzero, then the breakpoint may remain active and the commands
41213 continue to be run even when @value{GDBN} disconnects from the target.
41214 Following this flag is a series of expressions concatenated with no
41215 separators.  Each expression has the following form:
41217 @table @samp
41219 @item X @var{len},@var{expr}
41220 @var{len} is the length of the bytecode expression and @var{expr} is the
41221 actual commands expression in bytecode form.
41223 @end table
41225 @emph{Implementation note: It is possible for a target to copy or move
41226 code that contains software breakpoints (e.g., when implementing
41227 overlays).  The behavior of this packet, in the presence of such a
41228 target, is not defined.}
41230 Reply:
41231 @table @samp
41232 @item OK
41233 success
41234 @item @w{}
41235 not supported
41236 @item E @var{NN}
41237 for an error
41238 @end table
41240 @item z1,@var{addr},@var{kind}
41241 @itemx Z1,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
41242 @cindex @samp{z1} packet
41243 @cindex @samp{Z1} packet
41244 Insert (@samp{Z1}) or remove (@samp{z1}) a hardware breakpoint at
41245 address @var{addr}.
41247 A hardware breakpoint is implemented using a mechanism that is not
41248 dependent on being able to modify the target's memory.  The
41249 @var{kind}, @var{cond_list}, and @var{cmd_list} arguments have the
41250 same meaning as in @samp{Z0} packets.
41252 @emph{Implementation note: A hardware breakpoint is not affected by code
41253 movement.}
41255 Reply:
41256 @table @samp
41257 @item OK
41258 success
41259 @item @w{}
41260 not supported
41261 @item E @var{NN}
41262 for an error
41263 @end table
41265 @item z2,@var{addr},@var{kind}
41266 @itemx Z2,@var{addr},@var{kind}
41267 @cindex @samp{z2} packet
41268 @cindex @samp{Z2} packet
41269 Insert (@samp{Z2}) or remove (@samp{z2}) a write watchpoint at @var{addr}.
41270 The number of bytes to watch is specified by @var{kind}.
41272 Reply:
41273 @table @samp
41274 @item OK
41275 success
41276 @item @w{}
41277 not supported
41278 @item E @var{NN}
41279 for an error
41280 @end table
41282 @item z3,@var{addr},@var{kind}
41283 @itemx Z3,@var{addr},@var{kind}
41284 @cindex @samp{z3} packet
41285 @cindex @samp{Z3} packet
41286 Insert (@samp{Z3}) or remove (@samp{z3}) a read watchpoint at @var{addr}.
41287 The number of bytes to watch is specified by @var{kind}.
41289 Reply:
41290 @table @samp
41291 @item OK
41292 success
41293 @item @w{}
41294 not supported
41295 @item E @var{NN}
41296 for an error
41297 @end table
41299 @item z4,@var{addr},@var{kind}
41300 @itemx Z4,@var{addr},@var{kind}
41301 @cindex @samp{z4} packet
41302 @cindex @samp{Z4} packet
41303 Insert (@samp{Z4}) or remove (@samp{z4}) an access watchpoint at @var{addr}.
41304 The number of bytes to watch is specified by @var{kind}.
41306 Reply:
41307 @table @samp
41308 @item OK
41309 success
41310 @item @w{}
41311 not supported
41312 @item E @var{NN}
41313 for an error
41314 @end table
41316 @end table
41318 @node Stop Reply Packets
41319 @section Stop Reply Packets
41320 @cindex stop reply packets
41322 The @samp{C}, @samp{c}, @samp{S}, @samp{s}, @samp{vCont},
41323 @samp{vAttach}, @samp{vRun}, @samp{vStopped}, and @samp{?} packets can
41324 receive any of the below as a reply.  Except for @samp{?}
41325 and @samp{vStopped}, that reply is only returned
41326 when the target halts.  In the below the exact meaning of @dfn{signal
41327 number} is defined by the header @file{include/gdb/signals.h} in the
41328 @value{GDBN} source code.
41330 In non-stop mode, the server will simply reply @samp{OK} to commands
41331 such as @samp{vCont}; any stop will be the subject of a future
41332 notification.  @xref{Remote Non-Stop}.
41334 As in the description of request packets, we include spaces in the
41335 reply templates for clarity; these are not part of the reply packet's
41336 syntax.  No @value{GDBN} stop reply packet uses spaces to separate its
41337 components.
41339 @table @samp
41341 @item S @var{AA}
41342 The program received signal number @var{AA} (a two-digit hexadecimal
41343 number).  This is equivalent to a @samp{T} response with no
41344 @var{n}:@var{r} pairs.
41346 @item T @var{AA} @var{n1}:@var{r1};@var{n2}:@var{r2};@dots{}
41347 @cindex @samp{T} packet reply
41348 The program received signal number @var{AA} (a two-digit hexadecimal
41349 number).  This is equivalent to an @samp{S} response, except that the
41350 @samp{@var{n}:@var{r}} pairs can carry values of important registers
41351 and other information directly in the stop reply packet, reducing
41352 round-trip latency.  Single-step and breakpoint traps are reported
41353 this way.  Each @samp{@var{n}:@var{r}} pair is interpreted as follows:
41355 @itemize @bullet
41356 @item
41357 If @var{n} is a hexadecimal number, it is a register number, and the
41358 corresponding @var{r} gives that register's value.  The data @var{r} is a
41359 series of bytes in target byte order, with each byte given by a
41360 two-digit hex number.
41362 @item
41363 If @var{n} is @samp{thread}, then @var{r} is the @var{thread-id} of
41364 the stopped thread, as specified in @ref{thread-id syntax}.
41366 @item
41367 If @var{n} is @samp{core}, then @var{r} is the hexadecimal number of
41368 the core on which the stop event was detected.
41370 @item
41371 If @var{n} is a recognized @dfn{stop reason}, it describes a more
41372 specific event that stopped the target.  The currently defined stop
41373 reasons are listed below.  The @var{aa} should be @samp{05}, the trap
41374 signal.  At most one stop reason should be present.
41376 @item
41377 Otherwise, @value{GDBN} should ignore this @samp{@var{n}:@var{r}} pair
41378 and go on to the next; this allows us to extend the protocol in the
41379 future.
41380 @end itemize
41382 The currently defined stop reasons are:
41384 @table @samp
41385 @item watch
41386 @itemx rwatch
41387 @itemx awatch
41388 The packet indicates a watchpoint hit, and @var{r} is the data address, in
41389 hex.
41391 @item syscall_entry
41392 @itemx syscall_return
41393 The packet indicates a syscall entry or return, and @var{r} is the
41394 syscall number, in hex.
41396 @cindex shared library events, remote reply
41397 @item library
41398 The packet indicates that the loaded libraries have changed.
41399 @value{GDBN} should use @samp{qXfer:libraries:read} to fetch a new
41400 list of loaded libraries.  The @var{r} part is ignored.
41402 @cindex replay log events, remote reply
41403 @item replaylog
41404 The packet indicates that the target cannot continue replaying 
41405 logged execution events, because it has reached the end (or the
41406 beginning when executing backward) of the log.  The value of @var{r}
41407 will be either @samp{begin} or @samp{end}.  @xref{Reverse Execution}, 
41408 for more information.
41410 @item swbreak
41411 @anchor{swbreak stop reason}
41412 The packet indicates a software breakpoint instruction was executed,
41413 irrespective of whether it was @value{GDBN} that planted the
41414 breakpoint or the breakpoint is hardcoded in the program.  The @var{r}
41415 part must be left empty.
41417 On some architectures, such as x86, at the architecture level, when a
41418 breakpoint instruction executes the program counter points at the
41419 breakpoint address plus an offset.  On such targets, the stub is
41420 responsible for adjusting the PC to point back at the breakpoint
41421 address.
41423 This packet should not be sent by default; older @value{GDBN} versions
41424 did not support it.  @value{GDBN} requests it, by supplying an
41425 appropriate @samp{qSupported} feature (@pxref{qSupported}).  The
41426 remote stub must also supply the appropriate @samp{qSupported} feature
41427 indicating support.
41429 This packet is required for correct non-stop mode operation.
41431 @item hwbreak
41432 The packet indicates the target stopped for a hardware breakpoint.
41433 The @var{r} part must be left empty.
41435 The same remarks about @samp{qSupported} and non-stop mode above
41436 apply.
41438 @cindex fork events, remote reply
41439 @item fork
41440 The packet indicates that @code{fork} was called, and @var{r}
41441 is the thread ID of the new child process.  Refer to
41442 @ref{thread-id syntax} for the format of the @var{thread-id}
41443 field.  This packet is only applicable to targets that support
41444 fork events.
41446 This packet should not be sent by default; older @value{GDBN} versions
41447 did not support it.  @value{GDBN} requests it, by supplying an
41448 appropriate @samp{qSupported} feature (@pxref{qSupported}).  The
41449 remote stub must also supply the appropriate @samp{qSupported} feature
41450 indicating support.
41452 @cindex vfork events, remote reply
41453 @item vfork
41454 The packet indicates that @code{vfork} was called, and @var{r}
41455 is the thread ID of the new child process. Refer to
41456 @ref{thread-id syntax} for the format of the @var{thread-id}
41457 field.  This packet is only applicable to targets that support
41458 vfork events.
41460 This packet should not be sent by default; older @value{GDBN} versions
41461 did not support it.  @value{GDBN} requests it, by supplying an
41462 appropriate @samp{qSupported} feature (@pxref{qSupported}).  The
41463 remote stub must also supply the appropriate @samp{qSupported} feature
41464 indicating support.
41466 @cindex vforkdone events, remote reply
41467 @item vforkdone
41468 The packet indicates that a child process created by a vfork
41469 has either called @code{exec} or terminated, so that the
41470 address spaces of the parent and child process are no longer
41471 shared. The @var{r} part is ignored.  This packet is only
41472 applicable to targets that support vforkdone events.
41474 This packet should not be sent by default; older @value{GDBN} versions
41475 did not support it.  @value{GDBN} requests it, by supplying an
41476 appropriate @samp{qSupported} feature (@pxref{qSupported}).  The
41477 remote stub must also supply the appropriate @samp{qSupported} feature
41478 indicating support.
41480 @cindex exec events, remote reply
41481 @item exec
41482 The packet indicates that @code{execve} was called, and @var{r}
41483 is the absolute pathname of the file that was executed, in hex.
41484 This packet is only applicable to targets that support exec events.
41486 This packet should not be sent by default; older @value{GDBN} versions
41487 did not support it.  @value{GDBN} requests it, by supplying an
41488 appropriate @samp{qSupported} feature (@pxref{qSupported}).  The
41489 remote stub must also supply the appropriate @samp{qSupported} feature
41490 indicating support.
41492 @cindex thread create event, remote reply
41493 @anchor{thread create event}
41494 @item create
41495 The packet indicates that the thread was just created.  The new thread
41496 is stopped until @value{GDBN} sets it running with a resumption packet
41497 (@pxref{vCont packet}).  This packet should not be sent by default;
41498 @value{GDBN} requests it with the @ref{QThreadEvents} packet.  See
41499 also the @samp{w} (@pxref{thread exit event}) remote reply below.  The
41500 @var{r} part is ignored.
41502 @end table
41504 @item W @var{AA}
41505 @itemx W @var{AA} ; process:@var{pid}
41506 The process exited, and @var{AA} is the exit status.  This is only
41507 applicable to certain targets.
41509 The second form of the response, including the process ID of the
41510 exited process, can be used only when @value{GDBN} has reported
41511 support for multiprocess protocol extensions; see @ref{multiprocess
41512 extensions}.  Both @var{AA} and @var{pid} are formatted as big-endian
41513 hex strings.
41515 @item X @var{AA}
41516 @itemx X @var{AA} ; process:@var{pid}
41517 The process terminated with signal @var{AA}.
41519 The second form of the response, including the process ID of the
41520 terminated process, can be used only when @value{GDBN} has reported
41521 support for multiprocess protocol extensions; see @ref{multiprocess
41522 extensions}.  Both @var{AA} and @var{pid} are formatted as big-endian
41523 hex strings.
41525 @anchor{thread exit event}
41526 @cindex thread exit event, remote reply
41527 @item w @var{AA} ; @var{tid}
41529 The thread exited, and @var{AA} is the exit status.  This response
41530 should not be sent by default; @value{GDBN} requests it with the
41531 @ref{QThreadEvents} packet.  See also @ref{thread create event} above.
41532 @var{AA} is formatted as a big-endian hex string.
41534 @item N
41535 There are no resumed threads left in the target.  In other words, even
41536 though the process is alive, the last resumed thread has exited.  For
41537 example, say the target process has two threads: thread 1 and thread
41538 2.  The client leaves thread 1 stopped, and resumes thread 2, which
41539 subsequently exits.  At this point, even though the process is still
41540 alive, and thus no @samp{W} stop reply is sent, no thread is actually
41541 executing either.  The @samp{N} stop reply thus informs the client
41542 that it can stop waiting for stop replies.  This packet should not be
41543 sent by default; older @value{GDBN} versions did not support it.
41544 @value{GDBN} requests it, by supplying an appropriate
41545 @samp{qSupported} feature (@pxref{qSupported}).  The remote stub must
41546 also supply the appropriate @samp{qSupported} feature indicating
41547 support.
41549 @item O @var{XX}@dots{}
41550 @samp{@var{XX}@dots{}} is hex encoding of @sc{ascii} data, to be
41551 written as the program's console output.  This can happen at any time
41552 while the program is running and the debugger should continue to wait
41553 for @samp{W}, @samp{T}, etc.  This reply is not permitted in non-stop mode.
41555 @item F @var{call-id},@var{parameter}@dots{}
41556 @var{call-id} is the identifier which says which host system call should
41557 be called.  This is just the name of the function.  Translation into the
41558 correct system call is only applicable as it's defined in @value{GDBN}.
41559 @xref{File-I/O Remote Protocol Extension}, for a list of implemented
41560 system calls.
41562 @samp{@var{parameter}@dots{}} is a list of parameters as defined for
41563 this very system call.
41565 The target replies with this packet when it expects @value{GDBN} to
41566 call a host system call on behalf of the target.  @value{GDBN} replies
41567 with an appropriate @samp{F} packet and keeps up waiting for the next
41568 reply packet from the target.  The latest @samp{C}, @samp{c}, @samp{S}
41569 or @samp{s} action is expected to be continued.  @xref{File-I/O Remote
41570 Protocol Extension}, for more details.
41572 @end table
41574 @node General Query Packets
41575 @section General Query Packets
41576 @cindex remote query requests
41578 Packets starting with @samp{q} are @dfn{general query packets};
41579 packets starting with @samp{Q} are @dfn{general set packets}.  General
41580 query and set packets are a semi-unified form for retrieving and
41581 sending information to and from the stub.
41583 The initial letter of a query or set packet is followed by a name
41584 indicating what sort of thing the packet applies to.  For example,
41585 @value{GDBN} may use a @samp{qSymbol} packet to exchange symbol
41586 definitions with the stub.  These packet names follow some
41587 conventions:
41589 @itemize @bullet
41590 @item
41591 The name must not contain commas, colons or semicolons.
41592 @item
41593 Most @value{GDBN} query and set packets have a leading upper case
41594 letter.
41595 @item
41596 The names of custom vendor packets should use a company prefix, in
41597 lower case, followed by a period.  For example, packets designed at
41598 the Acme Corporation might begin with @samp{qacme.foo} (for querying
41599 foos) or @samp{Qacme.bar} (for setting bars).
41600 @end itemize
41602 The name of a query or set packet should be separated from any
41603 parameters by a @samp{:}; the parameters themselves should be
41604 separated by @samp{,} or @samp{;}.  Stubs must be careful to match the
41605 full packet name, and check for a separator or the end of the packet,
41606 in case two packet names share a common prefix.  New packets should not begin
41607 with @samp{qC}, @samp{qP}, or @samp{qL}@footnote{The @samp{qP} and @samp{qL}
41608 packets predate these conventions, and have arguments without any terminator
41609 for the packet name; we suspect they are in widespread use in places that
41610 are difficult to upgrade.  The @samp{qC} packet has no arguments, but some
41611 existing stubs (e.g.@: RedBoot) are known to not check for the end of the
41612 packet.}.
41614 Like the descriptions of the other packets, each description here
41615 has a template showing the packet's overall syntax, followed by an
41616 explanation of the packet's meaning.  We include spaces in some of the
41617 templates for clarity; these are not part of the packet's syntax.  No
41618 @value{GDBN} packet uses spaces to separate its components.
41620 Here are the currently defined query and set packets:
41622 @table @samp
41624 @item QAgent:1
41625 @itemx QAgent:0
41626 Turn on or off the agent as a helper to perform some debugging operations
41627 delegated from @value{GDBN} (@pxref{Control Agent}).
41629 @item QAllow:@var{op}:@var{val}@dots{}
41630 @cindex @samp{QAllow} packet
41631 Specify which operations @value{GDBN} expects to request of the
41632 target, as a semicolon-separated list of operation name and value
41633 pairs.  Possible values for @var{op} include @samp{WriteReg},
41634 @samp{WriteMem}, @samp{InsertBreak}, @samp{InsertTrace},
41635 @samp{InsertFastTrace}, and @samp{Stop}. @var{val} is either 0,
41636 indicating that @value{GDBN} will not request the operation, or 1,
41637 indicating that it may.  (The target can then use this to set up its
41638 own internals optimally, for instance if the debugger never expects to
41639 insert breakpoints, it may not need to install its own trap handler.)
41641 @item qC
41642 @cindex current thread, remote request
41643 @cindex @samp{qC} packet
41644 Return the current thread ID.
41646 Reply:
41647 @table @samp
41648 @item QC @var{thread-id}
41649 Where @var{thread-id} is a thread ID as documented in 
41650 @ref{thread-id syntax}.
41651 @item @r{(anything else)}
41652 Any other reply implies the old thread ID.
41653 @end table
41655 @item qCRC:@var{addr},@var{length}
41656 @cindex CRC of memory block, remote request
41657 @cindex @samp{qCRC} packet
41658 @anchor{qCRC packet}
41659 Compute the CRC checksum of a block of memory using CRC-32 defined in
41660 IEEE 802.3.  The CRC is computed byte at a time, taking the most
41661 significant bit of each byte first.  The initial pattern code
41662 @code{0xffffffff} is used to ensure leading zeros affect the CRC.
41664 @emph{Note:} This is the same CRC used in validating separate debug
41665 files (@pxref{Separate Debug Files, , Debugging Information in Separate
41666 Files}).  However the algorithm is slightly different.  When validating
41667 separate debug files, the CRC is computed taking the @emph{least}
41668 significant bit of each byte first, and the final result is inverted to
41669 detect trailing zeros.
41671 Reply:
41672 @table @samp
41673 @item E @var{NN}
41674 An error (such as memory fault)
41675 @item C @var{crc32}
41676 The specified memory region's checksum is @var{crc32}.
41677 @end table
41679 @item QDisableRandomization:@var{value}
41680 @cindex disable address space randomization, remote request
41681 @cindex @samp{QDisableRandomization} packet
41682 Some target operating systems will randomize the virtual address space
41683 of the inferior process as a security feature, but provide a feature
41684 to disable such randomization, e.g.@: to allow for a more deterministic
41685 debugging experience.  On such systems, this packet with a @var{value}
41686 of 1 directs the target to disable address space randomization for
41687 processes subsequently started via @samp{vRun} packets, while a packet
41688 with a @var{value} of 0 tells the target to enable address space
41689 randomization.
41691 This packet is only available in extended mode (@pxref{extended mode}).
41693 Reply:
41694 @table @samp
41695 @item OK
41696 The request succeeded.
41698 @item E @var{nn}
41699 An error occurred.  The error number @var{nn} is given as hex digits.
41701 @item @w{}
41702 An empty reply indicates that @samp{QDisableRandomization} is not supported
41703 by the stub.
41704 @end table
41706 This packet is not probed by default; the remote stub must request it,
41707 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41708 This should only be done on targets that actually support disabling
41709 address space randomization.
41711 @item QStartupWithShell:@var{value}
41712 @cindex startup with shell, remote request
41713 @cindex @samp{QStartupWithShell} packet
41714 On UNIX-like targets, it is possible to start the inferior using a
41715 shell program.  This is the default behavior on both @value{GDBN} and
41716 @command{gdbserver} (@pxref{set startup-with-shell}).  This packet is
41717 used to inform @command{gdbserver} whether it should start the
41718 inferior using a shell or not.
41720 If @var{value} is @samp{0}, @command{gdbserver} will not use a shell
41721 to start the inferior.  If @var{value} is @samp{1},
41722 @command{gdbserver} will use a shell to start the inferior.  All other
41723 values are considered an error.
41725 This packet is only available in extended mode (@pxref{extended
41726 mode}).
41728 Reply:
41729 @table @samp
41730 @item OK
41731 The request succeeded.
41733 @item E @var{nn}
41734 An error occurred.  The error number @var{nn} is given as hex digits.
41735 @end table
41737 This packet is not probed by default; the remote stub must request it,
41738 by supplying an appropriate @samp{qSupported} response
41739 (@pxref{qSupported}).  This should only be done on targets that
41740 actually support starting the inferior using a shell.
41742 Use of this packet is controlled by the @code{set startup-with-shell}
41743 command; @pxref{set startup-with-shell}.
41745 @item QEnvironmentHexEncoded:@var{hex-value}
41746 @anchor{QEnvironmentHexEncoded}
41747 @cindex set environment variable, remote request
41748 @cindex @samp{QEnvironmentHexEncoded} packet
41749 On UNIX-like targets, it is possible to set environment variables that
41750 will be passed to the inferior during the startup process.  This
41751 packet is used to inform @command{gdbserver} of an environment
41752 variable that has been defined by the user on @value{GDBN} (@pxref{set
41753 environment}).
41755 The packet is composed by @var{hex-value}, an hex encoded
41756 representation of the @var{name=value} format representing an
41757 environment variable.  The name of the environment variable is
41758 represented by @var{name}, and the value to be assigned to the
41759 environment variable is represented by @var{value}.  If the variable
41760 has no value (i.e., the value is @code{null}), then @var{value} will
41761 not be present.
41763 This packet is only available in extended mode (@pxref{extended
41764 mode}).
41766 Reply:
41767 @table @samp
41768 @item OK
41769 The request succeeded.
41770 @end table
41772 This packet is not probed by default; the remote stub must request it,
41773 by supplying an appropriate @samp{qSupported} response
41774 (@pxref{qSupported}).  This should only be done on targets that
41775 actually support passing environment variables to the starting
41776 inferior.
41778 This packet is related to the @code{set environment} command;
41779 @pxref{set environment}.
41781 @item QEnvironmentUnset:@var{hex-value}
41782 @anchor{QEnvironmentUnset}
41783 @cindex unset environment variable, remote request
41784 @cindex @samp{QEnvironmentUnset} packet
41785 On UNIX-like targets, it is possible to unset environment variables
41786 before starting the inferior in the remote target.  This packet is
41787 used to inform @command{gdbserver} of an environment variable that has
41788 been unset by the user on @value{GDBN} (@pxref{unset environment}).
41790 The packet is composed by @var{hex-value}, an hex encoded
41791 representation of the name of the environment variable to be unset.
41793 This packet is only available in extended mode (@pxref{extended
41794 mode}).
41796 Reply:
41797 @table @samp
41798 @item OK
41799 The request succeeded.
41800 @end table
41802 This packet is not probed by default; the remote stub must request it,
41803 by supplying an appropriate @samp{qSupported} response
41804 (@pxref{qSupported}).  This should only be done on targets that
41805 actually support passing environment variables to the starting
41806 inferior.
41808 This packet is related to the @code{unset environment} command;
41809 @pxref{unset environment}.
41811 @item QEnvironmentReset
41812 @anchor{QEnvironmentReset}
41813 @cindex reset environment, remote request
41814 @cindex @samp{QEnvironmentReset} packet
41815 On UNIX-like targets, this packet is used to reset the state of
41816 environment variables in the remote target before starting the
41817 inferior.  In this context, reset means unsetting all environment
41818 variables that were previously set by the user (i.e., were not
41819 initially present in the environment).  It is sent to
41820 @command{gdbserver} before the @samp{QEnvironmentHexEncoded}
41821 (@pxref{QEnvironmentHexEncoded}) and the @samp{QEnvironmentUnset}
41822 (@pxref{QEnvironmentUnset}) packets.
41824 This packet is only available in extended mode (@pxref{extended
41825 mode}).
41827 Reply:
41828 @table @samp
41829 @item OK
41830 The request succeeded.
41831 @end table
41833 This packet is not probed by default; the remote stub must request it,
41834 by supplying an appropriate @samp{qSupported} response
41835 (@pxref{qSupported}).  This should only be done on targets that
41836 actually support passing environment variables to the starting
41837 inferior.
41839 @item QSetWorkingDir:@r{[}@var{directory}@r{]}
41840 @anchor{QSetWorkingDir packet}
41841 @cindex set working directory, remote request
41842 @cindex @samp{QSetWorkingDir} packet
41843 This packet is used to inform the remote server of the intended
41844 current working directory for programs that are going to be executed.
41846 The packet is composed by @var{directory}, an hex encoded
41847 representation of the directory that the remote inferior will use as
41848 its current working directory.  If @var{directory} is an empty string,
41849 the remote server should reset the inferior's current working
41850 directory to its original, empty value.
41852 This packet is only available in extended mode (@pxref{extended
41853 mode}).
41855 Reply:
41856 @table @samp
41857 @item OK
41858 The request succeeded.
41859 @end table
41861 @item qfThreadInfo
41862 @itemx qsThreadInfo
41863 @cindex list active threads, remote request
41864 @cindex @samp{qfThreadInfo} packet
41865 @cindex @samp{qsThreadInfo} packet
41866 Obtain a list of all active thread IDs from the target (OS).  Since there
41867 may be too many active threads to fit into one reply packet, this query
41868 works iteratively: it may require more than one query/reply sequence to
41869 obtain the entire list of threads.  The first query of the sequence will
41870 be the @samp{qfThreadInfo} query; subsequent queries in the
41871 sequence will be the @samp{qsThreadInfo} query.
41873 NOTE: This packet replaces the @samp{qL} query (see below).
41875 Reply:
41876 @table @samp
41877 @item m @var{thread-id}
41878 A single thread ID
41879 @item m @var{thread-id},@var{thread-id}@dots{}
41880 a comma-separated list of thread IDs
41881 @item l
41882 (lower case letter @samp{L}) denotes end of list.
41883 @end table
41885 In response to each query, the target will reply with a list of one or
41886 more thread IDs, separated by commas.
41887 @value{GDBN} will respond to each reply with a request for more thread
41888 ids (using the @samp{qs} form of the query), until the target responds
41889 with @samp{l} (lower-case ell, for @dfn{last}).
41890 Refer to @ref{thread-id syntax}, for the format of the @var{thread-id}
41891 fields.
41893 @emph{Note: @value{GDBN} will send the @code{qfThreadInfo} query during the
41894 initial connection with the remote target, and the very first thread ID
41895 mentioned in the reply will be stopped by @value{GDBN} in a subsequent
41896 message.  Therefore, the stub should ensure that the first thread ID in
41897 the @code{qfThreadInfo} reply is suitable for being stopped by @value{GDBN}.}
41899 @item qGetTLSAddr:@var{thread-id},@var{offset},@var{lm}
41900 @cindex get thread-local storage address, remote request
41901 @cindex @samp{qGetTLSAddr} packet
41902 Fetch the address associated with thread local storage specified
41903 by @var{thread-id}, @var{offset}, and @var{lm}.
41905 @var{thread-id} is the thread ID associated with the
41906 thread for which to fetch the TLS address.  @xref{thread-id syntax}.
41908 @var{offset} is the (big endian, hex encoded) offset associated with the
41909 thread local variable.  (This offset is obtained from the debug
41910 information associated with the variable.)
41912 @var{lm} is the (big endian, hex encoded) OS/ABI-specific encoding of the
41913 load module associated with the thread local storage.  For example,
41914 a @sc{gnu}/Linux system will pass the link map address of the shared
41915 object associated with the thread local storage under consideration. 
41916 Other operating environments may choose to represent the load module
41917 differently, so the precise meaning of this parameter will vary.
41919 Reply:
41920 @table @samp
41921 @item @var{XX}@dots{}
41922 Hex encoded (big endian) bytes representing the address of the thread
41923 local storage requested.
41925 @item E @var{nn}
41926 An error occurred.  The error number @var{nn} is given as hex digits.
41928 @item @w{}
41929 An empty reply indicates that @samp{qGetTLSAddr} is not supported by the stub.
41930 @end table
41932 @item qGetTIBAddr:@var{thread-id}
41933 @cindex get thread information block address
41934 @cindex @samp{qGetTIBAddr} packet
41935 Fetch address of the Windows OS specific Thread Information Block.
41937 @var{thread-id} is the thread ID associated with the thread.
41939 Reply:
41940 @table @samp
41941 @item @var{XX}@dots{}
41942 Hex encoded (big endian) bytes representing the linear address of the
41943 thread information block.
41945 @item E @var{nn}
41946 An error occured.  This means that either the thread was not found, or the
41947 address could not be retrieved.
41949 @item @w{}
41950 An empty reply indicates that @samp{qGetTIBAddr} is not supported by the stub.
41951 @end table
41953 @item qL @var{startflag} @var{threadcount} @var{nextthread}
41954 Obtain thread information from RTOS.  Where: @var{startflag} (one hex
41955 digit) is one to indicate the first query and zero to indicate a
41956 subsequent query; @var{threadcount} (two hex digits) is the maximum
41957 number of threads the response packet can contain; and @var{nextthread}
41958 (eight hex digits), for subsequent queries (@var{startflag} is zero), is
41959 returned in the response as @var{argthread}.
41961 Don't use this packet; use the @samp{qfThreadInfo} query instead (see above).
41963 Reply:
41964 @table @samp
41965 @item qM @var{count} @var{done} @var{argthread} @var{thread}@dots{}
41966 Where: @var{count} (two hex digits) is the number of threads being
41967 returned; @var{done} (one hex digit) is zero to indicate more threads
41968 and one indicates no further threads; @var{argthreadid} (eight hex
41969 digits) is @var{nextthread} from the request packet; @var{thread}@dots{}
41970 is a sequence of thread IDs, @var{threadid} (eight hex
41971 digits), from the target.  See @code{remote.c:parse_threadlist_response()}.
41972 @end table
41974 @item qMemTags:@var{start address},@var{length}:@var{type}
41975 @anchor{qMemTags}
41976 @cindex fetch memory tags
41977 @cindex @samp{qMemTags} packet
41978 Fetch memory tags of type @var{type} from the address range
41979 @w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}.  The
41980 target is responsible for calculating how many tags will be returned, as this
41981 is architecture-specific.
41983 @var{start address} is the starting address of the memory range.
41985 @var{length} is the length, in bytes, of the memory range.
41987 @var{type} is the type of tag the request wants to fetch.  The type is a signed
41988 integer.
41990 Reply:
41991 @table @samp
41992 @item @var{mxx}@dots{}
41993 Hex encoded sequence of uninterpreted bytes, @var{xx}@dots{}, representing the
41994 tags found in the requested memory range.
41996 @item E @var{nn}
41997 An error occured.  This means that fetching of memory tags failed for some
41998 reason.
42000 @item @w{}
42001 An empty reply indicates that @samp{qMemTags} is not supported by the stub,
42002 although this should not happen given @value{GDBN} will only send this packet
42003 if the stub has advertised support for memory tagging via @samp{qSupported}.
42004 @end table
42006 @item QMemTags:@var{start address},@var{length}:@var{type}:@var{tag bytes}
42007 @anchor{QMemTags}
42008 @cindex store memory tags
42009 @cindex @samp{QMemTags} packet
42010 Store memory tags of type @var{type} to the address range
42011 @w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}.  The
42012 target is responsible for interpreting the type, the tag bytes and modifying
42013 the memory tag granules accordingly, given this is architecture-specific.
42015 The interpretation of how many tags (@var{nt}) should be written to how many
42016 memory tag granules (@var{ng}) is also architecture-specific.  The behavior is
42017 implementation-specific, but the following is suggested.
42019 If the number of memory tags, @var{nt}, is greater than or equal to the
42020 number of memory tag granules, @var{ng}, only @var{ng} tags will be
42021 stored.
42023 If @var{nt} is less than @var{ng}, the behavior is that of a fill operation,
42024 and the tag bytes will be used as a pattern that will get repeated until
42025 @var{ng} tags are stored.
42027 @var{start address} is the starting address of the memory range.  The address
42028 does not have any restriction on alignment or size.
42030 @var{length} is the length, in bytes, of the memory range.
42032 @var{type} is the type of tag the request wants to fetch.  The type is a signed
42033 integer.
42035 @var{tag bytes} is a sequence of hex encoded uninterpreted bytes which will be
42036 interpreted by the target.  Each pair of hex digits is interpreted as a
42037 single byte.
42039 Reply:
42040 @table @samp
42041 @item OK
42042 The request was successful and the memory tag granules were modified
42043 accordingly.
42045 @item E @var{nn}
42046 An error occured.  This means that modifying the memory tag granules failed
42047 for some reason.
42049 @item @w{}
42050 An empty reply indicates that @samp{QMemTags} is not supported by the stub,
42051 although this should not happen given @value{GDBN} will only send this packet
42052 if the stub has advertised support for memory tagging via @samp{qSupported}.
42053 @end table
42055 @item qOffsets
42056 @cindex section offsets, remote request
42057 @cindex @samp{qOffsets} packet
42058 Get section offsets that the target used when relocating the downloaded
42059 image.
42061 Reply:
42062 @table @samp
42063 @item Text=@var{xxx};Data=@var{yyy}@r{[};Bss=@var{zzz}@r{]}
42064 Relocate the @code{Text} section by @var{xxx} from its original address.
42065 Relocate the @code{Data} section by @var{yyy} from its original address.
42066 If the object file format provides segment information (e.g.@: @sc{elf}
42067 @samp{PT_LOAD} program headers), @value{GDBN} will relocate entire
42068 segments by the supplied offsets.
42070 @emph{Note: while a @code{Bss} offset may be included in the response,
42071 @value{GDBN} ignores this and instead applies the @code{Data} offset
42072 to the @code{Bss} section.}
42074 @item TextSeg=@var{xxx}@r{[};DataSeg=@var{yyy}@r{]}
42075 Relocate the first segment of the object file, which conventionally
42076 contains program code, to a starting address of @var{xxx}.  If
42077 @samp{DataSeg} is specified, relocate the second segment, which
42078 conventionally contains modifiable data, to a starting address of
42079 @var{yyy}.  @value{GDBN} will report an error if the object file
42080 does not contain segment information, or does not contain at least
42081 as many segments as mentioned in the reply.  Extra segments are
42082 kept at fixed offsets relative to the last relocated segment.
42083 @end table
42085 @item qP @var{mode} @var{thread-id}
42086 @cindex thread information, remote request
42087 @cindex @samp{qP} packet
42088 Returns information on @var{thread-id}.  Where: @var{mode} is a hex
42089 encoded 32 bit mode; @var{thread-id} is a thread ID 
42090 (@pxref{thread-id syntax}).
42092 Don't use this packet; use the @samp{qThreadExtraInfo} query instead
42093 (see below).
42095 Reply: see @code{remote.c:remote_unpack_thread_info_response()}.
42097 @item QNonStop:1
42098 @itemx QNonStop:0
42099 @cindex non-stop mode, remote request
42100 @cindex @samp{QNonStop} packet
42101 @anchor{QNonStop}
42102 Enter non-stop (@samp{QNonStop:1}) or all-stop (@samp{QNonStop:0}) mode.
42103 @xref{Remote Non-Stop}, for more information.
42105 Reply:
42106 @table @samp
42107 @item OK
42108 The request succeeded.
42110 @item E @var{nn}
42111 An error occurred.  The error number @var{nn} is given as hex digits.
42113 @item @w{}
42114 An empty reply indicates that @samp{QNonStop} is not supported by
42115 the stub.
42116 @end table
42118 This packet is not probed by default; the remote stub must request it,
42119 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42120 Use of this packet is controlled by the @code{set non-stop} command; 
42121 @pxref{Non-Stop Mode}.
42123 @item QCatchSyscalls:1 @r{[};@var{sysno}@r{]}@dots{}
42124 @itemx QCatchSyscalls:0
42125 @cindex catch syscalls from inferior, remote request
42126 @cindex @samp{QCatchSyscalls} packet
42127 @anchor{QCatchSyscalls}
42128 Enable (@samp{QCatchSyscalls:1}) or disable (@samp{QCatchSyscalls:0})
42129 catching syscalls from the inferior process.
42131 For @samp{QCatchSyscalls:1}, each listed syscall @var{sysno} (encoded
42132 in hex) should be reported to @value{GDBN}.  If no syscall @var{sysno}
42133 is listed, every system call should be reported.
42135 Note that if a syscall not in the list is reported, @value{GDBN} will
42136 still filter the event according to its own list from all corresponding
42137 @code{catch syscall} commands.  However, it is more efficient to only
42138 report the requested syscalls.
42140 Multiple @samp{QCatchSyscalls:1} packets do not combine; any earlier
42141 @samp{QCatchSyscalls:1} list is completely replaced by the new list.
42143 If the inferior process execs, the state of @samp{QCatchSyscalls} is
42144 kept for the new process too.  On targets where exec may affect syscall
42145 numbers, for example with exec between 32 and 64-bit processes, the
42146 client should send a new packet with the new syscall list.
42148 Reply:
42149 @table @samp
42150 @item OK
42151 The request succeeded.
42153 @item E @var{nn}
42154 An error occurred.  @var{nn} are hex digits.
42156 @item @w{}
42157 An empty reply indicates that @samp{QCatchSyscalls} is not supported by
42158 the stub.
42159 @end table
42161 Use of this packet is controlled by the @code{set remote catch-syscalls}
42162 command (@pxref{Remote Configuration, set remote catch-syscalls}).
42163 This packet is not probed by default; the remote stub must request it,
42164 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42166 @item QPassSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
42167 @cindex pass signals to inferior, remote request
42168 @cindex @samp{QPassSignals} packet
42169 @anchor{QPassSignals}
42170 Each listed @var{signal} should be passed directly to the inferior process. 
42171 Signals are numbered identically to continue packets and stop replies
42172 (@pxref{Stop Reply Packets}).  Each @var{signal} list item should be
42173 strictly greater than the previous item.  These signals do not need to stop
42174 the inferior, or be reported to @value{GDBN}.  All other signals should be
42175 reported to @value{GDBN}.  Multiple @samp{QPassSignals} packets do not
42176 combine; any earlier @samp{QPassSignals} list is completely replaced by the
42177 new list.  This packet improves performance when using @samp{handle
42178 @var{signal} nostop noprint pass}.
42180 Reply:
42181 @table @samp
42182 @item OK
42183 The request succeeded.
42185 @item E @var{nn}
42186 An error occurred.  The error number @var{nn} is given as hex digits.
42188 @item @w{}
42189 An empty reply indicates that @samp{QPassSignals} is not supported by
42190 the stub.
42191 @end table
42193 Use of this packet is controlled by the @code{set remote pass-signals}
42194 command (@pxref{Remote Configuration, set remote pass-signals}).
42195 This packet is not probed by default; the remote stub must request it,
42196 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42198 @item QProgramSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
42199 @cindex signals the inferior may see, remote request
42200 @cindex @samp{QProgramSignals} packet
42201 @anchor{QProgramSignals}
42202 Each listed @var{signal} may be delivered to the inferior process.
42203 Others should be silently discarded.
42205 In some cases, the remote stub may need to decide whether to deliver a
42206 signal to the program or not without @value{GDBN} involvement.  One
42207 example of that is while detaching --- the program's threads may have
42208 stopped for signals that haven't yet had a chance of being reported to
42209 @value{GDBN}, and so the remote stub can use the signal list specified
42210 by this packet to know whether to deliver or ignore those pending
42211 signals.
42213 This does not influence whether to deliver a signal as requested by a
42214 resumption packet (@pxref{vCont packet}).
42216 Signals are numbered identically to continue packets and stop replies
42217 (@pxref{Stop Reply Packets}).  Each @var{signal} list item should be
42218 strictly greater than the previous item.  Multiple
42219 @samp{QProgramSignals} packets do not combine; any earlier
42220 @samp{QProgramSignals} list is completely replaced by the new list.
42222 Reply:
42223 @table @samp
42224 @item OK
42225 The request succeeded.
42227 @item E @var{nn}
42228 An error occurred.  The error number @var{nn} is given as hex digits.
42230 @item @w{}
42231 An empty reply indicates that @samp{QProgramSignals} is not supported
42232 by the stub.
42233 @end table
42235 Use of this packet is controlled by the @code{set remote program-signals}
42236 command (@pxref{Remote Configuration, set remote program-signals}).
42237 This packet is not probed by default; the remote stub must request it,
42238 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42240 @anchor{QThreadEvents}
42241 @item QThreadEvents:1
42242 @itemx QThreadEvents:0
42243 @cindex thread create/exit events, remote request
42244 @cindex @samp{QThreadEvents} packet
42246 Enable (@samp{QThreadEvents:1}) or disable (@samp{QThreadEvents:0})
42247 reporting of thread create and exit events.  @xref{thread create
42248 event}, for the reply specifications.  For example, this is used in
42249 non-stop mode when @value{GDBN} stops a set of threads and
42250 synchronously waits for the their corresponding stop replies.  Without
42251 exit events, if one of the threads exits, @value{GDBN} would hang
42252 forever not knowing that it should no longer expect a stop for that
42253 same thread.  @value{GDBN} does not enable this feature unless the
42254 stub reports that it supports it by including @samp{QThreadEvents+} in
42255 its @samp{qSupported} reply.
42257 Reply:
42258 @table @samp
42259 @item OK
42260 The request succeeded.
42262 @item E @var{nn}
42263 An error occurred.  The error number @var{nn} is given as hex digits.
42265 @item @w{}
42266 An empty reply indicates that @samp{QThreadEvents} is not supported by
42267 the stub.
42268 @end table
42270 Use of this packet is controlled by the @code{set remote thread-events}
42271 command (@pxref{Remote Configuration, set remote thread-events}).
42273 @item qRcmd,@var{command}
42274 @cindex execute remote command, remote request
42275 @cindex @samp{qRcmd} packet
42276 @var{command} (hex encoded) is passed to the local interpreter for
42277 execution.  Invalid commands should be reported using the output
42278 string.  Before the final result packet, the target may also respond
42279 with a number of intermediate @samp{O@var{output}} console output
42280 packets.  @emph{Implementors should note that providing access to a
42281 stubs's interpreter may have security implications}.
42283 Reply:
42284 @table @samp
42285 @item OK
42286 A command response with no output.
42287 @item @var{OUTPUT}
42288 A command response with the hex encoded output string @var{OUTPUT}.
42289 @item E @var{NN}
42290 Indicate a badly formed request.  The error number @var{NN} is given as
42291 hex digits.
42292 @item @w{}
42293 An empty reply indicates that @samp{qRcmd} is not recognized.
42294 @end table
42296 (Note that the @code{qRcmd} packet's name is separated from the
42297 command by a @samp{,}, not a @samp{:}, contrary to the naming
42298 conventions above.  Please don't use this packet as a model for new
42299 packets.)
42301 @item qSearch:memory:@var{address};@var{length};@var{search-pattern}
42302 @cindex searching memory, in remote debugging
42303 @ifnotinfo
42304 @cindex @samp{qSearch:memory} packet
42305 @end ifnotinfo
42306 @cindex @samp{qSearch memory} packet
42307 @anchor{qSearch memory}
42308 Search @var{length} bytes at @var{address} for @var{search-pattern}.
42309 Both @var{address} and @var{length} are encoded in hex;
42310 @var{search-pattern} is a sequence of bytes, also hex encoded.
42312 Reply:
42313 @table @samp
42314 @item 0
42315 The pattern was not found.
42316 @item 1,address
42317 The pattern was found at @var{address}.
42318 @item E @var{NN}
42319 A badly formed request or an error was encountered while searching memory.
42320 @item @w{}
42321 An empty reply indicates that @samp{qSearch:memory} is not recognized.
42322 @end table
42324 @item QStartNoAckMode
42325 @cindex @samp{QStartNoAckMode} packet
42326 @anchor{QStartNoAckMode}
42327 Request that the remote stub disable the normal @samp{+}/@samp{-}
42328 protocol acknowledgments (@pxref{Packet Acknowledgment}).
42330 Reply:
42331 @table @samp
42332 @item OK
42333 The stub has switched to no-acknowledgment mode.
42334 @value{GDBN} acknowledges this response,
42335 but neither the stub nor @value{GDBN} shall send or expect further
42336 @samp{+}/@samp{-} acknowledgments in the current connection.
42337 @item @w{}
42338 An empty reply indicates that the stub does not support no-acknowledgment mode.
42339 @end table
42341 @item qSupported @r{[}:@var{gdbfeature} @r{[};@var{gdbfeature}@r{]}@dots{} @r{]}
42342 @cindex supported packets, remote query
42343 @cindex features of the remote protocol
42344 @cindex @samp{qSupported} packet
42345 @anchor{qSupported}
42346 Tell the remote stub about features supported by @value{GDBN}, and
42347 query the stub for features it supports.  This packet allows
42348 @value{GDBN} and the remote stub to take advantage of each others'
42349 features.  @samp{qSupported} also consolidates multiple feature probes
42350 at startup, to improve @value{GDBN} performance---a single larger
42351 packet performs better than multiple smaller probe packets on
42352 high-latency links.  Some features may enable behavior which must not
42353 be on by default, e.g.@: because it would confuse older clients or
42354 stubs.  Other features may describe packets which could be
42355 automatically probed for, but are not.  These features must be
42356 reported before @value{GDBN} will use them.  This ``default
42357 unsupported'' behavior is not appropriate for all packets, but it
42358 helps to keep the initial connection time under control with new
42359 versions of @value{GDBN} which support increasing numbers of packets.
42361 Reply:
42362 @table @samp
42363 @item @var{stubfeature} @r{[};@var{stubfeature}@r{]}@dots{}
42364 The stub supports or does not support each returned @var{stubfeature},
42365 depending on the form of each @var{stubfeature} (see below for the
42366 possible forms).
42367 @item @w{}
42368 An empty reply indicates that @samp{qSupported} is not recognized,
42369 or that no features needed to be reported to @value{GDBN}.
42370 @end table
42372 The allowed forms for each feature (either a @var{gdbfeature} in the
42373 @samp{qSupported} packet, or a @var{stubfeature} in the response)
42374 are:
42376 @table @samp
42377 @item @var{name}=@var{value}
42378 The remote protocol feature @var{name} is supported, and associated
42379 with the specified @var{value}.  The format of @var{value} depends
42380 on the feature, but it must not include a semicolon.
42381 @item @var{name}+
42382 The remote protocol feature @var{name} is supported, and does not
42383 need an associated value.
42384 @item @var{name}-
42385 The remote protocol feature @var{name} is not supported.
42386 @item @var{name}?
42387 The remote protocol feature @var{name} may be supported, and
42388 @value{GDBN} should auto-detect support in some other way when it is
42389 needed.  This form will not be used for @var{gdbfeature} notifications,
42390 but may be used for @var{stubfeature} responses.
42391 @end table
42393 Whenever the stub receives a @samp{qSupported} request, the
42394 supplied set of @value{GDBN} features should override any previous
42395 request.  This allows @value{GDBN} to put the stub in a known
42396 state, even if the stub had previously been communicating with
42397 a different version of @value{GDBN}.
42399 The following values of @var{gdbfeature} (for the packet sent by @value{GDBN})
42400 are defined:  
42402 @table @samp
42403 @item multiprocess
42404 This feature indicates whether @value{GDBN} supports multiprocess 
42405 extensions to the remote protocol.  @value{GDBN} does not use such
42406 extensions unless the stub also reports that it supports them by
42407 including @samp{multiprocess+} in its @samp{qSupported} reply.
42408 @xref{multiprocess extensions}, for details.
42410 @item xmlRegisters
42411 This feature indicates that @value{GDBN} supports the XML target
42412 description.  If the stub sees @samp{xmlRegisters=} with target
42413 specific strings separated by a comma, it will report register
42414 description.
42416 @item qRelocInsn
42417 This feature indicates whether @value{GDBN} supports the
42418 @samp{qRelocInsn} packet (@pxref{Tracepoint Packets,,Relocate
42419 instruction reply packet}).
42421 @item swbreak
42422 This feature indicates whether @value{GDBN} supports the swbreak stop
42423 reason in stop replies.  @xref{swbreak stop reason}, for details.
42425 @item hwbreak
42426 This feature indicates whether @value{GDBN} supports the hwbreak stop
42427 reason in stop replies.  @xref{swbreak stop reason}, for details.
42429 @item fork-events
42430 This feature indicates whether @value{GDBN} supports fork event
42431 extensions to the remote protocol.  @value{GDBN} does not use such
42432 extensions unless the stub also reports that it supports them by
42433 including @samp{fork-events+} in its @samp{qSupported} reply.
42435 @item vfork-events
42436 This feature indicates whether @value{GDBN} supports vfork event
42437 extensions to the remote protocol.  @value{GDBN} does not use such
42438 extensions unless the stub also reports that it supports them by
42439 including @samp{vfork-events+} in its @samp{qSupported} reply.
42441 @item exec-events
42442 This feature indicates whether @value{GDBN} supports exec event
42443 extensions to the remote protocol.  @value{GDBN} does not use such
42444 extensions unless the stub also reports that it supports them by
42445 including @samp{exec-events+} in its @samp{qSupported} reply.
42447 @item vContSupported
42448 This feature indicates whether @value{GDBN} wants to know the
42449 supported actions in the reply to @samp{vCont?} packet.
42450 @end table
42452 Stubs should ignore any unknown values for
42453 @var{gdbfeature}.  Any @value{GDBN} which sends a @samp{qSupported}
42454 packet supports receiving packets of unlimited length (earlier
42455 versions of @value{GDBN} may reject overly long responses).  Additional values
42456 for @var{gdbfeature} may be defined in the future to let the stub take
42457 advantage of new features in @value{GDBN}, e.g.@: incompatible
42458 improvements in the remote protocol---the @samp{multiprocess} feature is
42459 an example of such a feature.  The stub's reply should be independent
42460 of the @var{gdbfeature} entries sent by @value{GDBN}; first @value{GDBN}
42461 describes all the features it supports, and then the stub replies with
42462 all the features it supports.
42464 Similarly, @value{GDBN} will silently ignore unrecognized stub feature
42465 responses, as long as each response uses one of the standard forms.
42467 Some features are flags.  A stub which supports a flag feature
42468 should respond with a @samp{+} form response.  Other features
42469 require values, and the stub should respond with an @samp{=}
42470 form response.
42472 Each feature has a default value, which @value{GDBN} will use if
42473 @samp{qSupported} is not available or if the feature is not mentioned
42474 in the @samp{qSupported} response.  The default values are fixed; a
42475 stub is free to omit any feature responses that match the defaults.
42477 Not all features can be probed, but for those which can, the probing
42478 mechanism is useful: in some cases, a stub's internal
42479 architecture may not allow the protocol layer to know some information
42480 about the underlying target in advance.  This is especially common in
42481 stubs which may be configured for multiple targets.
42483 These are the currently defined stub features and their properties:
42485 @multitable @columnfractions 0.35 0.2 0.12 0.2
42486 @c NOTE: The first row should be @headitem, but we do not yet require
42487 @c a new enough version of Texinfo (4.7) to use @headitem.
42488 @item Feature Name
42489 @tab Value Required
42490 @tab Default
42491 @tab Probe Allowed
42493 @item @samp{PacketSize}
42494 @tab Yes
42495 @tab @samp{-}
42496 @tab No
42498 @item @samp{qXfer:auxv:read}
42499 @tab No
42500 @tab @samp{-}
42501 @tab Yes
42503 @item @samp{qXfer:btrace:read}
42504 @tab No
42505 @tab @samp{-}
42506 @tab Yes
42508 @item @samp{qXfer:btrace-conf:read}
42509 @tab No
42510 @tab @samp{-}
42511 @tab Yes
42513 @item @samp{qXfer:exec-file:read}
42514 @tab No
42515 @tab @samp{-}
42516 @tab Yes
42518 @item @samp{qXfer:features:read}
42519 @tab No
42520 @tab @samp{-}
42521 @tab Yes
42523 @item @samp{qXfer:libraries:read}
42524 @tab No
42525 @tab @samp{-}
42526 @tab Yes
42528 @item @samp{qXfer:libraries-svr4:read}
42529 @tab No
42530 @tab @samp{-}
42531 @tab Yes
42533 @item @samp{augmented-libraries-svr4-read}
42534 @tab No
42535 @tab @samp{-}
42536 @tab No
42538 @item @samp{qXfer:memory-map:read}
42539 @tab No
42540 @tab @samp{-}
42541 @tab Yes
42543 @item @samp{qXfer:sdata:read}
42544 @tab No
42545 @tab @samp{-}
42546 @tab Yes
42548 @item @samp{qXfer:siginfo:read}
42549 @tab No
42550 @tab @samp{-}
42551 @tab Yes
42553 @item @samp{qXfer:siginfo:write}
42554 @tab No
42555 @tab @samp{-}
42556 @tab Yes
42558 @item @samp{qXfer:threads:read}
42559 @tab No
42560 @tab @samp{-}
42561 @tab Yes
42563 @item @samp{qXfer:traceframe-info:read}
42564 @tab No
42565 @tab @samp{-}
42566 @tab Yes
42568 @item @samp{qXfer:uib:read}
42569 @tab No
42570 @tab @samp{-}
42571 @tab Yes
42573 @item @samp{qXfer:fdpic:read}
42574 @tab No
42575 @tab @samp{-}
42576 @tab Yes
42578 @item @samp{Qbtrace:off}
42579 @tab Yes
42580 @tab @samp{-}
42581 @tab Yes
42583 @item @samp{Qbtrace:bts}
42584 @tab Yes
42585 @tab @samp{-}
42586 @tab Yes
42588 @item @samp{Qbtrace:pt}
42589 @tab Yes
42590 @tab @samp{-}
42591 @tab Yes
42593 @item @samp{Qbtrace-conf:bts:size}
42594 @tab Yes
42595 @tab @samp{-}
42596 @tab Yes
42598 @item @samp{Qbtrace-conf:pt:size}
42599 @tab Yes
42600 @tab @samp{-}
42601 @tab Yes
42603 @item @samp{QNonStop}
42604 @tab No
42605 @tab @samp{-}
42606 @tab Yes
42608 @item @samp{QCatchSyscalls}
42609 @tab No
42610 @tab @samp{-}
42611 @tab Yes
42613 @item @samp{QPassSignals}
42614 @tab No
42615 @tab @samp{-}
42616 @tab Yes
42618 @item @samp{QStartNoAckMode}
42619 @tab No
42620 @tab @samp{-}
42621 @tab Yes
42623 @item @samp{multiprocess}
42624 @tab No
42625 @tab @samp{-}
42626 @tab No
42628 @item @samp{ConditionalBreakpoints}
42629 @tab No
42630 @tab @samp{-}
42631 @tab No
42633 @item @samp{ConditionalTracepoints}
42634 @tab No
42635 @tab @samp{-}
42636 @tab No
42638 @item @samp{ReverseContinue}
42639 @tab No
42640 @tab @samp{-}
42641 @tab No
42643 @item @samp{ReverseStep}
42644 @tab No
42645 @tab @samp{-}
42646 @tab No
42648 @item @samp{TracepointSource}
42649 @tab No
42650 @tab @samp{-}
42651 @tab No
42653 @item @samp{QAgent}
42654 @tab No
42655 @tab @samp{-}
42656 @tab No
42658 @item @samp{QAllow}
42659 @tab No
42660 @tab @samp{-}
42661 @tab No
42663 @item @samp{QDisableRandomization}
42664 @tab No
42665 @tab @samp{-}
42666 @tab No
42668 @item @samp{EnableDisableTracepoints}
42669 @tab No
42670 @tab @samp{-}
42671 @tab No
42673 @item @samp{QTBuffer:size}
42674 @tab No
42675 @tab @samp{-}
42676 @tab No
42678 @item @samp{tracenz}
42679 @tab No
42680 @tab @samp{-}
42681 @tab No
42683 @item @samp{BreakpointCommands}
42684 @tab No
42685 @tab @samp{-}
42686 @tab No
42688 @item @samp{swbreak}
42689 @tab No
42690 @tab @samp{-}
42691 @tab No
42693 @item @samp{hwbreak}
42694 @tab No
42695 @tab @samp{-}
42696 @tab No
42698 @item @samp{fork-events}
42699 @tab No
42700 @tab @samp{-}
42701 @tab No
42703 @item @samp{vfork-events}
42704 @tab No
42705 @tab @samp{-}
42706 @tab No
42708 @item @samp{exec-events}
42709 @tab No
42710 @tab @samp{-}
42711 @tab No
42713 @item @samp{QThreadEvents}
42714 @tab No
42715 @tab @samp{-}
42716 @tab No
42718 @item @samp{no-resumed}
42719 @tab No
42720 @tab @samp{-}
42721 @tab No
42723 @item @samp{memory-tagging}
42724 @tab No
42725 @tab @samp{-}
42726 @tab No
42728 @end multitable
42730 These are the currently defined stub features, in more detail:
42732 @table @samp
42733 @cindex packet size, remote protocol
42734 @item PacketSize=@var{bytes}
42735 The remote stub can accept packets up to at least @var{bytes} in
42736 length.  @value{GDBN} will send packets up to this size for bulk
42737 transfers, and will never send larger packets.  This is a limit on the
42738 data characters in the packet, including the frame and checksum.
42739 There is no trailing NUL byte in a remote protocol packet; if the stub
42740 stores packets in a NUL-terminated format, it should allow an extra
42741 byte in its buffer for the NUL.  If this stub feature is not supported,
42742 @value{GDBN} guesses based on the size of the @samp{g} packet response.
42744 @item qXfer:auxv:read
42745 The remote stub understands the @samp{qXfer:auxv:read} packet
42746 (@pxref{qXfer auxiliary vector read}).
42748 @item qXfer:btrace:read
42749 The remote stub understands the @samp{qXfer:btrace:read}
42750 packet (@pxref{qXfer btrace read}).
42752 @item qXfer:btrace-conf:read
42753 The remote stub understands the @samp{qXfer:btrace-conf:read}
42754 packet (@pxref{qXfer btrace-conf read}).
42756 @item qXfer:exec-file:read
42757 The remote stub understands the @samp{qXfer:exec-file:read} packet
42758 (@pxref{qXfer executable filename read}).
42760 @item qXfer:features:read
42761 The remote stub understands the @samp{qXfer:features:read} packet
42762 (@pxref{qXfer target description read}).
42764 @item qXfer:libraries:read
42765 The remote stub understands the @samp{qXfer:libraries:read} packet
42766 (@pxref{qXfer library list read}).
42768 @item qXfer:libraries-svr4:read
42769 The remote stub understands the @samp{qXfer:libraries-svr4:read} packet
42770 (@pxref{qXfer svr4 library list read}).
42772 @item augmented-libraries-svr4-read
42773 The remote stub understands the augmented form of the
42774 @samp{qXfer:libraries-svr4:read} packet
42775 (@pxref{qXfer svr4 library list read}).
42777 @item qXfer:memory-map:read
42778 The remote stub understands the @samp{qXfer:memory-map:read} packet
42779 (@pxref{qXfer memory map read}).
42781 @item qXfer:sdata:read
42782 The remote stub understands the @samp{qXfer:sdata:read} packet
42783 (@pxref{qXfer sdata read}).
42785 @item qXfer:siginfo:read
42786 The remote stub understands the @samp{qXfer:siginfo:read} packet
42787 (@pxref{qXfer siginfo read}).
42789 @item qXfer:siginfo:write
42790 The remote stub understands the @samp{qXfer:siginfo:write} packet
42791 (@pxref{qXfer siginfo write}).
42793 @item qXfer:threads:read
42794 The remote stub understands the @samp{qXfer:threads:read} packet
42795 (@pxref{qXfer threads read}).
42797 @item qXfer:traceframe-info:read
42798 The remote stub understands the @samp{qXfer:traceframe-info:read}
42799 packet (@pxref{qXfer traceframe info read}).
42801 @item qXfer:uib:read
42802 The remote stub understands the @samp{qXfer:uib:read}
42803 packet (@pxref{qXfer unwind info block}).
42805 @item qXfer:fdpic:read
42806 The remote stub understands the @samp{qXfer:fdpic:read}
42807 packet (@pxref{qXfer fdpic loadmap read}).
42809 @item QNonStop
42810 The remote stub understands the @samp{QNonStop} packet
42811 (@pxref{QNonStop}).
42813 @item QCatchSyscalls
42814 The remote stub understands the @samp{QCatchSyscalls} packet
42815 (@pxref{QCatchSyscalls}).
42817 @item QPassSignals
42818 The remote stub understands the @samp{QPassSignals} packet
42819 (@pxref{QPassSignals}).
42821 @item QStartNoAckMode
42822 The remote stub understands the @samp{QStartNoAckMode} packet and
42823 prefers to operate in no-acknowledgment mode.  @xref{Packet Acknowledgment}.
42825 @item multiprocess
42826 @anchor{multiprocess extensions}
42827 @cindex multiprocess extensions, in remote protocol
42828 The remote stub understands the multiprocess extensions to the remote
42829 protocol syntax.  The multiprocess extensions affect the syntax of
42830 thread IDs in both packets and replies (@pxref{thread-id syntax}), and
42831 add process IDs to the @samp{D} packet and @samp{W} and @samp{X}
42832 replies.  Note that reporting this feature indicates support for the
42833 syntactic extensions only, not that the stub necessarily supports
42834 debugging of more than one process at a time.  The stub must not use
42835 multiprocess extensions in packet replies unless @value{GDBN} has also
42836 indicated it supports them in its @samp{qSupported} request.
42838 @item qXfer:osdata:read
42839 The remote stub understands the @samp{qXfer:osdata:read} packet
42840 ((@pxref{qXfer osdata read}).
42842 @item ConditionalBreakpoints
42843 The target accepts and implements evaluation of conditional expressions
42844 defined for breakpoints.  The target will only report breakpoint triggers
42845 when such conditions are true (@pxref{Conditions, ,Break Conditions}).
42847 @item ConditionalTracepoints
42848 The remote stub accepts and implements conditional expressions defined
42849 for tracepoints (@pxref{Tracepoint Conditions}).
42851 @item ReverseContinue
42852 The remote stub accepts and implements the reverse continue packet
42853 (@pxref{bc}).
42855 @item ReverseStep
42856 The remote stub accepts and implements the reverse step packet
42857 (@pxref{bs}).
42859 @item TracepointSource
42860 The remote stub understands the @samp{QTDPsrc} packet that supplies
42861 the source form of tracepoint definitions.
42863 @item QAgent
42864 The remote stub understands the @samp{QAgent} packet.
42866 @item QAllow
42867 The remote stub understands the @samp{QAllow} packet.
42869 @item QDisableRandomization
42870 The remote stub understands the @samp{QDisableRandomization} packet.
42872 @item StaticTracepoint
42873 @cindex static tracepoints, in remote protocol
42874 The remote stub supports static tracepoints.
42876 @item InstallInTrace
42877 @anchor{install tracepoint in tracing}
42878 The remote stub supports installing tracepoint in tracing.
42880 @item EnableDisableTracepoints
42881 The remote stub supports the @samp{QTEnable} (@pxref{QTEnable}) and
42882 @samp{QTDisable} (@pxref{QTDisable}) packets that allow tracepoints
42883 to be enabled and disabled while a trace experiment is running.
42885 @item QTBuffer:size
42886 The remote stub supports the @samp{QTBuffer:size} (@pxref{QTBuffer-size})
42887 packet that allows to change the size of the trace buffer.
42889 @item tracenz
42890 @cindex string tracing, in remote protocol
42891 The remote stub supports the @samp{tracenz} bytecode for collecting strings.
42892 See @ref{Bytecode Descriptions} for details about the bytecode.
42894 @item BreakpointCommands
42895 @cindex breakpoint commands, in remote protocol
42896 The remote stub supports running a breakpoint's command list itself,
42897 rather than reporting the hit to @value{GDBN}.
42899 @item Qbtrace:off
42900 The remote stub understands the @samp{Qbtrace:off} packet.
42902 @item Qbtrace:bts
42903 The remote stub understands the @samp{Qbtrace:bts} packet.
42905 @item Qbtrace:pt
42906 The remote stub understands the @samp{Qbtrace:pt} packet.
42908 @item Qbtrace-conf:bts:size
42909 The remote stub understands the @samp{Qbtrace-conf:bts:size} packet.
42911 @item Qbtrace-conf:pt:size
42912 The remote stub understands the @samp{Qbtrace-conf:pt:size} packet.
42914 @item swbreak
42915 The remote stub reports the @samp{swbreak} stop reason for memory
42916 breakpoints.
42918 @item hwbreak
42919 The remote stub reports the @samp{hwbreak} stop reason for hardware
42920 breakpoints.
42922 @item fork-events
42923 The remote stub reports the @samp{fork} stop reason for fork events.
42925 @item vfork-events
42926 The remote stub reports the @samp{vfork} stop reason for vfork events
42927 and vforkdone events.
42929 @item exec-events
42930 The remote stub reports the @samp{exec} stop reason for exec events.
42932 @item vContSupported
42933 The remote stub reports the supported actions in the reply to
42934 @samp{vCont?} packet.
42936 @item QThreadEvents
42937 The remote stub understands the @samp{QThreadEvents} packet.
42939 @item no-resumed
42940 The remote stub reports the @samp{N} stop reply.
42943 @item memory-tagging
42944 The remote stub supports and implements the required memory tagging
42945 functionality and understands the @samp{qMemTags} (@pxref{qMemTags}) and
42946 @samp{QMemTags} (@pxref{QMemTags}) packets.
42948 For AArch64 GNU/Linux systems, this feature also requires access to the
42949 @file{/proc/@var{pid}/smaps} file so memory mapping page flags can be inspected.
42950 This is done via the @samp{vFile} requests.
42952 @end table
42954 @item qSymbol::
42955 @cindex symbol lookup, remote request
42956 @cindex @samp{qSymbol} packet
42957 Notify the target that @value{GDBN} is prepared to serve symbol lookup
42958 requests.  Accept requests from the target for the values of symbols.
42960 Reply:
42961 @table @samp
42962 @item OK
42963 The target does not need to look up any (more) symbols.
42964 @item qSymbol:@var{sym_name}
42965 The target requests the value of symbol @var{sym_name} (hex encoded).
42966 @value{GDBN} may provide the value by using the
42967 @samp{qSymbol:@var{sym_value}:@var{sym_name}} message, described
42968 below.
42969 @end table
42971 @item qSymbol:@var{sym_value}:@var{sym_name}
42972 Set the value of @var{sym_name} to @var{sym_value}.
42974 @var{sym_name} (hex encoded) is the name of a symbol whose value the
42975 target has previously requested.
42977 @var{sym_value} (hex) is the value for symbol @var{sym_name}.  If
42978 @value{GDBN} cannot supply a value for @var{sym_name}, then this field
42979 will be empty.
42981 Reply:
42982 @table @samp
42983 @item OK
42984 The target does not need to look up any (more) symbols.
42985 @item qSymbol:@var{sym_name}
42986 The target requests the value of a new symbol @var{sym_name} (hex
42987 encoded).  @value{GDBN} will continue to supply the values of symbols
42988 (if available), until the target ceases to request them.
42989 @end table
42991 @item qTBuffer
42992 @itemx QTBuffer
42993 @itemx QTDisconnected
42994 @itemx QTDP
42995 @itemx QTDPsrc
42996 @itemx QTDV
42997 @itemx qTfP
42998 @itemx qTfV
42999 @itemx QTFrame
43000 @itemx qTMinFTPILen
43002 @xref{Tracepoint Packets}.
43004 @anchor{qThreadExtraInfo}
43005 @item qThreadExtraInfo,@var{thread-id}
43006 @cindex thread attributes info, remote request
43007 @cindex @samp{qThreadExtraInfo} packet
43008 Obtain from the target OS a printable string description of thread
43009 attributes for the thread @var{thread-id}; see @ref{thread-id syntax},
43010 for the forms of @var{thread-id}.  This
43011 string may contain anything that the target OS thinks is interesting
43012 for @value{GDBN} to tell the user about the thread.  The string is
43013 displayed in @value{GDBN}'s @code{info threads} display.  Some
43014 examples of possible thread extra info strings are @samp{Runnable}, or
43015 @samp{Blocked on Mutex}.
43017 Reply:
43018 @table @samp
43019 @item @var{XX}@dots{}
43020 Where @samp{@var{XX}@dots{}} is a hex encoding of @sc{ascii} data,
43021 comprising the printable string containing the extra information about
43022 the thread's attributes.
43023 @end table
43025 (Note that the @code{qThreadExtraInfo} packet's name is separated from
43026 the command by a @samp{,}, not a @samp{:}, contrary to the naming
43027 conventions above.  Please don't use this packet as a model for new
43028 packets.)
43030 @item QTNotes
43031 @itemx qTP
43032 @itemx QTSave
43033 @itemx qTsP
43034 @itemx qTsV
43035 @itemx QTStart    
43036 @itemx QTStop     
43037 @itemx QTEnable
43038 @itemx QTDisable
43039 @itemx QTinit     
43040 @itemx QTro       
43041 @itemx qTStatus   
43042 @itemx qTV
43043 @itemx qTfSTM
43044 @itemx qTsSTM
43045 @itemx qTSTMat
43046 @xref{Tracepoint Packets}.
43048 @item qXfer:@var{object}:read:@var{annex}:@var{offset},@var{length}
43049 @cindex read special object, remote request
43050 @cindex @samp{qXfer} packet
43051 @anchor{qXfer read}
43052 Read uninterpreted bytes from the target's special data area
43053 identified by the keyword @var{object}.  Request @var{length} bytes
43054 starting at @var{offset} bytes into the data.  The content and
43055 encoding of @var{annex} is specific to @var{object}; it can supply
43056 additional details about what data to access.
43058 Reply:
43059 @table @samp
43060 @item m @var{data}
43061 Data @var{data} (@pxref{Binary Data}) has been read from the
43062 target.  There may be more data at a higher address (although
43063 it is permitted to return @samp{m} even for the last valid
43064 block of data, as long as at least one byte of data was read).
43065 It is possible for @var{data} to have fewer bytes than the @var{length} in the
43066 request.
43068 @item l @var{data}
43069 Data @var{data} (@pxref{Binary Data}) has been read from the target.
43070 There is no more data to be read.  It is possible for @var{data} to
43071 have fewer bytes than the @var{length} in the request.
43073 @item l
43074 The @var{offset} in the request is at the end of the data.
43075 There is no more data to be read.
43077 @item E00
43078 The request was malformed, or @var{annex} was invalid.
43080 @item E @var{nn}
43081 The offset was invalid, or there was an error encountered reading the data.
43082 The @var{nn} part is a hex-encoded @code{errno} value.
43084 @item @w{}
43085 An empty reply indicates the @var{object} string was not recognized by
43086 the stub, or that the object does not support reading.
43087 @end table
43089 Here are the specific requests of this form defined so far.  All the
43090 @samp{qXfer:@var{object}:read:@dots{}} requests use the same reply
43091 formats, listed above.
43093 @table @samp
43094 @item qXfer:auxv:read::@var{offset},@var{length}
43095 @anchor{qXfer auxiliary vector read}
43096 Access the target's @dfn{auxiliary vector}.  @xref{OS Information,
43097 auxiliary vector}.  Note @var{annex} must be empty.
43099 This packet is not probed by default; the remote stub must request it,
43100 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43102 @item qXfer:btrace:read:@var{annex}:@var{offset},@var{length}
43103 @anchor{qXfer btrace read}
43105 Return a description of the current branch trace.
43106 @xref{Branch Trace Format}.  The annex part of the generic @samp{qXfer}
43107 packet may have one of the following values:
43109 @table @code
43110 @item all
43111 Returns all available branch trace.
43113 @item new
43114 Returns all available branch trace if the branch trace changed since
43115 the last read request.
43117 @item delta
43118 Returns the new branch trace since the last read request.  Adds a new
43119 block to the end of the trace that begins at zero and ends at the source
43120 location of the first branch in the trace buffer.  This extra block is
43121 used to stitch traces together.
43123 If the trace buffer overflowed, returns an error indicating the overflow.
43124 @end table
43126 This packet is not probed by default; the remote stub must request it
43127 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43129 @item qXfer:btrace-conf:read::@var{offset},@var{length}
43130 @anchor{qXfer btrace-conf read}
43132 Return a description of the current branch trace configuration.
43133 @xref{Branch Trace Configuration Format}.
43135 This packet is not probed by default; the remote stub must request it
43136 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43138 @item qXfer:exec-file:read:@var{annex}:@var{offset},@var{length}
43139 @anchor{qXfer executable filename read}
43140 Return the full absolute name of the file that was executed to create
43141 a process running on the remote system.  The annex specifies the
43142 numeric process ID of the process to query, encoded as a hexadecimal
43143 number.  If the annex part is empty the remote stub should return the
43144 filename corresponding to the currently executing process.
43146 This packet is not probed by default; the remote stub must request it,
43147 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43149 @item qXfer:features:read:@var{annex}:@var{offset},@var{length}
43150 @anchor{qXfer target description read}
43151 Access the @dfn{target description}.  @xref{Target Descriptions}.  The
43152 annex specifies which XML document to access.  The main description is
43153 always loaded from the @samp{target.xml} annex.
43155 This packet is not probed by default; the remote stub must request it,
43156 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43158 @item qXfer:libraries:read:@var{annex}:@var{offset},@var{length}
43159 @anchor{qXfer library list read}
43160 Access the target's list of loaded libraries.  @xref{Library List Format}.
43161 The annex part of the generic @samp{qXfer} packet must be empty
43162 (@pxref{qXfer read}).
43164 Targets which maintain a list of libraries in the program's memory do
43165 not need to implement this packet; it is designed for platforms where
43166 the operating system manages the list of loaded libraries.
43168 This packet is not probed by default; the remote stub must request it,
43169 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43171 @item qXfer:libraries-svr4:read:@var{annex}:@var{offset},@var{length}
43172 @anchor{qXfer svr4 library list read}
43173 Access the target's list of loaded libraries when the target is an SVR4
43174 platform.  @xref{Library List Format for SVR4 Targets}.  The annex part
43175 of the generic @samp{qXfer} packet must be empty unless the remote
43176 stub indicated it supports the augmented form of this packet
43177 by supplying an appropriate @samp{qSupported} response
43178 (@pxref{qXfer read}, @ref{qSupported}).
43180 This packet is optional for better performance on SVR4 targets.  
43181 @value{GDBN} uses memory read packets to read the SVR4 library list otherwise.
43183 This packet is not probed by default; the remote stub must request it,
43184 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43186 If the remote stub indicates it supports the augmented form of this
43187 packet then the annex part of the generic @samp{qXfer} packet may
43188 contain a semicolon-separated list of @samp{@var{name}=@var{value}}
43189 arguments.  The currently supported arguments are:
43191 @table @code
43192 @item start=@var{address}
43193 A hexadecimal number specifying the address of the @samp{struct
43194 link_map} to start reading the library list from.  If unset or zero
43195 then the first @samp{struct link_map} in the library list will be
43196 chosen as the starting point.
43198 @item prev=@var{address}
43199 A hexadecimal number specifying the address of the @samp{struct
43200 link_map} immediately preceding the @samp{struct link_map}
43201 specified by the @samp{start} argument.  If unset or zero then
43202 the remote stub will expect that no @samp{struct link_map}
43203 exists prior to the starting point.
43205 @end table
43207 Arguments that are not understood by the remote stub will be silently
43208 ignored.
43210 @item qXfer:memory-map:read::@var{offset},@var{length}
43211 @anchor{qXfer memory map read}
43212 Access the target's @dfn{memory-map}.  @xref{Memory Map Format}.  The
43213 annex part of the generic @samp{qXfer} packet must be empty
43214 (@pxref{qXfer read}).
43216 This packet is not probed by default; the remote stub must request it,
43217 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43219 @item qXfer:sdata:read::@var{offset},@var{length}
43220 @anchor{qXfer sdata read}
43222 Read contents of the extra collected static tracepoint marker
43223 information.  The annex part of the generic @samp{qXfer} packet must
43224 be empty (@pxref{qXfer read}).  @xref{Tracepoint Actions,,Tracepoint
43225 Action Lists}.
43227 This packet is not probed by default; the remote stub must request it,
43228 by supplying an appropriate @samp{qSupported} response
43229 (@pxref{qSupported}).
43231 @item qXfer:siginfo:read::@var{offset},@var{length}
43232 @anchor{qXfer siginfo read}
43233 Read contents of the extra signal information on the target
43234 system.  The annex part of the generic @samp{qXfer} packet must be
43235 empty (@pxref{qXfer read}).
43237 This packet is not probed by default; the remote stub must request it,
43238 by supplying an appropriate @samp{qSupported} response
43239 (@pxref{qSupported}).
43241 @item qXfer:threads:read::@var{offset},@var{length}
43242 @anchor{qXfer threads read}
43243 Access the list of threads on target.  @xref{Thread List Format}.  The
43244 annex part of the generic @samp{qXfer} packet must be empty
43245 (@pxref{qXfer read}).
43247 This packet is not probed by default; the remote stub must request it,
43248 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43250 @item qXfer:traceframe-info:read::@var{offset},@var{length}
43251 @anchor{qXfer traceframe info read}
43253 Return a description of the current traceframe's contents.
43254 @xref{Traceframe Info Format}.  The annex part of the generic
43255 @samp{qXfer} packet must be empty (@pxref{qXfer read}).
43257 This packet is not probed by default; the remote stub must request it,
43258 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43260 @item qXfer:uib:read:@var{pc}:@var{offset},@var{length}
43261 @anchor{qXfer unwind info block}
43263 Return the unwind information block for @var{pc}.  This packet is used
43264 on OpenVMS/ia64 to ask the kernel unwind information.
43266 This packet is not probed by default.
43268 @item qXfer:fdpic:read:@var{annex}:@var{offset},@var{length}
43269 @anchor{qXfer fdpic loadmap read}
43270 Read contents of @code{loadmap}s on the target system.  The
43271 annex, either @samp{exec} or @samp{interp}, specifies which @code{loadmap},
43272 executable @code{loadmap} or interpreter @code{loadmap} to read.
43274 This packet is not probed by default; the remote stub must request it,
43275 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43277 @item qXfer:osdata:read::@var{offset},@var{length}
43278 @anchor{qXfer osdata read}
43279 Access the target's @dfn{operating system information}.
43280 @xref{Operating System Information}.
43282 @end table
43284 @item qXfer:@var{object}:write:@var{annex}:@var{offset}:@var{data}@dots{}
43285 @cindex write data into object, remote request
43286 @anchor{qXfer write}
43287 Write uninterpreted bytes into the target's special data area
43288 identified by the keyword @var{object}, starting at @var{offset} bytes
43289 into the data.  The binary-encoded data (@pxref{Binary Data}) to be
43290 written is given by @var{data}@dots{}.  The content and encoding of @var{annex}
43291 is specific to @var{object}; it can supply additional details about what data
43292 to access.
43294 Reply:
43295 @table @samp
43296 @item @var{nn}
43297 @var{nn} (hex encoded) is the number of bytes written.
43298 This may be fewer bytes than supplied in the request.
43300 @item E00
43301 The request was malformed, or @var{annex} was invalid.
43303 @item E @var{nn}
43304 The offset was invalid, or there was an error encountered writing the data.
43305 The @var{nn} part is a hex-encoded @code{errno} value.
43307 @item @w{}
43308 An empty reply indicates the @var{object} string was not
43309 recognized by the stub, or that the object does not support writing.
43310 @end table
43312 Here are the specific requests of this form defined so far.  All the
43313 @samp{qXfer:@var{object}:write:@dots{}} requests use the same reply
43314 formats, listed above.
43316 @table @samp
43317 @item qXfer:siginfo:write::@var{offset}:@var{data}@dots{}
43318 @anchor{qXfer siginfo write}
43319 Write @var{data} to the extra signal information on the target system.
43320 The annex part of the generic @samp{qXfer} packet must be
43321 empty (@pxref{qXfer write}).
43323 This packet is not probed by default; the remote stub must request it,
43324 by supplying an appropriate @samp{qSupported} response
43325 (@pxref{qSupported}).
43326 @end table
43328 @item qXfer:@var{object}:@var{operation}:@dots{}
43329 Requests of this form may be added in the future.  When a stub does
43330 not recognize the @var{object} keyword, or its support for
43331 @var{object} does not recognize the @var{operation} keyword, the stub
43332 must respond with an empty packet.
43334 @item qAttached:@var{pid}
43335 @cindex query attached, remote request
43336 @cindex @samp{qAttached} packet
43337 Return an indication of whether the remote server attached to an
43338 existing process or created a new process.  When the multiprocess
43339 protocol extensions are supported (@pxref{multiprocess extensions}),
43340 @var{pid} is an integer in hexadecimal format identifying the target
43341 process.  Otherwise, @value{GDBN} will omit the @var{pid} field and
43342 the query packet will be simplified as @samp{qAttached}.
43344 This query is used, for example, to know whether the remote process
43345 should be detached or killed when a @value{GDBN} session is ended with
43346 the @code{quit} command.
43348 Reply:
43349 @table @samp
43350 @item 1
43351 The remote server attached to an existing process.
43352 @item 0
43353 The remote server created a new process.
43354 @item E @var{NN}
43355 A badly formed request or an error was encountered.
43356 @end table
43358 @item Qbtrace:bts
43359 Enable branch tracing for the current thread using Branch Trace Store.
43361 Reply:
43362 @table @samp
43363 @item OK
43364 Branch tracing has been enabled.
43365 @item E.errtext
43366 A badly formed request or an error was encountered.
43367 @end table
43369 @item Qbtrace:pt
43370 Enable branch tracing for the current thread using Intel Processor Trace.
43372 Reply:
43373 @table @samp
43374 @item OK
43375 Branch tracing has been enabled.
43376 @item E.errtext
43377 A badly formed request or an error was encountered.
43378 @end table
43380 @item Qbtrace:off
43381 Disable branch tracing for the current thread.
43383 Reply:
43384 @table @samp
43385 @item OK
43386 Branch tracing has been disabled.
43387 @item E.errtext
43388 A badly formed request or an error was encountered.
43389 @end table
43391 @item Qbtrace-conf:bts:size=@var{value}
43392 Set the requested ring buffer size for new threads that use the
43393 btrace recording method in bts format.
43395 Reply:
43396 @table @samp
43397 @item OK
43398 The ring buffer size has been set.
43399 @item E.errtext
43400 A badly formed request or an error was encountered.
43401 @end table
43403 @item Qbtrace-conf:pt:size=@var{value}
43404 Set the requested ring buffer size for new threads that use the
43405 btrace recording method in pt format.
43407 Reply:
43408 @table @samp
43409 @item OK
43410 The ring buffer size has been set.
43411 @item E.errtext
43412 A badly formed request or an error was encountered.
43413 @end table
43415 @end table
43417 @node Architecture-Specific Protocol Details
43418 @section Architecture-Specific Protocol Details
43420 This section describes how the remote protocol is applied to specific
43421 target architectures.  Also see @ref{Standard Target Features}, for
43422 details of XML target descriptions for each architecture.
43424 @menu
43425 * ARM-Specific Protocol Details::
43426 * MIPS-Specific Protocol Details::
43427 @end menu
43429 @node ARM-Specific Protocol Details
43430 @subsection @acronym{ARM}-specific Protocol Details
43432 @menu
43433 * ARM Breakpoint Kinds::
43434 * ARM Memory Tag Types::
43435 @end menu
43437 @node ARM Breakpoint Kinds
43438 @subsubsection @acronym{ARM} Breakpoint Kinds
43439 @cindex breakpoint kinds, @acronym{ARM}
43441 These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
43443 @table @r
43445 @item 2
43446 16-bit Thumb mode breakpoint.
43448 @item 3
43449 32-bit Thumb mode (Thumb-2) breakpoint.
43451 @item 4
43452 32-bit @acronym{ARM} mode breakpoint.
43454 @end table
43456 @node ARM Memory Tag Types
43457 @subsubsection @acronym{ARM} Memory Tag Types
43458 @cindex memory tag types, @acronym{ARM}
43460 These memory tag types are defined for the @samp{qMemTag} and @samp{QMemTag}
43461 packets.
43463 @table @r
43465 @item 0
43466 MTE logical tag
43468 @item 1
43469 MTE allocation tag
43471 @end table
43473 @node MIPS-Specific Protocol Details
43474 @subsection @acronym{MIPS}-specific Protocol Details
43476 @menu
43477 * MIPS Register packet Format::
43478 * MIPS Breakpoint Kinds::
43479 @end menu
43481 @node MIPS Register packet Format
43482 @subsubsection @acronym{MIPS} Register Packet Format
43483 @cindex register packet format, @acronym{MIPS}
43485 The following @code{g}/@code{G} packets have previously been defined.
43486 In the below, some thirty-two bit registers are transferred as
43487 sixty-four bits.  Those registers should be zero/sign extended (which?)
43488 to fill the space allocated.  Register bytes are transferred in target
43489 byte order.  The two nibbles within a register byte are transferred
43490 most-significant -- least-significant.
43492 @table @r
43494 @item MIPS32
43495 All registers are transferred as thirty-two bit quantities in the order:
43496 32 general-purpose; sr; lo; hi; bad; cause; pc; 32 floating-point
43497 registers; fsr; fir; fp.
43499 @item MIPS64
43500 All registers are transferred as sixty-four bit quantities (including
43501 thirty-two bit registers such as @code{sr}).  The ordering is the same
43502 as @code{MIPS32}.
43504 @end table
43506 @node MIPS Breakpoint Kinds
43507 @subsubsection @acronym{MIPS} Breakpoint Kinds
43508 @cindex breakpoint kinds, @acronym{MIPS}
43510 These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
43512 @table @r
43514 @item 2
43515 16-bit @acronym{MIPS16} mode breakpoint.
43517 @item 3
43518 16-bit @acronym{microMIPS} mode breakpoint.
43520 @item 4
43521 32-bit standard @acronym{MIPS} mode breakpoint.
43523 @item 5
43524 32-bit @acronym{microMIPS} mode breakpoint.
43526 @end table
43528 @node Tracepoint Packets
43529 @section Tracepoint Packets
43530 @cindex tracepoint packets
43531 @cindex packets, tracepoint
43533 Here we describe the packets @value{GDBN} uses to implement
43534 tracepoints (@pxref{Tracepoints}).
43536 @table @samp
43538 @item QTDP:@var{n}:@var{addr}:@var{ena}:@var{step}:@var{pass}[:F@var{flen}][:X@var{len},@var{bytes}]@r{[}-@r{]}
43539 @cindex @samp{QTDP} packet
43540 Create a new tracepoint, number @var{n}, at @var{addr}.  If @var{ena}
43541 is @samp{E}, then the tracepoint is enabled; if it is @samp{D}, then
43542 the tracepoint is disabled.  The @var{step} gives the tracepoint's step
43543 count, and @var{pass} gives its pass count.  If an @samp{F} is present,
43544 then the tracepoint is to be a fast tracepoint, and the @var{flen} is
43545 the number of bytes that the target should copy elsewhere to make room
43546 for the tracepoint.  If an @samp{X} is present, it introduces a
43547 tracepoint condition, which consists of a hexadecimal length, followed
43548 by a comma and hex-encoded bytes, in a manner similar to action
43549 encodings as described below.  If the trailing @samp{-} is present,
43550 further @samp{QTDP} packets will follow to specify this tracepoint's
43551 actions.
43553 Replies:
43554 @table @samp
43555 @item OK
43556 The packet was understood and carried out.
43557 @item qRelocInsn
43558 @xref{Tracepoint Packets,,Relocate instruction reply packet}.
43559 @item  @w{}
43560 The packet was not recognized.
43561 @end table
43563 @item QTDP:-@var{n}:@var{addr}:@r{[}S@r{]}@var{action}@dots{}@r{[}-@r{]}
43564 Define actions to be taken when a tracepoint is hit.  The @var{n} and
43565 @var{addr} must be the same as in the initial @samp{QTDP} packet for
43566 this tracepoint.  This packet may only be sent immediately after
43567 another @samp{QTDP} packet that ended with a @samp{-}.  If the
43568 trailing @samp{-} is present, further @samp{QTDP} packets will follow,
43569 specifying more actions for this tracepoint.
43571 In the series of action packets for a given tracepoint, at most one
43572 can have an @samp{S} before its first @var{action}.  If such a packet
43573 is sent, it and the following packets define ``while-stepping''
43574 actions.  Any prior packets define ordinary actions --- that is, those
43575 taken when the tracepoint is first hit.  If no action packet has an
43576 @samp{S}, then all the packets in the series specify ordinary
43577 tracepoint actions.
43579 The @samp{@var{action}@dots{}} portion of the packet is a series of
43580 actions, concatenated without separators.  Each action has one of the
43581 following forms:
43583 @table @samp
43585 @item R @var{mask}
43586 Collect the registers whose bits are set in @var{mask},
43587 a hexadecimal number whose @var{i}'th bit is set if register number
43588 @var{i} should be collected.  (The least significant bit is numbered
43589 zero.)  Note that @var{mask} may be any number of digits long; it may
43590 not fit in a 32-bit word.
43592 @item M @var{basereg},@var{offset},@var{len}
43593 Collect @var{len} bytes of memory starting at the address in register
43594 number @var{basereg}, plus @var{offset}.  If @var{basereg} is
43595 @samp{-1}, then the range has a fixed address: @var{offset} is the
43596 address of the lowest byte to collect.  The @var{basereg},
43597 @var{offset}, and @var{len} parameters are all unsigned hexadecimal
43598 values (the @samp{-1} value for @var{basereg} is a special case).
43600 @item X @var{len},@var{expr}
43601 Evaluate @var{expr}, whose length is @var{len}, and collect memory as
43602 it directs.  The agent expression @var{expr} is as described in
43603 @ref{Agent Expressions}.  Each byte of the expression is encoded as a
43604 two-digit hex number in the packet; @var{len} is the number of bytes
43605 in the expression (and thus one-half the number of hex digits in the
43606 packet).
43608 @end table
43610 Any number of actions may be packed together in a single @samp{QTDP}
43611 packet, as long as the packet does not exceed the maximum packet
43612 length (400 bytes, for many stubs).  There may be only one @samp{R}
43613 action per tracepoint, and it must precede any @samp{M} or @samp{X}
43614 actions.  Any registers referred to by @samp{M} and @samp{X} actions
43615 must be collected by a preceding @samp{R} action.  (The
43616 ``while-stepping'' actions are treated as if they were attached to a
43617 separate tracepoint, as far as these restrictions are concerned.)
43619 Replies:
43620 @table @samp
43621 @item OK
43622 The packet was understood and carried out.
43623 @item qRelocInsn
43624 @xref{Tracepoint Packets,,Relocate instruction reply packet}.
43625 @item  @w{}
43626 The packet was not recognized.
43627 @end table
43629 @item QTDPsrc:@var{n}:@var{addr}:@var{type}:@var{start}:@var{slen}:@var{bytes}
43630 @cindex @samp{QTDPsrc} packet
43631 Specify a source string of tracepoint @var{n} at address @var{addr}.
43632 This is useful to get accurate reproduction of the tracepoints
43633 originally downloaded at the beginning of the trace run.  The @var{type}
43634 is the name of the tracepoint part, such as @samp{cond} for the
43635 tracepoint's conditional expression (see below for a list of types), while
43636 @var{bytes} is the string, encoded in hexadecimal.
43638 @var{start} is the offset of the @var{bytes} within the overall source
43639 string, while @var{slen} is the total length of the source string.
43640 This is intended for handling source strings that are longer than will
43641 fit in a single packet.
43642 @c Add detailed example when this info is moved into a dedicated
43643 @c tracepoint descriptions section.
43645 The available string types are @samp{at} for the location,
43646 @samp{cond} for the conditional, and @samp{cmd} for an action command.
43647 @value{GDBN} sends a separate packet for each command in the action
43648 list, in the same order in which the commands are stored in the list.
43650 The target does not need to do anything with source strings except
43651 report them back as part of the replies to the @samp{qTfP}/@samp{qTsP}
43652 query packets.
43654 Although this packet is optional, and @value{GDBN} will only send it
43655 if the target replies with @samp{TracepointSource} @xref{General
43656 Query Packets}, it makes both disconnected tracing and trace files
43657 much easier to use.  Otherwise the user must be careful that the
43658 tracepoints in effect while looking at trace frames are identical to
43659 the ones in effect during the trace run; even a small discrepancy
43660 could cause @samp{tdump} not to work, or a particular trace frame not
43661 be found.
43663 @item QTDV:@var{n}:@var{value}:@var{builtin}:@var{name}
43664 @cindex define trace state variable, remote request
43665 @cindex @samp{QTDV} packet
43666 Create a new trace state variable, number @var{n}, with an initial
43667 value of @var{value}, which is a 64-bit signed integer.  Both @var{n}
43668 and @var{value} are encoded as hexadecimal values. @value{GDBN} has
43669 the option of not using this packet for initial values of zero; the
43670 target should simply create the trace state variables as they are
43671 mentioned in expressions.  The value @var{builtin} should be 1 (one)
43672 if the trace state variable is builtin and 0 (zero) if it is not builtin.
43673 @value{GDBN} only sets @var{builtin} to 1 if a previous @samp{qTfV} or
43674 @samp{qTsV} packet had it set.  The contents of @var{name} is the
43675 hex-encoded name (without the leading @samp{$}) of the trace state
43676 variable.
43678 @item QTFrame:@var{n}
43679 @cindex @samp{QTFrame} packet
43680 Select the @var{n}'th tracepoint frame from the buffer, and use the
43681 register and memory contents recorded there to answer subsequent
43682 request packets from @value{GDBN}.
43684 A successful reply from the stub indicates that the stub has found the
43685 requested frame.  The response is a series of parts, concatenated
43686 without separators, describing the frame we selected.  Each part has
43687 one of the following forms:
43689 @table @samp
43690 @item F @var{f}
43691 The selected frame is number @var{n} in the trace frame buffer;
43692 @var{f} is a hexadecimal number.  If @var{f} is @samp{-1}, then there
43693 was no frame matching the criteria in the request packet.
43695 @item T @var{t}
43696 The selected trace frame records a hit of tracepoint number @var{t};
43697 @var{t} is a hexadecimal number.
43699 @end table
43701 @item QTFrame:pc:@var{addr}
43702 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43703 currently selected frame whose PC is @var{addr};
43704 @var{addr} is a hexadecimal number.
43706 @item QTFrame:tdp:@var{t}
43707 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43708 currently selected frame that is a hit of tracepoint @var{t}; @var{t}
43709 is a hexadecimal number.
43711 @item QTFrame:range:@var{start}:@var{end}
43712 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43713 currently selected frame whose PC is between @var{start} (inclusive)
43714 and @var{end} (inclusive); @var{start} and @var{end} are hexadecimal
43715 numbers.
43717 @item QTFrame:outside:@var{start}:@var{end}
43718 Like @samp{QTFrame:range:@var{start}:@var{end}}, but select the first
43719 frame @emph{outside} the given range of addresses (exclusive).
43721 @item qTMinFTPILen
43722 @cindex @samp{qTMinFTPILen} packet
43723 This packet requests the minimum length of instruction at which a fast
43724 tracepoint (@pxref{Set Tracepoints}) may be placed.  For instance, on
43725 the 32-bit x86 architecture, it is possible to use a 4-byte jump, but
43726 it depends on the target system being able to create trampolines in
43727 the first 64K of memory, which might or might not be possible for that
43728 system.  So the reply to this packet will be 4 if it is able to
43729 arrange for that.
43731 Replies:
43733 @table @samp
43734 @item 0
43735 The minimum instruction length is currently unknown.
43736 @item @var{length}
43737 The minimum instruction length is @var{length}, where @var{length}
43738 is a hexadecimal number greater or equal to 1.  A reply
43739 of 1 means that a fast tracepoint may be placed on any instruction
43740 regardless of size.
43741 @item E
43742 An error has occurred.
43743 @item @w{}
43744 An empty reply indicates that the request is not supported by the stub.
43745 @end table
43747 @item QTStart
43748 @cindex @samp{QTStart} packet
43749 Begin the tracepoint experiment.  Begin collecting data from
43750 tracepoint hits in the trace frame buffer.  This packet supports the
43751 @samp{qRelocInsn} reply (@pxref{Tracepoint Packets,,Relocate
43752 instruction reply packet}).
43754 @item QTStop
43755 @cindex @samp{QTStop} packet
43756 End the tracepoint experiment.  Stop collecting trace frames.
43758 @item QTEnable:@var{n}:@var{addr}
43759 @anchor{QTEnable}
43760 @cindex @samp{QTEnable} packet
43761 Enable tracepoint @var{n} at address @var{addr} in a started tracepoint
43762 experiment.  If the tracepoint was previously disabled, then collection
43763 of data from it will resume.
43765 @item QTDisable:@var{n}:@var{addr}
43766 @anchor{QTDisable}
43767 @cindex @samp{QTDisable} packet
43768 Disable tracepoint @var{n} at address @var{addr} in a started tracepoint
43769 experiment.  No more data will be collected from the tracepoint unless
43770 @samp{QTEnable:@var{n}:@var{addr}} is subsequently issued.
43772 @item QTinit
43773 @cindex @samp{QTinit} packet
43774 Clear the table of tracepoints, and empty the trace frame buffer.
43776 @item QTro:@var{start1},@var{end1}:@var{start2},@var{end2}:@dots{}
43777 @cindex @samp{QTro} packet
43778 Establish the given ranges of memory as ``transparent''.  The stub
43779 will answer requests for these ranges from memory's current contents,
43780 if they were not collected as part of the tracepoint hit.
43782 @value{GDBN} uses this to mark read-only regions of memory, like those
43783 containing program code.  Since these areas never change, they should
43784 still have the same contents they did when the tracepoint was hit, so
43785 there's no reason for the stub to refuse to provide their contents.
43787 @item QTDisconnected:@var{value}
43788 @cindex @samp{QTDisconnected} packet
43789 Set the choice to what to do with the tracing run when @value{GDBN}
43790 disconnects from the target.  A @var{value} of 1 directs the target to
43791 continue the tracing run, while 0 tells the target to stop tracing if
43792 @value{GDBN} is no longer in the picture.
43794 @item qTStatus
43795 @cindex @samp{qTStatus} packet
43796 Ask the stub if there is a trace experiment running right now.
43798 The reply has the form:
43800 @table @samp
43802 @item T@var{running}@r{[};@var{field}@r{]}@dots{}
43803 @var{running} is a single digit @code{1} if the trace is presently
43804 running, or @code{0} if not.  It is followed by semicolon-separated
43805 optional fields that an agent may use to report additional status.
43807 @end table
43809 If the trace is not running, the agent may report any of several
43810 explanations as one of the optional fields:
43812 @table @samp
43814 @item tnotrun:0
43815 No trace has been run yet.
43817 @item tstop[:@var{text}]:0
43818 The trace was stopped by a user-originated stop command.  The optional
43819 @var{text} field is a user-supplied string supplied as part of the
43820 stop command (for instance, an explanation of why the trace was
43821 stopped manually).  It is hex-encoded.
43823 @item tfull:0
43824 The trace stopped because the trace buffer filled up.
43826 @item tdisconnected:0
43827 The trace stopped because @value{GDBN} disconnected from the target.
43829 @item tpasscount:@var{tpnum}
43830 The trace stopped because tracepoint @var{tpnum} exceeded its pass count.
43832 @item terror:@var{text}:@var{tpnum}
43833 The trace stopped because tracepoint @var{tpnum} had an error.  The
43834 string @var{text} is available to describe the nature of the error
43835 (for instance, a divide by zero in the condition expression); it
43836 is hex encoded.
43838 @item tunknown:0
43839 The trace stopped for some other reason.
43841 @end table
43843 Additional optional fields supply statistical and other information.
43844 Although not required, they are extremely useful for users monitoring
43845 the progress of a trace run.  If a trace has stopped, and these
43846 numbers are reported, they must reflect the state of the just-stopped
43847 trace.
43849 @table @samp
43851 @item tframes:@var{n}
43852 The number of trace frames in the buffer.
43854 @item tcreated:@var{n}
43855 The total number of trace frames created during the run. This may
43856 be larger than the trace frame count, if the buffer is circular.
43858 @item tsize:@var{n}
43859 The total size of the trace buffer, in bytes.
43861 @item tfree:@var{n}
43862 The number of bytes still unused in the buffer.
43864 @item circular:@var{n}
43865 The value of the circular trace buffer flag.  @code{1} means that the
43866 trace buffer is circular and old trace frames will be discarded if
43867 necessary to make room, @code{0} means that the trace buffer is linear
43868 and may fill up.
43870 @item disconn:@var{n}
43871 The value of the disconnected tracing flag.  @code{1} means that
43872 tracing will continue after @value{GDBN} disconnects, @code{0} means
43873 that the trace run will stop.
43875 @end table
43877 @item qTP:@var{tp}:@var{addr}
43878 @cindex tracepoint status, remote request
43879 @cindex @samp{qTP} packet
43880 Ask the stub for the current state of tracepoint number @var{tp} at
43881 address @var{addr}.
43883 Replies:
43884 @table @samp
43885 @item V@var{hits}:@var{usage}
43886 The tracepoint has been hit @var{hits} times so far during the trace
43887 run, and accounts for @var{usage} in the trace buffer.  Note that
43888 @code{while-stepping} steps are not counted as separate hits, but the
43889 steps' space consumption is added into the usage number.
43891 @end table
43893 @item qTV:@var{var}
43894 @cindex trace state variable value, remote request
43895 @cindex @samp{qTV} packet
43896 Ask the stub for the value of the trace state variable number @var{var}.
43898 Replies:
43899 @table @samp
43900 @item V@var{value}
43901 The value of the variable is @var{value}.  This will be the current
43902 value of the variable if the user is examining a running target, or a
43903 saved value if the variable was collected in the trace frame that the
43904 user is looking at.  Note that multiple requests may result in
43905 different reply values, such as when requesting values while the
43906 program is running.
43908 @item U
43909 The value of the variable is unknown.  This would occur, for example,
43910 if the user is examining a trace frame in which the requested variable
43911 was not collected.
43912 @end table
43914 @item qTfP
43915 @cindex @samp{qTfP} packet
43916 @itemx qTsP
43917 @cindex @samp{qTsP} packet
43918 These packets request data about tracepoints that are being used by
43919 the target.  @value{GDBN} sends @code{qTfP} to get the first piece
43920 of data, and multiple @code{qTsP} to get additional pieces.  Replies
43921 to these packets generally take the form of the @code{QTDP} packets
43922 that define tracepoints. (FIXME add detailed syntax)
43924 @item qTfV
43925 @cindex @samp{qTfV} packet
43926 @itemx qTsV
43927 @cindex @samp{qTsV} packet
43928 These packets request data about trace state variables that are on the
43929 target.  @value{GDBN} sends @code{qTfV} to get the first vari of data,
43930 and multiple @code{qTsV} to get additional variables.  Replies to
43931 these packets follow the syntax of the @code{QTDV} packets that define
43932 trace state variables.
43934 @item qTfSTM
43935 @itemx qTsSTM
43936 @anchor{qTfSTM}
43937 @anchor{qTsSTM}
43938 @cindex @samp{qTfSTM} packet
43939 @cindex @samp{qTsSTM} packet
43940 These packets request data about static tracepoint markers that exist
43941 in the target program.  @value{GDBN} sends @code{qTfSTM} to get the
43942 first piece of data, and multiple @code{qTsSTM} to get additional
43943 pieces.  Replies to these packets take the following form:
43945 Reply:
43946 @table @samp
43947 @item m @var{address}:@var{id}:@var{extra}
43948 A single marker
43949 @item m @var{address}:@var{id}:@var{extra},@var{address}:@var{id}:@var{extra}@dots{}
43950 a comma-separated list of markers
43951 @item l
43952 (lower case letter @samp{L}) denotes end of list.
43953 @item E @var{nn}
43954 An error occurred.  The error number @var{nn} is given as hex digits.
43955 @item @w{}
43956 An empty reply indicates that the request is not supported by the
43957 stub.
43958 @end table
43960 The @var{address} is encoded in hex;
43961 @var{id} and @var{extra} are strings encoded in hex.
43963 In response to each query, the target will reply with a list of one or
43964 more markers, separated by commas.  @value{GDBN} will respond to each
43965 reply with a request for more markers (using the @samp{qs} form of the
43966 query), until the target responds with @samp{l} (lower-case ell, for
43967 @dfn{last}).
43969 @item qTSTMat:@var{address}
43970 @anchor{qTSTMat}
43971 @cindex @samp{qTSTMat} packet
43972 This packets requests data about static tracepoint markers in the
43973 target program at @var{address}.  Replies to this packet follow the
43974 syntax of the @samp{qTfSTM} and @code{qTsSTM} packets that list static
43975 tracepoint markers.
43977 @item QTSave:@var{filename}
43978 @cindex @samp{QTSave} packet
43979 This packet directs the target to save trace data to the file name
43980 @var{filename} in the target's filesystem.  The @var{filename} is encoded
43981 as a hex string; the interpretation of the file name (relative vs
43982 absolute, wild cards, etc) is up to the target.
43984 @item qTBuffer:@var{offset},@var{len}
43985 @cindex @samp{qTBuffer} packet
43986 Return up to @var{len} bytes of the current contents of trace buffer,
43987 starting at @var{offset}.  The trace buffer is treated as if it were
43988 a contiguous collection of traceframes, as per the trace file format.
43989 The reply consists as many hex-encoded bytes as the target can deliver
43990 in a packet; it is not an error to return fewer than were asked for.
43991 A reply consisting of just @code{l} indicates that no bytes are
43992 available.
43994 @item QTBuffer:circular:@var{value}
43995 This packet directs the target to use a circular trace buffer if
43996 @var{value} is 1, or a linear buffer if the value is 0.
43998 @item QTBuffer:size:@var{size}
43999 @anchor{QTBuffer-size}
44000 @cindex @samp{QTBuffer size} packet
44001 This packet directs the target to make the trace buffer be of size
44002 @var{size} if possible.  A value of @code{-1} tells the target to
44003 use whatever size it prefers.
44005 @item QTNotes:@r{[}@var{type}:@var{text}@r{]}@r{[};@var{type}:@var{text}@r{]}@dots{}
44006 @cindex @samp{QTNotes} packet
44007 This packet adds optional textual notes to the trace run.  Allowable
44008 types include @code{user}, @code{notes}, and @code{tstop}, the
44009 @var{text} fields are arbitrary strings, hex-encoded.
44011 @end table
44013 @subsection Relocate instruction reply packet
44014 When installing fast tracepoints in memory, the target may need to
44015 relocate the instruction currently at the tracepoint address to a
44016 different address in memory.  For most instructions, a simple copy is
44017 enough, but, for example, call instructions that implicitly push the
44018 return address on the stack, and relative branches or other
44019 PC-relative instructions require offset adjustment, so that the effect
44020 of executing the instruction at a different address is the same as if
44021 it had executed in the original location.
44023 In response to several of the tracepoint packets, the target may also
44024 respond with a number of intermediate @samp{qRelocInsn} request
44025 packets before the final result packet, to have @value{GDBN} handle
44026 this relocation operation.  If a packet supports this mechanism, its
44027 documentation will explicitly say so.  See for example the above
44028 descriptions for the @samp{QTStart} and @samp{QTDP} packets.  The
44029 format of the request is:
44031 @table @samp
44032 @item qRelocInsn:@var{from};@var{to}
44034 This requests @value{GDBN} to copy instruction at address @var{from}
44035 to address @var{to}, possibly adjusted so that executing the
44036 instruction at @var{to} has the same effect as executing it at
44037 @var{from}.  @value{GDBN} writes the adjusted instruction to target
44038 memory starting at @var{to}.
44039 @end table
44041 Replies:
44042 @table @samp
44043 @item qRelocInsn:@var{adjusted_size}
44044 Informs the stub the relocation is complete.  The @var{adjusted_size} is
44045 the length in bytes of resulting relocated instruction sequence.
44046 @item E @var{NN}
44047 A badly formed request was detected, or an error was encountered while
44048 relocating the instruction.
44049 @end table
44051 @node Host I/O Packets
44052 @section Host I/O Packets
44053 @cindex Host I/O, remote protocol
44054 @cindex file transfer, remote protocol
44056 The @dfn{Host I/O} packets allow @value{GDBN} to perform I/O
44057 operations on the far side of a remote link.  For example, Host I/O is
44058 used to upload and download files to a remote target with its own
44059 filesystem.  Host I/O uses the same constant values and data structure
44060 layout as the target-initiated File-I/O protocol.  However, the
44061 Host I/O packets are structured differently.  The target-initiated
44062 protocol relies on target memory to store parameters and buffers.
44063 Host I/O requests are initiated by @value{GDBN}, and the
44064 target's memory is not involved.  @xref{File-I/O Remote Protocol
44065 Extension}, for more details on the target-initiated protocol.
44067 The Host I/O request packets all encode a single operation along with
44068 its arguments.  They have this format:
44070 @table @samp
44072 @item vFile:@var{operation}: @var{parameter}@dots{}
44073 @var{operation} is the name of the particular request; the target
44074 should compare the entire packet name up to the second colon when checking
44075 for a supported operation.  The format of @var{parameter} depends on
44076 the operation.  Numbers are always passed in hexadecimal.  Negative
44077 numbers have an explicit minus sign (i.e.@: two's complement is not
44078 used).  Strings (e.g.@: filenames) are encoded as a series of
44079 hexadecimal bytes.  The last argument to a system call may be a
44080 buffer of escaped binary data (@pxref{Binary Data}).
44082 @end table
44084 The valid responses to Host I/O packets are:
44086 @table @samp
44088 @item F @var{result} [, @var{errno}] [; @var{attachment}]
44089 @var{result} is the integer value returned by this operation, usually
44090 non-negative for success and -1 for errors.  If an error has occured,
44091 @var{errno} will be included in the result specifying a
44092 value defined by the File-I/O protocol (@pxref{Errno Values}).  For
44093 operations which return data, @var{attachment} supplies the data as a
44094 binary buffer.  Binary buffers in response packets are escaped in the
44095 normal way (@pxref{Binary Data}).  See the individual packet
44096 documentation for the interpretation of @var{result} and
44097 @var{attachment}.
44099 @item @w{}
44100 An empty response indicates that this operation is not recognized.
44102 @end table
44104 These are the supported Host I/O operations:
44106 @table @samp
44107 @item vFile:open: @var{filename}, @var{flags}, @var{mode}
44108 Open a file at @var{filename} and return a file descriptor for it, or
44109 return -1 if an error occurs.  The @var{filename} is a string,
44110 @var{flags} is an integer indicating a mask of open flags
44111 (@pxref{Open Flags}), and @var{mode} is an integer indicating a mask
44112 of mode bits to use if the file is created (@pxref{mode_t Values}).
44113 @xref{open}, for details of the open flags and mode values.
44115 @item vFile:close: @var{fd}
44116 Close the open file corresponding to @var{fd} and return 0, or
44117 -1 if an error occurs.
44119 @item vFile:pread: @var{fd}, @var{count}, @var{offset}
44120 Read data from the open file corresponding to @var{fd}.  Up to
44121 @var{count} bytes will be read from the file, starting at @var{offset}
44122 relative to the start of the file.  The target may read fewer bytes;
44123 common reasons include packet size limits and an end-of-file
44124 condition.  The number of bytes read is returned.  Zero should only be
44125 returned for a successful read at the end of the file, or if
44126 @var{count} was zero.
44128 The data read should be returned as a binary attachment on success.
44129 If zero bytes were read, the response should include an empty binary
44130 attachment (i.e.@: a trailing semicolon).  The return value is the
44131 number of target bytes read; the binary attachment may be longer if
44132 some characters were escaped.
44134 @item vFile:pwrite: @var{fd}, @var{offset}, @var{data}
44135 Write @var{data} (a binary buffer) to the open file corresponding
44136 to @var{fd}.  Start the write at @var{offset} from the start of the
44137 file.  Unlike many @code{write} system calls, there is no
44138 separate @var{count} argument; the length of @var{data} in the
44139 packet is used.  @samp{vFile:pwrite} returns the number of bytes written,
44140 which may be shorter than the length of @var{data}, or -1 if an
44141 error occurred.
44143 @item vFile:fstat: @var{fd}
44144 Get information about the open file corresponding to @var{fd}.
44145 On success the information is returned as a binary attachment
44146 and the return value is the size of this attachment in bytes.
44147 If an error occurs the return value is -1.  The format of the
44148 returned binary attachment is as described in @ref{struct stat}.
44150 @item vFile:unlink: @var{filename}
44151 Delete the file at @var{filename} on the target.  Return 0,
44152 or -1 if an error occurs.  The @var{filename} is a string.
44154 @item vFile:readlink: @var{filename}
44155 Read value of symbolic link @var{filename} on the target.  Return
44156 the number of bytes read, or -1 if an error occurs.
44158 The data read should be returned as a binary attachment on success.
44159 If zero bytes were read, the response should include an empty binary
44160 attachment (i.e.@: a trailing semicolon).  The return value is the
44161 number of target bytes read; the binary attachment may be longer if
44162 some characters were escaped.
44164 @item vFile:setfs: @var{pid}
44165 Select the filesystem on which @code{vFile} operations with
44166 @var{filename} arguments will operate.  This is required for
44167 @value{GDBN} to be able to access files on remote targets where
44168 the remote stub does not share a common filesystem with the
44169 inferior(s).
44171 If @var{pid} is nonzero, select the filesystem as seen by process
44172 @var{pid}.  If @var{pid} is zero, select the filesystem as seen by
44173 the remote stub.  Return 0 on success, or -1 if an error occurs.
44174 If @code{vFile:setfs:} indicates success, the selected filesystem
44175 remains selected until the next successful @code{vFile:setfs:}
44176 operation.
44178 @end table
44180 @node Interrupts
44181 @section Interrupts
44182 @cindex interrupts (remote protocol)
44183 @anchor{interrupting remote targets}
44185 In all-stop mode, when a program on the remote target is running,
44186 @value{GDBN} may attempt to interrupt it by sending a @samp{Ctrl-C},
44187 @code{BREAK} or a @code{BREAK} followed by @code{g}, control of which
44188 is specified via @value{GDBN}'s @samp{interrupt-sequence}.
44190 The precise meaning of @code{BREAK} is defined by the transport
44191 mechanism and may, in fact, be undefined.  @value{GDBN} does not
44192 currently define a @code{BREAK} mechanism for any of the network
44193 interfaces except for TCP, in which case @value{GDBN} sends the
44194 @code{telnet} BREAK sequence.
44196 @samp{Ctrl-C}, on the other hand, is defined and implemented for all
44197 transport mechanisms.  It is represented by sending the single byte
44198 @code{0x03} without any of the usual packet overhead described in
44199 the Overview section (@pxref{Overview}).  When a @code{0x03} byte is
44200 transmitted as part of a packet, it is considered to be packet data
44201 and does @emph{not} represent an interrupt.  E.g., an @samp{X} packet
44202 (@pxref{X packet}), used for binary downloads, may include an unescaped
44203 @code{0x03} as part of its packet.
44205 @code{BREAK} followed by @code{g} is also known as Magic SysRq g.
44206 When Linux kernel receives this sequence from serial port,
44207 it stops execution and connects to gdb.
44209 In non-stop mode, because packet resumptions are asynchronous
44210 (@pxref{vCont packet}), @value{GDBN} is always free to send a remote
44211 command to the remote stub, even when the target is running.  For that
44212 reason, @value{GDBN} instead sends a regular packet (@pxref{vCtrlC
44213 packet}) with the usual packet framing instead of the single byte
44214 @code{0x03}.
44216 Stubs are not required to recognize these interrupt mechanisms and the
44217 precise meaning associated with receipt of the interrupt is
44218 implementation defined.  If the target supports debugging of multiple
44219 threads and/or processes, it should attempt to interrupt all 
44220 currently-executing threads and processes.
44221 If the stub is successful at interrupting the
44222 running program, it should send one of the stop
44223 reply packets (@pxref{Stop Reply Packets}) to @value{GDBN} as a result
44224 of successfully stopping the program in all-stop mode, and a stop reply
44225 for each stopped thread in non-stop mode.
44226 Interrupts received while the
44227 program is stopped are queued and the program will be interrupted when
44228 it is resumed next time.
44230 @node Notification Packets
44231 @section Notification Packets
44232 @cindex notification packets
44233 @cindex packets, notification
44235 The @value{GDBN} remote serial protocol includes @dfn{notifications},
44236 packets that require no acknowledgment.  Both the GDB and the stub
44237 may send notifications (although the only notifications defined at
44238 present are sent by the stub).  Notifications carry information
44239 without incurring the round-trip latency of an acknowledgment, and so
44240 are useful for low-impact communications where occasional packet loss
44241 is not a problem.
44243 A notification packet has the form @samp{% @var{data} #
44244 @var{checksum}}, where @var{data} is the content of the notification,
44245 and @var{checksum} is a checksum of @var{data}, computed and formatted
44246 as for ordinary @value{GDBN} packets.  A notification's @var{data}
44247 never contains @samp{$}, @samp{%} or @samp{#} characters.  Upon
44248 receiving a notification, the recipient sends no @samp{+} or @samp{-}
44249 to acknowledge the notification's receipt or to report its corruption.
44251 Every notification's @var{data} begins with a name, which contains no
44252 colon characters, followed by a colon character.
44254 Recipients should silently ignore corrupted notifications and
44255 notifications they do not understand.  Recipients should restart
44256 timeout periods on receipt of a well-formed notification, whether or
44257 not they understand it.
44259 Senders should only send the notifications described here when this
44260 protocol description specifies that they are permitted.  In the
44261 future, we may extend the protocol to permit existing notifications in
44262 new contexts; this rule helps older senders avoid confusing newer
44263 recipients.
44265 (Older versions of @value{GDBN} ignore bytes received until they see
44266 the @samp{$} byte that begins an ordinary packet, so new stubs may
44267 transmit notifications without fear of confusing older clients.  There
44268 are no notifications defined for @value{GDBN} to send at the moment, but we
44269 assume that most older stubs would ignore them, as well.)
44271 Each notification is comprised of three parts:
44272 @table @samp
44273 @item @var{name}:@var{event}
44274 The notification packet is sent by the side that initiates the
44275 exchange (currently, only the stub does that), with @var{event}
44276 carrying the specific information about the notification, and
44277 @var{name} specifying the name of the notification.
44278 @item @var{ack}
44279 The acknowledge sent by the other side, usually @value{GDBN}, to
44280 acknowledge the exchange and request the event.
44281 @end table
44283 The purpose of an asynchronous notification mechanism is to report to
44284 @value{GDBN} that something interesting happened in the remote stub.
44286 The remote stub may send notification @var{name}:@var{event}
44287 at any time, but @value{GDBN} acknowledges the notification when
44288 appropriate.  The notification event is pending before @value{GDBN}
44289 acknowledges.  Only one notification at a time may be pending; if
44290 additional events occur before @value{GDBN} has acknowledged the
44291 previous notification, they must be queued by the stub for later
44292 synchronous transmission in response to @var{ack} packets from
44293 @value{GDBN}.  Because the notification mechanism is unreliable,
44294 the stub is permitted to resend a notification if it believes
44295 @value{GDBN} may not have received it.
44297 Specifically, notifications may appear when @value{GDBN} is not
44298 otherwise reading input from the stub, or when @value{GDBN} is
44299 expecting to read a normal synchronous response or a
44300 @samp{+}/@samp{-} acknowledgment to a packet it has sent.
44301 Notification packets are distinct from any other communication from
44302 the stub so there is no ambiguity.
44304 After receiving a notification, @value{GDBN} shall acknowledge it by
44305 sending a @var{ack} packet as a regular, synchronous request to the
44306 stub.  Such acknowledgment is not required to happen immediately, as
44307 @value{GDBN} is permitted to send other, unrelated packets to the
44308 stub first, which the stub should process normally.
44310 Upon receiving a @var{ack} packet, if the stub has other queued
44311 events to report to @value{GDBN}, it shall respond by sending a
44312 normal @var{event}.  @value{GDBN} shall then send another @var{ack}
44313 packet to solicit further responses; again, it is permitted to send
44314 other, unrelated packets as well which the stub should process
44315 normally.
44317 If the stub receives a @var{ack} packet and there are no additional
44318 @var{event} to report, the stub shall return an @samp{OK} response.
44319 At this point, @value{GDBN} has finished processing a notification
44320 and the stub has completed sending any queued events.  @value{GDBN}
44321 won't accept any new notifications until the final @samp{OK} is
44322 received .  If further notification events occur, the stub shall send
44323 a new notification, @value{GDBN} shall accept the notification, and
44324 the process shall be repeated.
44326 The process of asynchronous notification can be illustrated by the
44327 following example:
44328 @smallexample
44329 <- @code{%Stop:T0505:98e7ffbf;04:4ce6ffbf;08:b1b6e54c;thread:p7526.7526;core:0;}
44330 @code{...}
44331 -> @code{vStopped}
44332 <- @code{T0505:68f37db7;04:40f37db7;08:63850408;thread:p7526.7528;core:0;}
44333 -> @code{vStopped}
44334 <- @code{T0505:68e3fdb6;04:40e3fdb6;08:63850408;thread:p7526.7529;core:0;}
44335 -> @code{vStopped}
44336 <- @code{OK}
44337 @end smallexample
44339 The following notifications are defined:
44340 @multitable @columnfractions 0.12 0.12 0.38 0.38
44342 @item Notification
44343 @tab Ack
44344 @tab Event
44345 @tab Description
44347 @item Stop
44348 @tab vStopped
44349 @tab @var{reply}.  The @var{reply} has the form of a stop reply, as
44350 described in @ref{Stop Reply Packets}.  Refer to @ref{Remote Non-Stop},
44351 for information on how these notifications are acknowledged by 
44352 @value{GDBN}.
44353 @tab Report an asynchronous stop event in non-stop mode.
44355 @end multitable
44357 @node Remote Non-Stop
44358 @section Remote Protocol Support for Non-Stop Mode
44360 @value{GDBN}'s remote protocol supports non-stop debugging of
44361 multi-threaded programs, as described in @ref{Non-Stop Mode}.  If the stub
44362 supports non-stop mode, it should report that to @value{GDBN} by including
44363 @samp{QNonStop+} in its @samp{qSupported} response (@pxref{qSupported}).
44365 @value{GDBN} typically sends a @samp{QNonStop} packet only when
44366 establishing a new connection with the stub.  Entering non-stop mode
44367 does not alter the state of any currently-running threads, but targets
44368 must stop all threads in any already-attached processes when entering
44369 all-stop mode.  @value{GDBN} uses the @samp{?} packet as necessary to
44370 probe the target state after a mode change.
44372 In non-stop mode, when an attached process encounters an event that
44373 would otherwise be reported with a stop reply, it uses the
44374 asynchronous notification mechanism (@pxref{Notification Packets}) to
44375 inform @value{GDBN}.  In contrast to all-stop mode, where all threads
44376 in all processes are stopped when a stop reply is sent, in non-stop
44377 mode only the thread reporting the stop event is stopped.  That is,
44378 when reporting a @samp{S} or @samp{T} response to indicate completion
44379 of a step operation, hitting a breakpoint, or a fault, only the
44380 affected thread is stopped; any other still-running threads continue
44381 to run.  When reporting a @samp{W} or @samp{X} response, all running
44382 threads belonging to other attached processes continue to run.
44384 In non-stop mode, the target shall respond to the @samp{?} packet as
44385 follows.  First, any incomplete stop reply notification/@samp{vStopped} 
44386 sequence in progress is abandoned.  The target must begin a new
44387 sequence reporting stop events for all stopped threads, whether or not
44388 it has previously reported those events to @value{GDBN}.  The first
44389 stop reply is sent as a synchronous reply to the @samp{?} packet, and
44390 subsequent stop replies are sent as responses to @samp{vStopped} packets
44391 using the mechanism described above.  The target must not send
44392 asynchronous stop reply notifications until the sequence is complete.
44393 If all threads are running when the target receives the @samp{?} packet,
44394 or if the target is not attached to any process, it shall respond
44395 @samp{OK}.
44397 If the stub supports non-stop mode, it should also support the
44398 @samp{swbreak} stop reason if software breakpoints are supported, and
44399 the @samp{hwbreak} stop reason if hardware breakpoints are supported
44400 (@pxref{swbreak stop reason}).  This is because given the asynchronous
44401 nature of non-stop mode, between the time a thread hits a breakpoint
44402 and the time the event is finally processed by @value{GDBN}, the
44403 breakpoint may have already been removed from the target.  Due to
44404 this, @value{GDBN} needs to be able to tell whether a trap stop was
44405 caused by a delayed breakpoint event, which should be ignored, as
44406 opposed to a random trap signal, which should be reported to the user.
44407 Note the @samp{swbreak} feature implies that the target is responsible
44408 for adjusting the PC when a software breakpoint triggers, if
44409 necessary, such as on the x86 architecture.
44411 @node Packet Acknowledgment
44412 @section Packet Acknowledgment
44414 @cindex acknowledgment, for @value{GDBN} remote
44415 @cindex packet acknowledgment, for @value{GDBN} remote
44416 By default, when either the host or the target machine receives a packet,
44417 the first response expected is an acknowledgment: either @samp{+} (to indicate
44418 the package was received correctly) or @samp{-} (to request retransmission).
44419 This mechanism allows the @value{GDBN} remote protocol to operate over
44420 unreliable transport mechanisms, such as a serial line.
44422 In cases where the transport mechanism is itself reliable (such as a pipe or
44423 TCP connection), the @samp{+}/@samp{-} acknowledgments are redundant.
44424 It may be desirable to disable them in that case to reduce communication
44425 overhead, or for other reasons.  This can be accomplished by means of the
44426 @samp{QStartNoAckMode} packet; @pxref{QStartNoAckMode}.
44428 When in no-acknowledgment mode, neither the stub nor @value{GDBN} shall send or
44429 expect @samp{+}/@samp{-} protocol acknowledgments.  The packet
44430 and response format still includes the normal checksum, as described in
44431 @ref{Overview}, but the checksum may be ignored by the receiver.
44433 If the stub supports @samp{QStartNoAckMode} and prefers to operate in
44434 no-acknowledgment mode, it should report that to @value{GDBN}
44435 by including @samp{QStartNoAckMode+} in its response to @samp{qSupported};
44436 @pxref{qSupported}.
44437 If @value{GDBN} also supports @samp{QStartNoAckMode} and it has not been
44438 disabled via the @code{set remote noack-packet off} command
44439 (@pxref{Remote Configuration}),
44440 @value{GDBN} may then send a @samp{QStartNoAckMode} packet to the stub.
44441 Only then may the stub actually turn off packet acknowledgments.
44442 @value{GDBN} sends a final @samp{+} acknowledgment of the stub's @samp{OK}
44443 response, which can be safely ignored by the stub.
44445 Note that @code{set remote noack-packet} command only affects negotiation
44446 between @value{GDBN} and the stub when subsequent connections are made;
44447 it does not affect the protocol acknowledgment state for any current
44448 connection.
44449 Since @samp{+}/@samp{-} acknowledgments are enabled by default when a
44450 new connection is established,
44451 there is also no protocol request to re-enable the acknowledgments
44452 for the current connection, once disabled.
44454 @node Examples
44455 @section Examples
44457 Example sequence of a target being re-started.  Notice how the restart
44458 does not get any direct output:
44460 @smallexample
44461 -> @code{R00}
44462 <- @code{+}
44463 @emph{target restarts}
44464 -> @code{?}
44465 <- @code{+}
44466 <- @code{T001:1234123412341234}
44467 -> @code{+}
44468 @end smallexample
44470 Example sequence of a target being stepped by a single instruction:
44472 @smallexample
44473 -> @code{G1445@dots{}}
44474 <- @code{+}
44475 -> @code{s}
44476 <- @code{+}
44477 @emph{time passes}
44478 <- @code{T001:1234123412341234}
44479 -> @code{+}
44480 -> @code{g}
44481 <- @code{+}
44482 <- @code{1455@dots{}}
44483 -> @code{+}
44484 @end smallexample
44486 @node File-I/O Remote Protocol Extension
44487 @section File-I/O Remote Protocol Extension
44488 @cindex File-I/O remote protocol extension
44490 @menu
44491 * File-I/O Overview::
44492 * Protocol Basics::
44493 * The F Request Packet::
44494 * The F Reply Packet::
44495 * The Ctrl-C Message::
44496 * Console I/O::
44497 * List of Supported Calls::
44498 * Protocol-specific Representation of Datatypes::
44499 * Constants::
44500 * File-I/O Examples::
44501 @end menu
44503 @node File-I/O Overview
44504 @subsection File-I/O Overview
44505 @cindex file-i/o overview
44507 The @dfn{File I/O remote protocol extension} (short: File-I/O) allows the
44508 target to use the host's file system and console I/O to perform various
44509 system calls.  System calls on the target system are translated into a
44510 remote protocol packet to the host system, which then performs the needed
44511 actions and returns a response packet to the target system.
44512 This simulates file system operations even on targets that lack file systems.
44514 The protocol is defined to be independent of both the host and target systems.
44515 It uses its own internal representation of datatypes and values.  Both
44516 @value{GDBN} and the target's @value{GDBN} stub are responsible for
44517 translating the system-dependent value representations into the internal
44518 protocol representations when data is transmitted.
44520 The communication is synchronous.  A system call is possible only when 
44521 @value{GDBN} is waiting for a response from the @samp{C}, @samp{c}, @samp{S} 
44522 or @samp{s} packets.  While @value{GDBN} handles the request for a system call,
44523 the target is stopped to allow deterministic access to the target's
44524 memory.  Therefore File-I/O is not interruptible by target signals.  On
44525 the other hand, it is possible to interrupt File-I/O by a user interrupt 
44526 (@samp{Ctrl-C}) within @value{GDBN}.
44528 The target's request to perform a host system call does not finish
44529 the latest @samp{C}, @samp{c}, @samp{S} or @samp{s} action.  That means,
44530 after finishing the system call, the target returns to continuing the
44531 previous activity (continue, step).  No additional continue or step
44532 request from @value{GDBN} is required.
44534 @smallexample
44535 (@value{GDBP}) continue
44536   <- target requests 'system call X'
44537   target is stopped, @value{GDBN} executes system call
44538   -> @value{GDBN} returns result
44539   ... target continues, @value{GDBN} returns to wait for the target
44540   <- target hits breakpoint and sends a Txx packet
44541 @end smallexample
44543 The protocol only supports I/O on the console and to regular files on 
44544 the host file system.  Character or block special devices, pipes,
44545 named pipes, sockets or any other communication method on the host
44546 system are not supported by this protocol.
44548 File I/O is not supported in non-stop mode.
44550 @node Protocol Basics
44551 @subsection Protocol Basics
44552 @cindex protocol basics, file-i/o
44554 The File-I/O protocol uses the @code{F} packet as the request as well
44555 as reply packet.  Since a File-I/O system call can only occur when
44556 @value{GDBN} is waiting for a response from the continuing or stepping target, 
44557 the File-I/O request is a reply that @value{GDBN} has to expect as a result
44558 of a previous @samp{C}, @samp{c}, @samp{S} or @samp{s} packet.
44559 This @code{F} packet contains all information needed to allow @value{GDBN}
44560 to call the appropriate host system call:
44562 @itemize @bullet
44563 @item
44564 A unique identifier for the requested system call.
44566 @item
44567 All parameters to the system call.  Pointers are given as addresses
44568 in the target memory address space.  Pointers to strings are given as
44569 pointer/length pair.  Numerical values are given as they are.
44570 Numerical control flags are given in a protocol-specific representation.
44572 @end itemize
44574 At this point, @value{GDBN} has to perform the following actions.
44576 @itemize @bullet
44577 @item
44578 If the parameters include pointer values to data needed as input to a 
44579 system call, @value{GDBN} requests this data from the target with a
44580 standard @code{m} packet request.  This additional communication has to be
44581 expected by the target implementation and is handled as any other @code{m}
44582 packet.
44584 @item
44585 @value{GDBN} translates all value from protocol representation to host
44586 representation as needed.  Datatypes are coerced into the host types.
44588 @item
44589 @value{GDBN} calls the system call.
44591 @item
44592 It then coerces datatypes back to protocol representation.
44594 @item
44595 If the system call is expected to return data in buffer space specified
44596 by pointer parameters to the call, the data is transmitted to the
44597 target using a @code{M} or @code{X} packet.  This packet has to be expected
44598 by the target implementation and is handled as any other @code{M} or @code{X}
44599 packet.
44601 @end itemize
44603 Eventually @value{GDBN} replies with another @code{F} packet which contains all
44604 necessary information for the target to continue.  This at least contains
44606 @itemize @bullet
44607 @item
44608 Return value.
44610 @item
44611 @code{errno}, if has been changed by the system call.
44613 @item
44614 ``Ctrl-C'' flag.
44616 @end itemize
44618 After having done the needed type and value coercion, the target continues
44619 the latest continue or step action.
44621 @node The F Request Packet
44622 @subsection The @code{F} Request Packet
44623 @cindex file-i/o request packet
44624 @cindex @code{F} request packet
44626 The @code{F} request packet has the following format:
44628 @table @samp
44629 @item F@var{call-id},@var{parameter@dots{}}
44631 @var{call-id} is the identifier to indicate the host system call to be called.
44632 This is just the name of the function.
44634 @var{parameter@dots{}} are the parameters to the system call.  
44635 Parameters are hexadecimal integer values, either the actual values in case
44636 of scalar datatypes, pointers to target buffer space in case of compound
44637 datatypes and unspecified memory areas, or pointer/length pairs in case
44638 of string parameters.  These are appended to the @var{call-id} as a 
44639 comma-delimited list.  All values are transmitted in ASCII
44640 string representation, pointer/length pairs separated by a slash.
44642 @end table
44646 @node The F Reply Packet
44647 @subsection The @code{F} Reply Packet
44648 @cindex file-i/o reply packet
44649 @cindex @code{F} reply packet
44651 The @code{F} reply packet has the following format:
44653 @table @samp
44655 @item F@var{retcode},@var{errno},@var{Ctrl-C flag};@var{call-specific attachment}
44657 @var{retcode} is the return code of the system call as hexadecimal value.
44659 @var{errno} is the @code{errno} set by the call, in protocol-specific
44660 representation.
44661 This parameter can be omitted if the call was successful.
44663 @var{Ctrl-C flag} is only sent if the user requested a break.  In this
44664 case, @var{errno} must be sent as well, even if the call was successful.
44665 The @var{Ctrl-C flag} itself consists of the character @samp{C}:
44667 @smallexample
44668 F0,0,C
44669 @end smallexample
44671 @noindent
44672 or, if the call was interrupted before the host call has been performed:
44674 @smallexample
44675 F-1,4,C
44676 @end smallexample
44678 @noindent
44679 assuming 4 is the protocol-specific representation of @code{EINTR}.
44681 @end table
44684 @node The Ctrl-C Message
44685 @subsection The @samp{Ctrl-C} Message
44686 @cindex ctrl-c message, in file-i/o protocol
44688 If the @samp{Ctrl-C} flag is set in the @value{GDBN}
44689 reply packet (@pxref{The F Reply Packet}),
44690 the target should behave as if it had
44691 gotten a break message.  The meaning for the target is ``system call
44692 interrupted by @code{SIGINT}''.  Consequentially, the target should actually stop
44693 (as with a break message) and return to @value{GDBN} with a @code{T02}
44694 packet.
44696 It's important for the target to know in which
44697 state the system call was interrupted.  There are two possible cases:
44699 @itemize @bullet
44700 @item
44701 The system call hasn't been performed on the host yet.
44703 @item
44704 The system call on the host has been finished.
44706 @end itemize
44708 These two states can be distinguished by the target by the value of the
44709 returned @code{errno}.  If it's the protocol representation of @code{EINTR}, the system
44710 call hasn't been performed.  This is equivalent to the @code{EINTR} handling
44711 on POSIX systems.  In any other case, the target may presume that the
44712 system call has been finished --- successfully or not --- and should behave
44713 as if the break message arrived right after the system call.
44715 @value{GDBN} must behave reliably.  If the system call has not been called
44716 yet, @value{GDBN} may send the @code{F} reply immediately, setting @code{EINTR} as
44717 @code{errno} in the packet.  If the system call on the host has been finished
44718 before the user requests a break, the full action must be finished by
44719 @value{GDBN}.  This requires sending @code{M} or @code{X} packets as necessary.
44720 The @code{F} packet may only be sent when either nothing has happened
44721 or the full action has been completed.
44723 @node Console I/O
44724 @subsection Console I/O
44725 @cindex console i/o as part of file-i/o
44727 By default and if not explicitly closed by the target system, the file
44728 descriptors 0, 1 and 2 are connected to the @value{GDBN} console.  Output
44729 on the @value{GDBN} console is handled as any other file output operation
44730 (@code{write(1, @dots{})} or @code{write(2, @dots{})}).  Console input is handled
44731 by @value{GDBN} so that after the target read request from file descriptor
44732 0 all following typing is buffered until either one of the following
44733 conditions is met:
44735 @itemize @bullet
44736 @item
44737 The user types @kbd{Ctrl-c}.  The behaviour is as explained above, and the
44738 @code{read}
44739 system call is treated as finished.
44741 @item
44742 The user presses @key{RET}.  This is treated as end of input with a trailing
44743 newline.
44745 @item
44746 The user types @kbd{Ctrl-d}.  This is treated as end of input.  No trailing
44747 character (neither newline nor @samp{Ctrl-D}) is appended to the input.
44749 @end itemize
44751 If the user has typed more characters than fit in the buffer given to
44752 the @code{read} call, the trailing characters are buffered in @value{GDBN} until
44753 either another @code{read(0, @dots{})} is requested by the target, or debugging
44754 is stopped at the user's request.
44757 @node List of Supported Calls
44758 @subsection List of Supported Calls
44759 @cindex list of supported file-i/o calls
44761 @menu
44762 * open::
44763 * close::
44764 * read::
44765 * write::
44766 * lseek::
44767 * rename::
44768 * unlink::
44769 * stat/fstat::
44770 * gettimeofday::
44771 * isatty::
44772 * system::
44773 @end menu
44775 @node open
44776 @unnumberedsubsubsec open
44777 @cindex open, file-i/o system call
44779 @table @asis
44780 @item Synopsis:
44781 @smallexample
44782 int open(const char *pathname, int flags);
44783 int open(const char *pathname, int flags, mode_t mode);
44784 @end smallexample
44786 @item Request:
44787 @samp{Fopen,@var{pathptr}/@var{len},@var{flags},@var{mode}}
44789 @noindent
44790 @var{flags} is the bitwise @code{OR} of the following values:
44792 @table @code
44793 @item O_CREAT
44794 If the file does not exist it will be created.  The host
44795 rules apply as far as file ownership and time stamps
44796 are concerned.
44798 @item O_EXCL
44799 When used with @code{O_CREAT}, if the file already exists it is
44800 an error and open() fails.
44802 @item O_TRUNC
44803 If the file already exists and the open mode allows
44804 writing (@code{O_RDWR} or @code{O_WRONLY} is given) it will be
44805 truncated to zero length.
44807 @item O_APPEND
44808 The file is opened in append mode.
44810 @item O_RDONLY
44811 The file is opened for reading only.
44813 @item O_WRONLY
44814 The file is opened for writing only.
44816 @item O_RDWR
44817 The file is opened for reading and writing.
44818 @end table
44820 @noindent
44821 Other bits are silently ignored.
44824 @noindent
44825 @var{mode} is the bitwise @code{OR} of the following values:
44827 @table @code
44828 @item S_IRUSR
44829 User has read permission.
44831 @item S_IWUSR
44832 User has write permission.
44834 @item S_IRGRP
44835 Group has read permission.
44837 @item S_IWGRP
44838 Group has write permission.
44840 @item S_IROTH
44841 Others have read permission.
44843 @item S_IWOTH
44844 Others have write permission.
44845 @end table
44847 @noindent
44848 Other bits are silently ignored.
44851 @item Return value:
44852 @code{open} returns the new file descriptor or -1 if an error
44853 occurred.
44855 @item Errors:
44857 @table @code
44858 @item EEXIST
44859 @var{pathname} already exists and @code{O_CREAT} and @code{O_EXCL} were used.
44861 @item EISDIR
44862 @var{pathname} refers to a directory.
44864 @item EACCES
44865 The requested access is not allowed.
44867 @item ENAMETOOLONG
44868 @var{pathname} was too long.
44870 @item ENOENT
44871 A directory component in @var{pathname} does not exist.
44873 @item ENODEV
44874 @var{pathname} refers to a device, pipe, named pipe or socket.
44876 @item EROFS
44877 @var{pathname} refers to a file on a read-only filesystem and
44878 write access was requested.
44880 @item EFAULT
44881 @var{pathname} is an invalid pointer value.
44883 @item ENOSPC
44884 No space on device to create the file.
44886 @item EMFILE
44887 The process already has the maximum number of files open.
44889 @item ENFILE
44890 The limit on the total number of files open on the system
44891 has been reached.
44893 @item EINTR
44894 The call was interrupted by the user.
44895 @end table
44897 @end table
44899 @node close
44900 @unnumberedsubsubsec close
44901 @cindex close, file-i/o system call
44903 @table @asis
44904 @item Synopsis:
44905 @smallexample
44906 int close(int fd);
44907 @end smallexample
44909 @item Request:
44910 @samp{Fclose,@var{fd}}
44912 @item Return value:
44913 @code{close} returns zero on success, or -1 if an error occurred.
44915 @item Errors:
44917 @table @code
44918 @item EBADF
44919 @var{fd} isn't a valid open file descriptor.
44921 @item EINTR
44922 The call was interrupted by the user.
44923 @end table
44925 @end table
44927 @node read
44928 @unnumberedsubsubsec read
44929 @cindex read, file-i/o system call
44931 @table @asis
44932 @item Synopsis:
44933 @smallexample
44934 int read(int fd, void *buf, unsigned int count);
44935 @end smallexample
44937 @item Request:
44938 @samp{Fread,@var{fd},@var{bufptr},@var{count}}
44940 @item Return value:
44941 On success, the number of bytes read is returned.
44942 Zero indicates end of file.  If count is zero, read
44943 returns zero as well.  On error, -1 is returned.
44945 @item Errors:
44947 @table @code
44948 @item EBADF
44949 @var{fd} is not a valid file descriptor or is not open for
44950 reading.
44952 @item EFAULT
44953 @var{bufptr} is an invalid pointer value.
44955 @item EINTR
44956 The call was interrupted by the user.
44957 @end table
44959 @end table
44961 @node write
44962 @unnumberedsubsubsec write
44963 @cindex write, file-i/o system call
44965 @table @asis
44966 @item Synopsis:
44967 @smallexample
44968 int write(int fd, const void *buf, unsigned int count);
44969 @end smallexample
44971 @item Request:
44972 @samp{Fwrite,@var{fd},@var{bufptr},@var{count}}
44974 @item Return value:
44975 On success, the number of bytes written are returned.
44976 Zero indicates nothing was written.  On error, -1
44977 is returned.
44979 @item Errors:
44981 @table @code
44982 @item EBADF
44983 @var{fd} is not a valid file descriptor or is not open for
44984 writing.
44986 @item EFAULT
44987 @var{bufptr} is an invalid pointer value.
44989 @item EFBIG
44990 An attempt was made to write a file that exceeds the
44991 host-specific maximum file size allowed.
44993 @item ENOSPC
44994 No space on device to write the data.
44996 @item EINTR
44997 The call was interrupted by the user.
44998 @end table
45000 @end table
45002 @node lseek
45003 @unnumberedsubsubsec lseek
45004 @cindex lseek, file-i/o system call
45006 @table @asis
45007 @item Synopsis:
45008 @smallexample
45009 long lseek (int fd, long offset, int flag);
45010 @end smallexample
45012 @item Request:
45013 @samp{Flseek,@var{fd},@var{offset},@var{flag}}
45015 @var{flag} is one of:
45017 @table @code
45018 @item SEEK_SET
45019 The offset is set to @var{offset} bytes.
45021 @item SEEK_CUR
45022 The offset is set to its current location plus @var{offset}
45023 bytes.
45025 @item SEEK_END
45026 The offset is set to the size of the file plus @var{offset}
45027 bytes.
45028 @end table
45030 @item Return value:
45031 On success, the resulting unsigned offset in bytes from
45032 the beginning of the file is returned.  Otherwise, a
45033 value of -1 is returned.
45035 @item Errors:
45037 @table @code
45038 @item EBADF
45039 @var{fd} is not a valid open file descriptor.
45041 @item ESPIPE
45042 @var{fd} is associated with the @value{GDBN} console.
45044 @item EINVAL
45045 @var{flag} is not a proper value.
45047 @item EINTR
45048 The call was interrupted by the user.
45049 @end table
45051 @end table
45053 @node rename
45054 @unnumberedsubsubsec rename
45055 @cindex rename, file-i/o system call
45057 @table @asis
45058 @item Synopsis:
45059 @smallexample
45060 int rename(const char *oldpath, const char *newpath);
45061 @end smallexample
45063 @item Request:
45064 @samp{Frename,@var{oldpathptr}/@var{len},@var{newpathptr}/@var{len}}
45066 @item Return value:
45067 On success, zero is returned.  On error, -1 is returned.
45069 @item Errors:
45071 @table @code
45072 @item EISDIR
45073 @var{newpath} is an existing directory, but @var{oldpath} is not a
45074 directory.
45076 @item EEXIST
45077 @var{newpath} is a non-empty directory.
45079 @item EBUSY
45080 @var{oldpath} or @var{newpath} is a directory that is in use by some
45081 process.
45083 @item EINVAL
45084 An attempt was made to make a directory a subdirectory
45085 of itself.
45087 @item ENOTDIR
45088 A  component used as a directory in @var{oldpath} or new
45089 path is not a directory.  Or @var{oldpath} is a directory
45090 and @var{newpath} exists but is not a directory.
45092 @item EFAULT
45093 @var{oldpathptr} or @var{newpathptr} are invalid pointer values.
45095 @item EACCES
45096 No access to the file or the path of the file.
45098 @item ENAMETOOLONG
45100 @var{oldpath} or @var{newpath} was too long.
45102 @item ENOENT
45103 A directory component in @var{oldpath} or @var{newpath} does not exist.
45105 @item EROFS
45106 The file is on a read-only filesystem.
45108 @item ENOSPC
45109 The device containing the file has no room for the new
45110 directory entry.
45112 @item EINTR
45113 The call was interrupted by the user.
45114 @end table
45116 @end table
45118 @node unlink
45119 @unnumberedsubsubsec unlink
45120 @cindex unlink, file-i/o system call
45122 @table @asis
45123 @item Synopsis:
45124 @smallexample
45125 int unlink(const char *pathname);
45126 @end smallexample
45128 @item Request:
45129 @samp{Funlink,@var{pathnameptr}/@var{len}}
45131 @item Return value:
45132 On success, zero is returned.  On error, -1 is returned.
45134 @item Errors:
45136 @table @code
45137 @item EACCES
45138 No access to the file or the path of the file.
45140 @item EPERM
45141 The system does not allow unlinking of directories.
45143 @item EBUSY
45144 The file @var{pathname} cannot be unlinked because it's
45145 being used by another process.
45147 @item EFAULT
45148 @var{pathnameptr} is an invalid pointer value.
45150 @item ENAMETOOLONG
45151 @var{pathname} was too long.
45153 @item ENOENT
45154 A directory component in @var{pathname} does not exist.
45156 @item ENOTDIR
45157 A component of the path is not a directory.
45159 @item EROFS
45160 The file is on a read-only filesystem.
45162 @item EINTR
45163 The call was interrupted by the user.
45164 @end table
45166 @end table
45168 @node stat/fstat
45169 @unnumberedsubsubsec stat/fstat
45170 @cindex fstat, file-i/o system call
45171 @cindex stat, file-i/o system call
45173 @table @asis
45174 @item Synopsis:
45175 @smallexample
45176 int stat(const char *pathname, struct stat *buf);
45177 int fstat(int fd, struct stat *buf);
45178 @end smallexample
45180 @item Request:
45181 @samp{Fstat,@var{pathnameptr}/@var{len},@var{bufptr}}@*
45182 @samp{Ffstat,@var{fd},@var{bufptr}}
45184 @item Return value:
45185 On success, zero is returned.  On error, -1 is returned.
45187 @item Errors:
45189 @table @code
45190 @item EBADF
45191 @var{fd} is not a valid open file.
45193 @item ENOENT
45194 A directory component in @var{pathname} does not exist or the
45195 path is an empty string.
45197 @item ENOTDIR
45198 A component of the path is not a directory.
45200 @item EFAULT
45201 @var{pathnameptr} is an invalid pointer value.
45203 @item EACCES
45204 No access to the file or the path of the file.
45206 @item ENAMETOOLONG
45207 @var{pathname} was too long.
45209 @item EINTR
45210 The call was interrupted by the user.
45211 @end table
45213 @end table
45215 @node gettimeofday
45216 @unnumberedsubsubsec gettimeofday
45217 @cindex gettimeofday, file-i/o system call
45219 @table @asis
45220 @item Synopsis:
45221 @smallexample
45222 int gettimeofday(struct timeval *tv, void *tz);
45223 @end smallexample
45225 @item Request:
45226 @samp{Fgettimeofday,@var{tvptr},@var{tzptr}}
45228 @item Return value:
45229 On success, 0 is returned, -1 otherwise.
45231 @item Errors:
45233 @table @code
45234 @item EINVAL
45235 @var{tz} is a non-NULL pointer.
45237 @item EFAULT
45238 @var{tvptr} and/or @var{tzptr} is an invalid pointer value.
45239 @end table
45241 @end table
45243 @node isatty
45244 @unnumberedsubsubsec isatty
45245 @cindex isatty, file-i/o system call
45247 @table @asis
45248 @item Synopsis:
45249 @smallexample
45250 int isatty(int fd);
45251 @end smallexample
45253 @item Request:
45254 @samp{Fisatty,@var{fd}}
45256 @item Return value:
45257 Returns 1 if @var{fd} refers to the @value{GDBN} console, 0 otherwise.
45259 @item Errors:
45261 @table @code
45262 @item EINTR
45263 The call was interrupted by the user.
45264 @end table
45266 @end table
45268 Note that the @code{isatty} call is treated as a special case: it returns
45269 1 to the target if the file descriptor is attached
45270 to the @value{GDBN} console, 0 otherwise.  Implementing through system calls
45271 would require implementing @code{ioctl} and would be more complex than
45272 needed.
45275 @node system
45276 @unnumberedsubsubsec system
45277 @cindex system, file-i/o system call
45279 @table @asis
45280 @item Synopsis:
45281 @smallexample
45282 int system(const char *command);
45283 @end smallexample
45285 @item Request:
45286 @samp{Fsystem,@var{commandptr}/@var{len}}
45288 @item Return value:
45289 If @var{len} is zero, the return value indicates whether a shell is
45290 available.  A zero return value indicates a shell is not available.
45291 For non-zero @var{len}, the value returned is -1 on error and the
45292 return status of the command otherwise.  Only the exit status of the
45293 command is returned, which is extracted from the host's @code{system}
45294 return value by calling @code{WEXITSTATUS(retval)}.  In case
45295 @file{/bin/sh} could not be executed, 127 is returned.
45297 @item Errors:
45299 @table @code
45300 @item EINTR
45301 The call was interrupted by the user.
45302 @end table
45304 @end table
45306 @value{GDBN} takes over the full task of calling the necessary host calls 
45307 to perform the @code{system} call.  The return value of @code{system} on 
45308 the host is simplified before it's returned
45309 to the target.  Any termination signal information from the child process 
45310 is discarded, and the return value consists
45311 entirely of the exit status of the called command.
45313 Due to security concerns, the @code{system} call is by default refused
45314 by @value{GDBN}.  The user has to allow this call explicitly with the
45315 @code{set remote system-call-allowed 1} command.
45317 @table @code
45318 @item set remote system-call-allowed
45319 @kindex set remote system-call-allowed
45320 Control whether to allow the @code{system} calls in the File I/O
45321 protocol for the remote target.  The default is zero (disabled).
45323 @item show remote system-call-allowed
45324 @kindex show remote system-call-allowed
45325 Show whether the @code{system} calls are allowed in the File I/O
45326 protocol.
45327 @end table
45329 @node Protocol-specific Representation of Datatypes
45330 @subsection Protocol-specific Representation of Datatypes
45331 @cindex protocol-specific representation of datatypes, in file-i/o protocol
45333 @menu
45334 * Integral Datatypes::
45335 * Pointer Values::
45336 * Memory Transfer::
45337 * struct stat::
45338 * struct timeval::
45339 @end menu
45341 @node Integral Datatypes
45342 @unnumberedsubsubsec Integral Datatypes
45343 @cindex integral datatypes, in file-i/o protocol
45345 The integral datatypes used in the system calls are @code{int}, 
45346 @code{unsigned int}, @code{long}, @code{unsigned long},
45347 @code{mode_t}, and @code{time_t}.  
45349 @code{int}, @code{unsigned int}, @code{mode_t} and @code{time_t} are
45350 implemented as 32 bit values in this protocol.
45352 @code{long} and @code{unsigned long} are implemented as 64 bit types.
45354 @xref{Limits}, for corresponding MIN and MAX values (similar to those
45355 in @file{limits.h}) to allow range checking on host and target.
45357 @code{time_t} datatypes are defined as seconds since the Epoch.
45359 All integral datatypes transferred as part of a memory read or write of a
45360 structured datatype e.g.@: a @code{struct stat} have to be given in big endian
45361 byte order.
45363 @node Pointer Values
45364 @unnumberedsubsubsec Pointer Values
45365 @cindex pointer values, in file-i/o protocol
45367 Pointers to target data are transmitted as they are.  An exception
45368 is made for pointers to buffers for which the length isn't
45369 transmitted as part of the function call, namely strings.  Strings
45370 are transmitted as a pointer/length pair, both as hex values, e.g.@:
45372 @smallexample
45373 @code{1aaf/12}
45374 @end smallexample
45376 @noindent
45377 which is a pointer to data of length 18 bytes at position 0x1aaf.
45378 The length is defined as the full string length in bytes, including
45379 the trailing null byte.  For example, the string @code{"hello world"}
45380 at address 0x123456 is transmitted as
45382 @smallexample
45383 @code{123456/d}
45384 @end smallexample
45386 @node Memory Transfer
45387 @unnumberedsubsubsec Memory Transfer
45388 @cindex memory transfer, in file-i/o protocol
45390 Structured data which is transferred using a memory read or write (for
45391 example, a @code{struct stat}) is expected to be in a protocol-specific format 
45392 with all scalar multibyte datatypes being big endian.  Translation to
45393 this representation needs to be done both by the target before the @code{F} 
45394 packet is sent, and by @value{GDBN} before 
45395 it transfers memory to the target.  Transferred pointers to structured
45396 data should point to the already-coerced data at any time.
45399 @node struct stat
45400 @unnumberedsubsubsec struct stat
45401 @cindex struct stat, in file-i/o protocol
45403 The buffer of type @code{struct stat} used by the target and @value{GDBN} 
45404 is defined as follows:
45406 @smallexample
45407 struct stat @{
45408     unsigned int  st_dev;      /* device */
45409     unsigned int  st_ino;      /* inode */
45410     mode_t        st_mode;     /* protection */
45411     unsigned int  st_nlink;    /* number of hard links */
45412     unsigned int  st_uid;      /* user ID of owner */
45413     unsigned int  st_gid;      /* group ID of owner */
45414     unsigned int  st_rdev;     /* device type (if inode device) */
45415     unsigned long st_size;     /* total size, in bytes */
45416     unsigned long st_blksize;  /* blocksize for filesystem I/O */
45417     unsigned long st_blocks;   /* number of blocks allocated */
45418     time_t        st_atime;    /* time of last access */
45419     time_t        st_mtime;    /* time of last modification */
45420     time_t        st_ctime;    /* time of last change */
45422 @end smallexample
45424 The integral datatypes conform to the definitions given in the
45425 appropriate section (see @ref{Integral Datatypes}, for details) so this
45426 structure is of size 64 bytes.
45428 The values of several fields have a restricted meaning and/or
45429 range of values.
45431 @table @code
45433 @item st_dev
45434 A value of 0 represents a file, 1 the console.
45436 @item st_ino
45437 No valid meaning for the target.  Transmitted unchanged.
45439 @item st_mode
45440 Valid mode bits are described in @ref{Constants}.  Any other
45441 bits have currently no meaning for the target.
45443 @item st_uid
45444 @itemx st_gid
45445 @itemx st_rdev
45446 No valid meaning for the target.  Transmitted unchanged.
45448 @item st_atime
45449 @itemx st_mtime
45450 @itemx st_ctime
45451 These values have a host and file system dependent
45452 accuracy.  Especially on Windows hosts, the file system may not
45453 support exact timing values.
45454 @end table
45456 The target gets a @code{struct stat} of the above representation and is
45457 responsible for coercing it to the target representation before
45458 continuing.
45460 Note that due to size differences between the host, target, and protocol
45461 representations of @code{struct stat} members, these members could eventually
45462 get truncated on the target.
45464 @node struct timeval
45465 @unnumberedsubsubsec struct timeval
45466 @cindex struct timeval, in file-i/o protocol
45468 The buffer of type @code{struct timeval} used by the File-I/O protocol
45469 is defined as follows:
45471 @smallexample
45472 struct timeval @{
45473     time_t tv_sec;  /* second */
45474     long   tv_usec; /* microsecond */
45476 @end smallexample
45478 The integral datatypes conform to the definitions given in the
45479 appropriate section (see @ref{Integral Datatypes}, for details) so this
45480 structure is of size 8 bytes.
45482 @node Constants
45483 @subsection Constants
45484 @cindex constants, in file-i/o protocol
45486 The following values are used for the constants inside of the
45487 protocol.  @value{GDBN} and target are responsible for translating these
45488 values before and after the call as needed.
45490 @menu
45491 * Open Flags::
45492 * mode_t Values::
45493 * Errno Values::
45494 * Lseek Flags::
45495 * Limits::
45496 @end menu
45498 @node Open Flags
45499 @unnumberedsubsubsec Open Flags
45500 @cindex open flags, in file-i/o protocol
45502 All values are given in hexadecimal representation.
45504 @smallexample
45505   O_RDONLY        0x0
45506   O_WRONLY        0x1
45507   O_RDWR          0x2
45508   O_APPEND        0x8
45509   O_CREAT       0x200
45510   O_TRUNC       0x400
45511   O_EXCL        0x800
45512 @end smallexample
45514 @node mode_t Values
45515 @unnumberedsubsubsec mode_t Values
45516 @cindex mode_t values, in file-i/o protocol
45518 All values are given in octal representation.
45520 @smallexample
45521   S_IFREG       0100000
45522   S_IFDIR        040000
45523   S_IRUSR          0400
45524   S_IWUSR          0200
45525   S_IXUSR          0100
45526   S_IRGRP           040
45527   S_IWGRP           020
45528   S_IXGRP           010
45529   S_IROTH            04
45530   S_IWOTH            02
45531   S_IXOTH            01
45532 @end smallexample
45534 @node Errno Values
45535 @unnumberedsubsubsec Errno Values
45536 @cindex errno values, in file-i/o protocol
45538 All values are given in decimal representation.
45540 @smallexample
45541   EPERM           1
45542   ENOENT          2
45543   EINTR           4
45544   EBADF           9
45545   EACCES         13
45546   EFAULT         14
45547   EBUSY          16
45548   EEXIST         17
45549   ENODEV         19
45550   ENOTDIR        20
45551   EISDIR         21
45552   EINVAL         22
45553   ENFILE         23
45554   EMFILE         24
45555   EFBIG          27
45556   ENOSPC         28
45557   ESPIPE         29
45558   EROFS          30
45559   ENAMETOOLONG   91
45560   EUNKNOWN       9999
45561 @end smallexample
45563   @code{EUNKNOWN} is used as a fallback error value if a host system returns
45564   any error value not in the list of supported error numbers.
45566 @node Lseek Flags
45567 @unnumberedsubsubsec Lseek Flags
45568 @cindex lseek flags, in file-i/o protocol
45570 @smallexample
45571   SEEK_SET      0
45572   SEEK_CUR      1
45573   SEEK_END      2
45574 @end smallexample
45576 @node Limits
45577 @unnumberedsubsubsec Limits
45578 @cindex limits, in file-i/o protocol
45580 All values are given in decimal representation.
45582 @smallexample
45583   INT_MIN       -2147483648
45584   INT_MAX        2147483647
45585   UINT_MAX       4294967295
45586   LONG_MIN      -9223372036854775808
45587   LONG_MAX       9223372036854775807
45588   ULONG_MAX      18446744073709551615
45589 @end smallexample
45591 @node File-I/O Examples
45592 @subsection File-I/O Examples
45593 @cindex file-i/o examples
45595 Example sequence of a write call, file descriptor 3, buffer is at target
45596 address 0x1234, 6 bytes should be written:
45598 @smallexample
45599 <- @code{Fwrite,3,1234,6}
45600 @emph{request memory read from target}
45601 -> @code{m1234,6}
45602 <- XXXXXX
45603 @emph{return "6 bytes written"}
45604 -> @code{F6}
45605 @end smallexample
45607 Example sequence of a read call, file descriptor 3, buffer is at target
45608 address 0x1234, 6 bytes should be read:
45610 @smallexample
45611 <- @code{Fread,3,1234,6}
45612 @emph{request memory write to target}
45613 -> @code{X1234,6:XXXXXX}
45614 @emph{return "6 bytes read"}
45615 -> @code{F6}
45616 @end smallexample
45618 Example sequence of a read call, call fails on the host due to invalid
45619 file descriptor (@code{EBADF}):
45621 @smallexample
45622 <- @code{Fread,3,1234,6}
45623 -> @code{F-1,9}
45624 @end smallexample
45626 Example sequence of a read call, user presses @kbd{Ctrl-c} before syscall on
45627 host is called:
45629 @smallexample
45630 <- @code{Fread,3,1234,6}
45631 -> @code{F-1,4,C}
45632 <- @code{T02}
45633 @end smallexample
45635 Example sequence of a read call, user presses @kbd{Ctrl-c} after syscall on
45636 host is called:
45638 @smallexample
45639 <- @code{Fread,3,1234,6}
45640 -> @code{X1234,6:XXXXXX}
45641 <- @code{T02}
45642 @end smallexample
45644 @node Library List Format
45645 @section Library List Format
45646 @cindex library list format, remote protocol
45648 On some platforms, a dynamic loader (e.g.@: @file{ld.so}) runs in the
45649 same process as your application to manage libraries.  In this case,
45650 @value{GDBN} can use the loader's symbol table and normal memory
45651 operations to maintain a list of shared libraries.  On other
45652 platforms, the operating system manages loaded libraries.
45653 @value{GDBN} can not retrieve the list of currently loaded libraries
45654 through memory operations, so it uses the @samp{qXfer:libraries:read}
45655 packet (@pxref{qXfer library list read}) instead.  The remote stub
45656 queries the target's operating system and reports which libraries
45657 are loaded.
45659 The @samp{qXfer:libraries:read} packet returns an XML document which
45660 lists loaded libraries and their offsets.  Each library has an
45661 associated name and one or more segment or section base addresses,
45662 which report where the library was loaded in memory.
45664 For the common case of libraries that are fully linked binaries, the
45665 library should have a list of segments.  If the target supports
45666 dynamic linking of a relocatable object file, its library XML element
45667 should instead include a list of allocated sections.  The segment or
45668 section bases are start addresses, not relocation offsets; they do not
45669 depend on the library's link-time base addresses.
45671 @value{GDBN} must be linked with the Expat library to support XML
45672 library lists.  @xref{Expat}.
45674 A simple memory map, with one loaded library relocated by a single
45675 offset, looks like this:
45677 @smallexample
45678 <library-list>
45679   <library name="/lib/libc.so.6">
45680     <segment address="0x10000000"/>
45681   </library>
45682 </library-list>
45683 @end smallexample
45685 Another simple memory map, with one loaded library with three
45686 allocated sections (.text, .data, .bss), looks like this:
45688 @smallexample
45689 <library-list>
45690   <library name="sharedlib.o">
45691     <section address="0x10000000"/>
45692     <section address="0x20000000"/>
45693     <section address="0x30000000"/>
45694   </library>
45695 </library-list>
45696 @end smallexample
45698 The format of a library list is described by this DTD:
45700 @smallexample
45701 <!-- library-list: Root element with versioning -->
45702 <!ELEMENT library-list  (library)*>
45703 <!ATTLIST library-list  version CDATA   #FIXED  "1.0">
45704 <!ELEMENT library       (segment*, section*)>
45705 <!ATTLIST library       name    CDATA   #REQUIRED>
45706 <!ELEMENT segment       EMPTY>
45707 <!ATTLIST segment       address CDATA   #REQUIRED>
45708 <!ELEMENT section       EMPTY>
45709 <!ATTLIST section       address CDATA   #REQUIRED>
45710 @end smallexample
45712 In addition, segments and section descriptors cannot be mixed within a
45713 single library element, and you must supply at least one segment or
45714 section for each library.
45716 @node Library List Format for SVR4 Targets
45717 @section Library List Format for SVR4 Targets
45718 @cindex library list format, remote protocol
45720 On SVR4 platforms @value{GDBN} can use the symbol table of a dynamic loader
45721 (e.g.@: @file{ld.so}) and normal memory operations to maintain a list of
45722 shared libraries.  Still a special library list provided by this packet is
45723 more efficient for the @value{GDBN} remote protocol.
45725 The @samp{qXfer:libraries-svr4:read} packet returns an XML document which lists
45726 loaded libraries and their SVR4 linker parameters.  For each library on SVR4
45727 target, the following parameters are reported:
45729 @itemize @minus
45730 @item
45731 @code{name}, the absolute file name from the @code{l_name} field of
45732 @code{struct link_map}.
45733 @item
45734 @code{lm} with address of @code{struct link_map} used for TLS
45735 (Thread Local Storage) access.
45736 @item
45737 @code{l_addr}, the displacement as read from the field @code{l_addr} of
45738 @code{struct link_map}.  For prelinked libraries this is not an absolute
45739 memory address.  It is a displacement of absolute memory address against
45740 address the file was prelinked to during the library load.
45741 @item
45742 @code{l_ld}, which is memory address of the @code{PT_DYNAMIC} segment
45743 @end itemize
45745 Additionally the single @code{main-lm} attribute specifies address of
45746 @code{struct link_map} used for the main executable.  This parameter is used
45747 for TLS access and its presence is optional.
45749 @value{GDBN} must be linked with the Expat library to support XML
45750 SVR4 library lists.  @xref{Expat}.
45752 A simple memory map, with two loaded libraries (which do not use prelink),
45753 looks like this:
45755 @smallexample
45756 <library-list-svr4 version="1.0" main-lm="0xe4f8f8">
45757   <library name="/lib/ld-linux.so.2" lm="0xe4f51c" l_addr="0xe2d000"
45758            l_ld="0xe4eefc"/>
45759   <library name="/lib/libc.so.6" lm="0xe4fbe8" l_addr="0x154000"
45760            l_ld="0x152350"/>
45761 </library-list-svr>
45762 @end smallexample
45764 The format of an SVR4 library list is described by this DTD:
45766 @smallexample
45767 <!-- library-list-svr4: Root element with versioning -->
45768 <!ELEMENT library-list-svr4  (library)*>
45769 <!ATTLIST library-list-svr4  version CDATA   #FIXED  "1.0">
45770 <!ATTLIST library-list-svr4  main-lm CDATA   #IMPLIED>
45771 <!ELEMENT library            EMPTY>
45772 <!ATTLIST library            name    CDATA   #REQUIRED>
45773 <!ATTLIST library            lm      CDATA   #REQUIRED>
45774 <!ATTLIST library            l_addr  CDATA   #REQUIRED>
45775 <!ATTLIST library            l_ld    CDATA   #REQUIRED>
45776 @end smallexample
45778 @node Memory Map Format
45779 @section Memory Map Format
45780 @cindex memory map format
45782 To be able to write into flash memory, @value{GDBN} needs to obtain a
45783 memory map from the target.  This section describes the format of the
45784 memory map.
45786 The memory map is obtained using the @samp{qXfer:memory-map:read}
45787 (@pxref{qXfer memory map read}) packet and is an XML document that
45788 lists memory regions.
45790 @value{GDBN} must be linked with the Expat library to support XML
45791 memory maps.  @xref{Expat}.
45793 The top-level structure of the document is shown below:
45795 @smallexample
45796 <?xml version="1.0"?>
45797 <!DOCTYPE memory-map
45798           PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45799                  "http://sourceware.org/gdb/gdb-memory-map.dtd">
45800 <memory-map>
45801     region...
45802 </memory-map>
45803 @end smallexample
45805 Each region can be either:
45807 @itemize
45809 @item
45810 A region of RAM starting at @var{addr} and extending for @var{length}
45811 bytes from there:
45813 @smallexample
45814 <memory type="ram" start="@var{addr}" length="@var{length}"/>
45815 @end smallexample
45818 @item
45819 A region of read-only memory:
45821 @smallexample
45822 <memory type="rom" start="@var{addr}" length="@var{length}"/>
45823 @end smallexample
45826 @item
45827 A region of flash memory, with erasure blocks @var{blocksize}
45828 bytes in length:
45830 @smallexample
45831 <memory type="flash" start="@var{addr}" length="@var{length}">
45832   <property name="blocksize">@var{blocksize}</property>
45833 </memory>
45834 @end smallexample
45836 @end itemize
45838 Regions must not overlap.  @value{GDBN} assumes that areas of memory not covered
45839 by the memory map are RAM, and uses the ordinary @samp{M} and @samp{X}
45840 packets to write to addresses in such ranges.
45842 The formal DTD for memory map format is given below:
45844 @smallexample
45845 <!-- ................................................... -->
45846 <!-- Memory Map XML DTD ................................ -->
45847 <!-- File: memory-map.dtd .............................. -->
45848 <!-- .................................... .............. -->
45849 <!-- memory-map.dtd -->
45850 <!-- memory-map: Root element with versioning -->
45851 <!ELEMENT memory-map (memory)*>
45852 <!ATTLIST memory-map    version CDATA   #FIXED  "1.0.0">
45853 <!ELEMENT memory (property)*>
45854 <!-- memory: Specifies a memory region,
45855              and its type, or device. -->
45856 <!ATTLIST memory        type    (ram|rom|flash) #REQUIRED
45857                         start   CDATA   #REQUIRED
45858                         length  CDATA   #REQUIRED>
45859 <!-- property: Generic attribute tag -->
45860 <!ELEMENT property (#PCDATA | property)*>
45861 <!ATTLIST property      name    (blocksize) #REQUIRED>
45862 @end smallexample
45864 @node Thread List Format
45865 @section Thread List Format
45866 @cindex thread list format
45868 To efficiently update the list of threads and their attributes,
45869 @value{GDBN} issues the @samp{qXfer:threads:read} packet
45870 (@pxref{qXfer threads read}) and obtains the XML document with
45871 the following structure:
45873 @smallexample
45874 <?xml version="1.0"?>
45875 <threads>
45876     <thread id="id" core="0" name="name">
45877     ... description ...
45878     </thread>
45879 </threads>
45880 @end smallexample
45882 Each @samp{thread} element must have the @samp{id} attribute that
45883 identifies the thread (@pxref{thread-id syntax}).  The
45884 @samp{core} attribute, if present, specifies which processor core
45885 the thread was last executing on.  The @samp{name} attribute, if
45886 present, specifies the human-readable name of the thread.  The content
45887 of the of @samp{thread} element is interpreted as human-readable
45888 auxiliary information.  The @samp{handle} attribute, if present,
45889 is a hex encoded representation of the thread handle.
45892 @node Traceframe Info Format
45893 @section Traceframe Info Format
45894 @cindex traceframe info format
45896 To be able to know which objects in the inferior can be examined when
45897 inspecting a tracepoint hit, @value{GDBN} needs to obtain the list of
45898 memory ranges, registers and trace state variables that have been
45899 collected in a traceframe.
45901 This list is obtained using the @samp{qXfer:traceframe-info:read}
45902 (@pxref{qXfer traceframe info read}) packet and is an XML document.
45904 @value{GDBN} must be linked with the Expat library to support XML
45905 traceframe info discovery.  @xref{Expat}.
45907 The top-level structure of the document is shown below:
45909 @smallexample
45910 <?xml version="1.0"?>
45911 <!DOCTYPE traceframe-info
45912           PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45913                  "http://sourceware.org/gdb/gdb-traceframe-info.dtd">
45914 <traceframe-info>
45915    block...
45916 </traceframe-info>
45917 @end smallexample
45919 Each traceframe block can be either:
45921 @itemize
45923 @item
45924 A region of collected memory starting at @var{addr} and extending for
45925 @var{length} bytes from there:
45927 @smallexample
45928 <memory start="@var{addr}" length="@var{length}"/>
45929 @end smallexample
45931 @item
45932 A block indicating trace state variable numbered @var{number} has been
45933 collected:
45935 @smallexample
45936 <tvar id="@var{number}"/>
45937 @end smallexample
45939 @end itemize
45941 The formal DTD for the traceframe info format is given below:
45943 @smallexample
45944 <!ELEMENT traceframe-info  (memory | tvar)* >
45945 <!ATTLIST traceframe-info  version CDATA   #FIXED  "1.0">
45947 <!ELEMENT memory        EMPTY>
45948 <!ATTLIST memory        start   CDATA   #REQUIRED
45949                         length  CDATA   #REQUIRED>
45950 <!ELEMENT tvar>
45951 <!ATTLIST tvar          id      CDATA   #REQUIRED>
45952 @end smallexample
45954 @node Branch Trace Format
45955 @section Branch Trace Format
45956 @cindex branch trace format
45958 In order to display the branch trace of an inferior thread,
45959 @value{GDBN} needs to obtain the list of branches.  This list is
45960 represented as list of sequential code blocks that are connected via
45961 branches.  The code in each block has been executed sequentially.
45963 This list is obtained using the @samp{qXfer:btrace:read}
45964 (@pxref{qXfer btrace read}) packet and is an XML document.
45966 @value{GDBN} must be linked with the Expat library to support XML
45967 traceframe info discovery.  @xref{Expat}.
45969 The top-level structure of the document is shown below:
45971 @smallexample
45972 <?xml version="1.0"?>
45973 <!DOCTYPE btrace
45974           PUBLIC "+//IDN gnu.org//DTD GDB Branch Trace V1.0//EN"
45975                  "http://sourceware.org/gdb/gdb-btrace.dtd">
45976 <btrace>
45977    block...
45978 </btrace>
45979 @end smallexample
45981 @itemize
45983 @item
45984 A block of sequentially executed instructions starting at @var{begin}
45985 and ending at @var{end}:
45987 @smallexample
45988 <block begin="@var{begin}" end="@var{end}"/>
45989 @end smallexample
45991 @end itemize
45993 The formal DTD for the branch trace format is given below:
45995 @smallexample
45996 <!ELEMENT btrace  (block* | pt) >
45997 <!ATTLIST btrace  version CDATA   #FIXED "1.0">
45999 <!ELEMENT block        EMPTY>
46000 <!ATTLIST block        begin  CDATA   #REQUIRED
46001                        end    CDATA   #REQUIRED>
46003 <!ELEMENT pt (pt-config?, raw?)>
46005 <!ELEMENT pt-config (cpu?)>
46007 <!ELEMENT cpu EMPTY>
46008 <!ATTLIST cpu vendor   CDATA #REQUIRED
46009               family   CDATA #REQUIRED
46010               model    CDATA #REQUIRED
46011               stepping CDATA #REQUIRED>
46013 <!ELEMENT raw (#PCDATA)>
46014 @end smallexample
46016 @node Branch Trace Configuration Format
46017 @section Branch Trace Configuration Format
46018 @cindex branch trace configuration format
46020 For each inferior thread, @value{GDBN} can obtain the branch trace
46021 configuration using the @samp{qXfer:btrace-conf:read}
46022 (@pxref{qXfer btrace-conf read}) packet.
46024 The configuration describes the branch trace format and configuration
46025 settings for that format.  The following information is described:
46027 @table @code
46028 @item bts
46029 This thread uses the @dfn{Branch Trace Store} (@acronym{BTS}) format.
46030 @table @code
46031 @item size
46032 The size of the @acronym{BTS} ring buffer in bytes.
46033 @end table
46034 @item pt
46035 This thread uses the @dfn{Intel Processor Trace} (@acronym{Intel
46036 PT}) format.
46037 @table @code
46038 @item size
46039 The size of the @acronym{Intel PT} ring buffer in bytes.
46040 @end table
46041 @end table
46043 @value{GDBN} must be linked with the Expat library to support XML
46044 branch trace configuration discovery.  @xref{Expat}.
46046 The formal DTD for the branch trace configuration format is given below:
46048 @smallexample
46049 <!ELEMENT btrace-conf   (bts?, pt?)>
46050 <!ATTLIST btrace-conf   version CDATA   #FIXED "1.0">
46052 <!ELEMENT bts   EMPTY>
46053 <!ATTLIST bts   size    CDATA   #IMPLIED>
46055 <!ELEMENT pt    EMPTY>
46056 <!ATTLIST pt    size    CDATA   #IMPLIED>
46057 @end smallexample
46059 @include agentexpr.texi
46061 @node Target Descriptions
46062 @appendix Target Descriptions
46063 @cindex target descriptions
46065 One of the challenges of using @value{GDBN} to debug embedded systems
46066 is that there are so many minor variants of each processor
46067 architecture in use.  It is common practice for vendors to start with
46068 a standard processor core --- ARM, PowerPC, or @acronym{MIPS}, for example ---
46069 and then make changes to adapt it to a particular market niche.  Some
46070 architectures have hundreds of variants, available from dozens of
46071 vendors.  This leads to a number of problems:
46073 @itemize @bullet
46074 @item
46075 With so many different customized processors, it is difficult for
46076 the @value{GDBN} maintainers to keep up with the changes.
46077 @item
46078 Since individual variants may have short lifetimes or limited
46079 audiences, it may not be worthwhile to carry information about every
46080 variant in the @value{GDBN} source tree.
46081 @item
46082 When @value{GDBN} does support the architecture of the embedded system
46083 at hand, the task of finding the correct architecture name to give the
46084 @command{set architecture} command can be error-prone.
46085 @end itemize
46087 To address these problems, the @value{GDBN} remote protocol allows a
46088 target system to not only identify itself to @value{GDBN}, but to
46089 actually describe its own features.  This lets @value{GDBN} support
46090 processor variants it has never seen before --- to the extent that the
46091 descriptions are accurate, and that @value{GDBN} understands them.
46093 @value{GDBN} must be linked with the Expat library to support XML
46094 target descriptions.  @xref{Expat}.
46096 @menu
46097 * Retrieving Descriptions::         How descriptions are fetched from a target.
46098 * Target Description Format::       The contents of a target description.
46099 * Predefined Target Types::         Standard types available for target
46100                                     descriptions.
46101 * Enum Target Types::               How to define enum target types.
46102 * Standard Target Features::        Features @value{GDBN} knows about.
46103 @end menu
46105 @node Retrieving Descriptions
46106 @section Retrieving Descriptions
46108 Target descriptions can be read from the target automatically, or
46109 specified by the user manually.  The default behavior is to read the
46110 description from the target.  @value{GDBN} retrieves it via the remote
46111 protocol using @samp{qXfer} requests (@pxref{General Query Packets,
46112 qXfer}).  The @var{annex} in the @samp{qXfer} packet will be
46113 @samp{target.xml}.  The contents of the @samp{target.xml} annex are an
46114 XML document, of the form described in @ref{Target Description
46115 Format}.
46117 Alternatively, you can specify a file to read for the target description.
46118 If a file is set, the target will not be queried.  The commands to
46119 specify a file are:
46121 @table @code
46122 @cindex set tdesc filename
46123 @item set tdesc filename @var{path}
46124 Read the target description from @var{path}.
46126 @cindex unset tdesc filename
46127 @item unset tdesc filename
46128 Do not read the XML target description from a file.  @value{GDBN}
46129 will use the description supplied by the current target.
46131 @cindex show tdesc filename
46132 @item show tdesc filename
46133 Show the filename to read for a target description, if any.
46134 @end table
46137 @node Target Description Format
46138 @section Target Description Format
46139 @cindex target descriptions, XML format
46141 A target description annex is an @uref{http://www.w3.org/XML/, XML}
46142 document which complies with the Document Type Definition provided in
46143 the @value{GDBN} sources in @file{gdb/features/gdb-target.dtd}.  This
46144 means you can use generally available tools like @command{xmllint} to
46145 check that your feature descriptions are well-formed and valid.
46146 However, to help people unfamiliar with XML write descriptions for
46147 their targets, we also describe the grammar here.
46149 Target descriptions can identify the architecture of the remote target
46150 and (for some architectures) provide information about custom register
46151 sets.  They can also identify the OS ABI of the remote target.
46152 @value{GDBN} can use this information to autoconfigure for your
46153 target, or to warn you if you connect to an unsupported target.
46155 Here is a simple target description:
46157 @smallexample
46158 <target version="1.0">
46159   <architecture>i386:x86-64</architecture>
46160 </target>
46161 @end smallexample
46163 @noindent
46164 This minimal description only says that the target uses
46165 the x86-64 architecture.
46167 A target description has the following overall form, with [ ] marking
46168 optional elements and @dots{} marking repeatable elements.  The elements
46169 are explained further below.
46171 @smallexample
46172 <?xml version="1.0"?>
46173 <!DOCTYPE target SYSTEM "gdb-target.dtd">
46174 <target version="1.0">
46175   @r{[}@var{architecture}@r{]}
46176   @r{[}@var{osabi}@r{]}
46177   @r{[}@var{compatible}@r{]}
46178   @r{[}@var{feature}@dots{}@r{]}
46179 </target>
46180 @end smallexample
46182 @noindent
46183 The description is generally insensitive to whitespace and line
46184 breaks, under the usual common-sense rules.  The XML version
46185 declaration and document type declaration can generally be omitted
46186 (@value{GDBN} does not require them), but specifying them may be
46187 useful for XML validation tools.  The @samp{version} attribute for
46188 @samp{<target>} may also be omitted, but we recommend
46189 including it; if future versions of @value{GDBN} use an incompatible
46190 revision of @file{gdb-target.dtd}, they will detect and report
46191 the version mismatch.
46193 @subsection Inclusion
46194 @cindex target descriptions, inclusion
46195 @cindex XInclude
46196 @ifnotinfo
46197 @cindex <xi:include>
46198 @end ifnotinfo
46200 It can sometimes be valuable to split a target description up into
46201 several different annexes, either for organizational purposes, or to
46202 share files between different possible target descriptions.  You can
46203 divide a description into multiple files by replacing any element of
46204 the target description with an inclusion directive of the form:
46206 @smallexample
46207 <xi:include href="@var{document}"/>
46208 @end smallexample
46210 @noindent
46211 When @value{GDBN} encounters an element of this form, it will retrieve
46212 the named XML @var{document}, and replace the inclusion directive with
46213 the contents of that document.  If the current description was read
46214 using @samp{qXfer}, then so will be the included document;
46215 @var{document} will be interpreted as the name of an annex.  If the
46216 current description was read from a file, @value{GDBN} will look for
46217 @var{document} as a file in the same directory where it found the
46218 original description.
46220 @subsection Architecture
46221 @cindex <architecture>
46223 An @samp{<architecture>} element has this form:
46225 @smallexample
46226   <architecture>@var{arch}</architecture>
46227 @end smallexample
46229 @var{arch} is one of the architectures from the set accepted by
46230 @code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
46232 @subsection OS ABI
46233 @cindex @code{<osabi>}
46235 This optional field was introduced in @value{GDBN} version 7.0.
46236 Previous versions of @value{GDBN} ignore it.
46238 An @samp{<osabi>} element has this form:
46240 @smallexample
46241   <osabi>@var{abi-name}</osabi>
46242 @end smallexample
46244 @var{abi-name} is an OS ABI name from the same selection accepted by
46245 @w{@code{set osabi}} (@pxref{ABI, ,Configuring the Current ABI}).
46247 @subsection Compatible Architecture
46248 @cindex @code{<compatible>}
46250 This optional field was introduced in @value{GDBN} version 7.0.
46251 Previous versions of @value{GDBN} ignore it.
46253 A @samp{<compatible>} element has this form:
46255 @smallexample
46256   <compatible>@var{arch}</compatible>
46257 @end smallexample
46259 @var{arch} is one of the architectures from the set accepted by
46260 @code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
46262 A @samp{<compatible>} element is used to specify that the target
46263 is able to run binaries in some other than the main target architecture
46264 given by the @samp{<architecture>} element.  For example, on the
46265 Cell Broadband Engine, the main architecture is @code{powerpc:common}
46266 or @code{powerpc:common64}, but the system is able to run binaries
46267 in the @code{spu} architecture as well.  The way to describe this
46268 capability with @samp{<compatible>} is as follows:
46270 @smallexample
46271   <architecture>powerpc:common</architecture>
46272   <compatible>spu</compatible>
46273 @end smallexample
46275 @subsection Features
46276 @cindex <feature>
46278 Each @samp{<feature>} describes some logical portion of the target
46279 system.  Features are currently used to describe available CPU
46280 registers and the types of their contents.  A @samp{<feature>} element
46281 has this form:
46283 @smallexample
46284 <feature name="@var{name}">
46285   @r{[}@var{type}@dots{}@r{]}
46286   @var{reg}@dots{}
46287 </feature>
46288 @end smallexample
46290 @noindent
46291 Each feature's name should be unique within the description.  The name
46292 of a feature does not matter unless @value{GDBN} has some special
46293 knowledge of the contents of that feature; if it does, the feature
46294 should have its standard name.  @xref{Standard Target Features}.
46296 @subsection Types
46298 Any register's value is a collection of bits which @value{GDBN} must
46299 interpret.  The default interpretation is a two's complement integer,
46300 but other types can be requested by name in the register description.
46301 Some predefined types are provided by @value{GDBN} (@pxref{Predefined
46302 Target Types}), and the description can define additional composite
46303 and enum types.
46305 Each type element must have an @samp{id} attribute, which gives
46306 a unique (within the containing @samp{<feature>}) name to the type.
46307 Types must be defined before they are used.
46309 @cindex <vector>
46310 Some targets offer vector registers, which can be treated as arrays
46311 of scalar elements.  These types are written as @samp{<vector>} elements,
46312 specifying the array element type, @var{type}, and the number of elements,
46313 @var{count}:
46315 @smallexample
46316 <vector id="@var{id}" type="@var{type}" count="@var{count}"/>
46317 @end smallexample
46319 @cindex <union>
46320 If a register's value is usefully viewed in multiple ways, define it
46321 with a union type containing the useful representations.  The
46322 @samp{<union>} element contains one or more @samp{<field>} elements,
46323 each of which has a @var{name} and a @var{type}:
46325 @smallexample
46326 <union id="@var{id}">
46327   <field name="@var{name}" type="@var{type}"/>
46328   @dots{}
46329 </union>
46330 @end smallexample
46332 @cindex <struct>
46333 @cindex <flags>
46334 If a register's value is composed from several separate values, define
46335 it with either a structure type or a flags type.
46336 A flags type may only contain bitfields.
46337 A structure type may either contain only bitfields or contain no bitfields.
46338 If the value contains only bitfields, its total size in bytes must be
46339 specified.
46341 Non-bitfield values have a @var{name} and @var{type}.
46343 @smallexample
46344 <struct id="@var{id}">
46345   <field name="@var{name}" type="@var{type}"/>
46346   @dots{}
46347 </struct>
46348 @end smallexample
46350 Both @var{name} and @var{type} values are required.
46351 No implicit padding is added.
46353 Bitfield values have a @var{name}, @var{start}, @var{end} and @var{type}.
46355 @smallexample
46356 <struct id="@var{id}" size="@var{size}">
46357   <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
46358   @dots{}
46359 </struct>
46360 @end smallexample
46362 @smallexample
46363 <flags id="@var{id}" size="@var{size}">
46364   <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
46365   @dots{}
46366 </flags>
46367 @end smallexample
46369 The @var{name} value is required.
46370 Bitfield values may be named with the empty string, @samp{""},
46371 in which case the field is ``filler'' and its value is not printed.
46372 Not all bits need to be specified, so ``filler'' fields are optional.
46374 The @var{start} and @var{end} values are required, and @var{type}
46375 is optional.
46376 The field's @var{start} must be less than or equal to its @var{end},
46377 and zero represents the least significant bit.
46379 The default value of @var{type} is @code{bool} for single bit fields,
46380 and an unsigned integer otherwise.
46382 Which to choose?  Structures or flags?
46384 Registers defined with @samp{flags} have these advantages over
46385 defining them with @samp{struct}:
46387 @itemize @bullet
46388 @item
46389 Arithmetic may be performed on them as if they were integers.
46390 @item
46391 They are printed in a more readable fashion.
46392 @end itemize
46394 Registers defined with @samp{struct} have one advantage over
46395 defining them with @samp{flags}:
46397 @itemize @bullet
46398 @item
46399 One can fetch individual fields like in @samp{C}.
46401 @smallexample
46402 (gdb) print $my_struct_reg.field3
46403 $1 = 42
46404 @end smallexample
46406 @end itemize
46408 @subsection Registers
46409 @cindex <reg>
46411 Each register is represented as an element with this form:
46413 @smallexample
46414 <reg name="@var{name}"
46415      bitsize="@var{size}"
46416      @r{[}regnum="@var{num}"@r{]}
46417      @r{[}save-restore="@var{save-restore}"@r{]}
46418      @r{[}type="@var{type}"@r{]}
46419      @r{[}group="@var{group}"@r{]}/>
46420 @end smallexample
46422 @noindent
46423 The components are as follows:
46425 @table @var
46427 @item name
46428 The register's name; it must be unique within the target description.
46430 @item bitsize
46431 The register's size, in bits.
46433 @item regnum
46434 The register's number.  If omitted, a register's number is one greater
46435 than that of the previous register (either in the current feature or in
46436 a preceding feature); the first register in the target description
46437 defaults to zero.  This register number is used to read or write
46438 the register; e.g.@: it is used in the remote @code{p} and @code{P}
46439 packets, and registers appear in the @code{g} and @code{G} packets
46440 in order of increasing register number.
46442 @item save-restore
46443 Whether the register should be preserved across inferior function
46444 calls; this must be either @code{yes} or @code{no}.  The default is
46445 @code{yes}, which is appropriate for most registers except for
46446 some system control registers; this is not related to the target's
46447 ABI.
46449 @item type
46450 The type of the register.  It may be a predefined type, a type
46451 defined in the current feature, or one of the special types @code{int}
46452 and @code{float}.  @code{int} is an integer type of the correct size
46453 for @var{bitsize}, and @code{float} is a floating point type (in the
46454 architecture's normal floating point format) of the correct size for
46455 @var{bitsize}.  The default is @code{int}.
46457 @item group
46458 The register group to which this register belongs.  It can be one of the
46459 standard register groups @code{general}, @code{float}, @code{vector} or an
46460 arbitrary string.  Group names should be limited to alphanumeric characters.
46461 If a group name is made up of multiple words the words may be separated by
46462 hyphens; e.g.@: @code{special-group} or @code{ultra-special-group}.  If no
46463 @var{group} is specified, @value{GDBN} will not display the register in
46464 @code{info registers}.
46466 @end table
46468 @node Predefined Target Types
46469 @section Predefined Target Types
46470 @cindex target descriptions, predefined types
46472 Type definitions in the self-description can build up composite types
46473 from basic building blocks, but can not define fundamental types.  Instead,
46474 standard identifiers are provided by @value{GDBN} for the fundamental
46475 types.  The currently supported types are:
46477 @table @code
46479 @item bool
46480 Boolean type, occupying a single bit.
46482 @item int8
46483 @itemx int16
46484 @itemx int24
46485 @itemx int32
46486 @itemx int64
46487 @itemx int128
46488 Signed integer types holding the specified number of bits.
46490 @item uint8
46491 @itemx uint16
46492 @itemx uint24
46493 @itemx uint32
46494 @itemx uint64
46495 @itemx uint128
46496 Unsigned integer types holding the specified number of bits.
46498 @item code_ptr
46499 @itemx data_ptr
46500 Pointers to unspecified code and data.  The program counter and
46501 any dedicated return address register may be marked as code
46502 pointers; printing a code pointer converts it into a symbolic
46503 address.  The stack pointer and any dedicated address registers
46504 may be marked as data pointers.
46506 @item ieee_half
46507 Half precision IEEE floating point.
46509 @item ieee_single
46510 Single precision IEEE floating point.
46512 @item ieee_double
46513 Double precision IEEE floating point.
46515 @item bfloat16
46516 The 16-bit @dfn{brain floating point} format used e.g.@: by x86 and ARM.
46518 @item arm_fpa_ext
46519 The 12-byte extended precision format used by ARM FPA registers.
46521 @item i387_ext
46522 The 10-byte extended precision format used by x87 registers.
46524 @item i386_eflags
46525 32bit @sc{eflags} register used by x86.
46527 @item i386_mxcsr
46528 32bit @sc{mxcsr} register used by x86.
46530 @end table
46532 @node Enum Target Types
46533 @section Enum Target Types
46534 @cindex target descriptions, enum types
46536 Enum target types are useful in @samp{struct} and @samp{flags}
46537 register descriptions.  @xref{Target Description Format}.
46539 Enum types have a name, size and a list of name/value pairs.
46541 @smallexample
46542 <enum id="@var{id}" size="@var{size}">
46543   <evalue name="@var{name}" value="@var{value}"/>
46544   @dots{}
46545 </enum>
46546 @end smallexample
46548 Enums must be defined before they are used.
46550 @smallexample
46551 <enum id="levels_type" size="4">
46552   <evalue name="low" value="0"/>
46553   <evalue name="high" value="1"/>
46554 </enum>
46555 <flags id="flags_type" size="4">
46556   <field name="X" start="0"/>
46557   <field name="LEVEL" start="1" end="1" type="levels_type"/>
46558 </flags>
46559 <reg name="flags" bitsize="32" type="flags_type"/>
46560 @end smallexample
46562 Given that description, a value of 3 for the @samp{flags} register
46563 would be printed as:
46565 @smallexample
46566 (gdb) info register flags
46567 flags 0x3 [ X LEVEL=high ]
46568 @end smallexample
46570 @node Standard Target Features
46571 @section Standard Target Features
46572 @cindex target descriptions, standard features
46574 A target description must contain either no registers or all the
46575 target's registers.  If the description contains no registers, then
46576 @value{GDBN} will assume a default register layout, selected based on
46577 the architecture.  If the description contains any registers, the
46578 default layout will not be used; the standard registers must be
46579 described in the target description, in such a way that @value{GDBN}
46580 can recognize them.
46582 This is accomplished by giving specific names to feature elements
46583 which contain standard registers.  @value{GDBN} will look for features
46584 with those names and verify that they contain the expected registers;
46585 if any known feature is missing required registers, or if any required
46586 feature is missing, @value{GDBN} will reject the target
46587 description.  You can add additional registers to any of the
46588 standard features --- @value{GDBN} will display them just as if
46589 they were added to an unrecognized feature.
46591 This section lists the known features and their expected contents.
46592 Sample XML documents for these features are included in the
46593 @value{GDBN} source tree, in the directory @file{gdb/features}.
46595 Names recognized by @value{GDBN} should include the name of the
46596 company or organization which selected the name, and the overall
46597 architecture to which the feature applies; so e.g.@: the feature
46598 containing ARM core registers is named @samp{org.gnu.gdb.arm.core}.
46600 The names of registers are not case sensitive for the purpose
46601 of recognizing standard features, but @value{GDBN} will only display
46602 registers using the capitalization used in the description.
46604 @menu
46605 * AArch64 Features::
46606 * ARC Features::
46607 * ARM Features::
46608 * i386 Features::
46609 * LoongArch Features::
46610 * MicroBlaze Features::
46611 * MIPS Features::
46612 * M68K Features::
46613 * NDS32 Features::
46614 * Nios II Features::
46615 * OpenRISC 1000 Features::
46616 * PowerPC Features::
46617 * RISC-V Features::
46618 * RX Features::
46619 * S/390 and System z Features::
46620 * Sparc Features::
46621 * TIC6x Features::
46622 @end menu
46625 @node AArch64 Features
46626 @subsection AArch64 Features
46627 @cindex target descriptions, AArch64 features
46629 The @samp{org.gnu.gdb.aarch64.core} feature is required for AArch64
46630 targets.  It should contain registers @samp{x0} through @samp{x30},
46631 @samp{sp}, @samp{pc}, and @samp{cpsr}.
46633 The @samp{org.gnu.gdb.aarch64.fpu} feature is optional.  If present,
46634 it should contain registers @samp{v0} through @samp{v31}, @samp{fpsr},
46635 and @samp{fpcr}.
46637 The @samp{org.gnu.gdb.aarch64.sve} feature is optional.  If present,
46638 it should contain registers @samp{z0} through @samp{z31}, @samp{p0}
46639 through @samp{p15}, @samp{ffr} and @samp{vg}.
46641 The @samp{org.gnu.gdb.aarch64.pauth} feature is optional.  If present,
46642 it should contain registers @samp{pauth_dmask} and @samp{pauth_cmask}.
46644 @node ARC Features
46645 @subsection ARC Features
46646 @cindex target descriptions, ARC Features
46648 ARC processors are so configurable that even core registers and their numbers
46649 are not predetermined completely.  Moreover, @emph{flags} and @emph{PC}
46650 registers, which are important to @value{GDBN}, are not ``core'' registers in
46651 ARC.  Therefore, there are two features that their presence is mandatory:
46652 @samp{org.gnu.gdb.arc.core} and @samp{org.gnu.gdb.arc.aux}.
46654 The @samp{org.gnu.gdb.arc.core} feature is required for all targets.  It must
46655 contain registers:
46657 @itemize @minus
46658 @item
46659 @samp{r0} through @samp{r25} for normal register file targets.
46660 @item
46661 @samp{r0} through @samp{r3}, and @samp{r10} through @samp{r15} for reduced
46662 register file targets.
46663 @item
46664 @samp{gp}, @samp{fp}, @samp{sp}, @samp{r30}@footnote{Not necessary for ARCv1.},
46665 @samp{blink}, @samp{lp_count}, @samp{pcl}.
46666 @end itemize
46668 In case of an ARCompact target (ARCv1 ISA), the @samp{org.gnu.gdb.arc.core}
46669 feature may contain registers @samp{ilink1} and @samp{ilink2}.  While in case
46670 of ARC EM and ARC HS targets (ARCv2 ISA), register @samp{ilink} may be present.
46671 The difference between ARCv1 and ARCv2 is the naming of registers @emph{29th}
46672 and @emph{30th}.  They are called @samp{ilink1} and @samp{ilink2} for ARCv1 and
46673 are optional.  For ARCv2, they are called @samp{ilink} and @samp{r30} and only
46674 @samp{ilink} is optional.  The optionality of @samp{ilink*} registers is
46675 because of their inaccessibility during user space debugging sessions.
46677 Extension core registers @samp{r32} through @samp{r59} are optional and their
46678 existence depends on the configuration.  When debugging GNU/Linux applications,
46679 i.e.@: user space debugging, these core registers are not available.
46681 The @samp{org.gnu.gdb.arc.aux} feature is required for all ARC targets.  Here
46682 is the list of registers pertinent to this feature:
46684 @itemize @minus
46685 @item
46686 mandatory: @samp{pc} and @samp{status32}.
46687 @item
46688 optional: @samp{lp_start}, @samp{lp_end}, and @samp{bta}.
46689 @end itemize
46691 @node ARM Features
46692 @subsection ARM Features
46693 @cindex target descriptions, ARM features
46695 The @samp{org.gnu.gdb.arm.core} feature is required for non-M-profile
46696 ARM targets.
46697 It should contain registers @samp{r0} through @samp{r13}, @samp{sp},
46698 @samp{lr}, @samp{pc}, and @samp{cpsr}.
46700 For M-profile targets (e.g.@: Cortex-M3), the @samp{org.gnu.gdb.arm.core}
46701 feature is replaced by @samp{org.gnu.gdb.arm.m-profile}.  It should contain
46702 registers @samp{r0} through @samp{r13}, @samp{sp}, @samp{lr}, @samp{pc},
46703 and @samp{xpsr}.
46705 The @samp{org.gnu.gdb.arm.fpa} feature is optional.  If present, it
46706 should contain registers @samp{f0} through @samp{f7} and @samp{fps}.
46708 The @samp{org.gnu.gdb.arm.m-profile-mve} feature is optional.  If present, it
46709 must contain register @samp{vpr}.
46711 If the @samp{org.gnu.gdb.arm.m-profile-mve} feature is available, @value{GDBN}
46712 will synthesize the @samp{p0} pseudo register from @samp{vpr} contents.
46714 If the @samp{org.gnu.gdb.arm.vfp} feature is available alongside the
46715 @samp{org.gnu.gdb.arm.m-profile-mve} feature, @value{GDBN} will
46716 synthesize the @samp{q} pseudo registers from @samp{d} register
46717 contents.
46719 The @samp{org.gnu.gdb.xscale.iwmmxt} feature is optional.  If present,
46720 it should contain at least registers @samp{wR0} through @samp{wR15} and
46721 @samp{wCGR0} through @samp{wCGR3}.  The @samp{wCID}, @samp{wCon},
46722 @samp{wCSSF}, and @samp{wCASF} registers are optional.
46724 The @samp{org.gnu.gdb.arm.vfp} feature is optional.  If present, it
46725 should contain at least registers @samp{d0} through @samp{d15}.  If
46726 they are present, @samp{d16} through @samp{d31} should also be included.
46727 @value{GDBN} will synthesize the single-precision registers from
46728 halves of the double-precision registers.
46730 The @samp{org.gnu.gdb.arm.neon} feature is optional.  It does not
46731 need to contain registers; it instructs @value{GDBN} to display the
46732 VFP double-precision registers as vectors and to synthesize the
46733 quad-precision registers from pairs of double-precision registers.
46734 If this feature is present, @samp{org.gnu.gdb.arm.vfp} must also
46735 be present and include 32 double-precision registers.
46737 The @samp{org.gnu.gdb.arm.m-profile-pacbti} feature is optional, and
46738 acknowledges support for the ARMv8.1-m PACBTI extensions.  @value{GDBN}
46739 will track return address signing states and will decorate backtraces using
46740 the [PAC] marker, similar to AArch64's PAC extension.
46741 @xref{AArch64 PAC}.
46743 @node i386 Features
46744 @subsection i386 Features
46745 @cindex target descriptions, i386 features
46747 The @samp{org.gnu.gdb.i386.core} feature is required for i386/amd64
46748 targets.  It should describe the following registers:
46750 @itemize @minus
46751 @item
46752 @samp{eax} through @samp{edi} plus @samp{eip} for i386
46753 @item
46754 @samp{rax} through @samp{r15} plus @samp{rip} for amd64
46755 @item
46756 @samp{eflags}, @samp{cs}, @samp{ss}, @samp{ds}, @samp{es},
46757 @samp{fs}, @samp{gs}
46758 @item 
46759 @samp{st0} through @samp{st7}
46760 @item 
46761 @samp{fctrl}, @samp{fstat}, @samp{ftag}, @samp{fiseg}, @samp{fioff},
46762 @samp{foseg}, @samp{fooff} and @samp{fop}
46763 @end itemize
46765 The register sets may be different, depending on the target.
46767 The @samp{org.gnu.gdb.i386.sse} feature is optional.  It should
46768 describe registers:
46770 @itemize @minus
46771 @item
46772 @samp{xmm0} through @samp{xmm7} for i386
46773 @item
46774 @samp{xmm0} through @samp{xmm15} for amd64
46775 @item 
46776 @samp{mxcsr}
46777 @end itemize
46779 The @samp{org.gnu.gdb.i386.avx} feature is optional and requires the
46780 @samp{org.gnu.gdb.i386.sse} feature.  It should
46781 describe the upper 128 bits of @sc{ymm} registers:
46783 @itemize @minus
46784 @item
46785 @samp{ymm0h} through @samp{ymm7h} for i386
46786 @item
46787 @samp{ymm0h} through @samp{ymm15h} for amd64
46788 @end itemize
46790 The @samp{org.gnu.gdb.i386.mpx} is an optional feature representing Intel
46791 Memory Protection Extension (MPX).  It should describe the following registers:
46793 @itemize @minus
46794 @item
46795 @samp{bnd0raw} through @samp{bnd3raw} for i386 and amd64.
46796 @item
46797 @samp{bndcfgu} and @samp{bndstatus} for i386 and amd64.
46798 @end itemize
46800 The @samp{org.gnu.gdb.i386.linux} feature is optional.  It should
46801 describe a single register, @samp{orig_eax}.
46803 The @samp{org.gnu.gdb.i386.segments} feature is optional.  It should
46804 describe two system registers: @samp{fs_base} and @samp{gs_base}.
46806 The @samp{org.gnu.gdb.i386.avx512} feature is optional and requires the
46807 @samp{org.gnu.gdb.i386.avx} feature.  It should
46808 describe additional @sc{xmm} registers:
46810 @itemize @minus
46811 @item
46812 @samp{xmm16h} through @samp{xmm31h}, only valid for amd64.
46813 @end itemize
46815 It should describe the upper 128 bits of additional @sc{ymm} registers:
46817 @itemize @minus
46818 @item
46819 @samp{ymm16h} through @samp{ymm31h}, only valid for amd64.
46820 @end itemize
46822 It should
46823 describe the upper 256 bits of @sc{zmm} registers:
46825 @itemize @minus
46826 @item
46827 @samp{zmm0h} through @samp{zmm7h} for i386.
46828 @item
46829 @samp{zmm0h} through @samp{zmm15h} for amd64.
46830 @end itemize
46832 It should
46833 describe the additional @sc{zmm} registers:
46835 @itemize @minus
46836 @item
46837 @samp{zmm16h} through @samp{zmm31h}, only valid for amd64.
46838 @end itemize
46840 The @samp{org.gnu.gdb.i386.pkeys} feature is optional.  It should
46841 describe a single register, @samp{pkru}.  It is a 32-bit register
46842 valid for i386 and amd64.
46844 @node LoongArch Features
46845 @subsection LoongArch Features
46846 @cindex target descriptions, LoongArch Features
46848 The @samp{org.gnu.gdb.loongarch.base} feature is required for LoongArch
46849 targets.  It should contain the registers @samp{r0} through @samp{r31},
46850 @samp{pc}, and @samp{badv}.  Either the architectural names (@samp{r0},
46851 @samp{r1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra}, etc).
46853 @node MicroBlaze Features
46854 @subsection MicroBlaze Features
46855 @cindex target descriptions, MicroBlaze features
46857 The @samp{org.gnu.gdb.microblaze.core} feature is required for MicroBlaze
46858 targets.  It should contain registers @samp{r0} through @samp{r31},
46859 @samp{rpc}, @samp{rmsr}, @samp{rear}, @samp{resr}, @samp{rfsr}, @samp{rbtr},
46860 @samp{rpvr}, @samp{rpvr1} through @samp{rpvr11}, @samp{redr}, @samp{rpid},
46861 @samp{rzpr}, @samp{rtlbx}, @samp{rtlbsx}, @samp{rtlblo}, and @samp{rtlbhi}.
46863 The @samp{org.gnu.gdb.microblaze.stack-protect} feature is optional.
46864 If present, it should contain registers @samp{rshr} and @samp{rslr}
46866 @node MIPS Features
46867 @subsection @acronym{MIPS} Features
46868 @cindex target descriptions, @acronym{MIPS} features
46870 The @samp{org.gnu.gdb.mips.cpu} feature is required for @acronym{MIPS} targets.
46871 It should contain registers @samp{r0} through @samp{r31}, @samp{lo},
46872 @samp{hi}, and @samp{pc}.  They may be 32-bit or 64-bit depending
46873 on the target.
46875 The @samp{org.gnu.gdb.mips.cp0} feature is also required.  It should
46876 contain at least the @samp{status}, @samp{badvaddr}, and @samp{cause}
46877 registers.  They may be 32-bit or 64-bit depending on the target.
46879 The @samp{org.gnu.gdb.mips.fpu} feature is currently required, though
46880 it may be optional in a future version of @value{GDBN}.  It should
46881 contain registers @samp{f0} through @samp{f31}, @samp{fcsr}, and
46882 @samp{fir}.  They may be 32-bit or 64-bit depending on the target.
46884 The @samp{org.gnu.gdb.mips.dsp} feature is optional.  It should
46885 contain registers @samp{hi1} through @samp{hi3}, @samp{lo1} through
46886 @samp{lo3}, and @samp{dspctl}.  The @samp{dspctl} register should
46887 be 32-bit and the rest may be 32-bit or 64-bit depending on the target.
46889 The @samp{org.gnu.gdb.mips.linux} feature is optional.  It should
46890 contain a single register, @samp{restart}, which is used by the
46891 Linux kernel to control restartable syscalls.
46893 @node M68K Features
46894 @subsection M68K Features
46895 @cindex target descriptions, M68K features
46897 @table @code
46898 @item @samp{org.gnu.gdb.m68k.core}
46899 @itemx @samp{org.gnu.gdb.coldfire.core}
46900 @itemx @samp{org.gnu.gdb.fido.core}
46901 One of those features must be always present. 
46902 The feature that is present determines which flavor of m68k is
46903 used.  The feature that is present should contain registers
46904 @samp{d0} through @samp{d7}, @samp{a0} through @samp{a5}, @samp{fp},
46905 @samp{sp}, @samp{ps} and @samp{pc}.
46907 @item @samp{org.gnu.gdb.coldfire.fp}
46908 This feature is optional.  If present, it should contain registers
46909 @samp{fp0} through @samp{fp7}, @samp{fpcontrol}, @samp{fpstatus} and
46910 @samp{fpiaddr}.
46912 Note that, despite the fact that this feature's name says
46913 @samp{coldfire}, it is used to describe any floating point registers.
46914 The size of the registers must match the main m68k flavor; so, for
46915 example, if the primary feature is reported as @samp{coldfire}, then
46916 64-bit floating point registers are required.
46917 @end table
46919 @node NDS32 Features
46920 @subsection NDS32 Features
46921 @cindex target descriptions, NDS32 features
46923 The @samp{org.gnu.gdb.nds32.core} feature is required for NDS32
46924 targets.  It should contain at least registers @samp{r0} through
46925 @samp{r10}, @samp{r15}, @samp{fp}, @samp{gp}, @samp{lp}, @samp{sp},
46926 and @samp{pc}.
46928 The @samp{org.gnu.gdb.nds32.fpu} feature is optional.  If present,
46929 it should contain 64-bit double-precision floating-point registers
46930 @samp{fd0} through @emph{fdN}, which should be @samp{fd3}, @samp{fd7},
46931 @samp{fd15}, or @samp{fd31} based on the FPU configuration implemented.
46933 @emph{Note:} The first sixteen 64-bit double-precision floating-point
46934 registers are overlapped with the thirty-two 32-bit single-precision
46935 floating-point registers.  The 32-bit single-precision registers, if
46936 not being listed explicitly, will be synthesized from halves of the
46937 overlapping 64-bit double-precision registers.  Listing 32-bit
46938 single-precision registers explicitly is deprecated, and the
46939 support to it could be totally removed some day.
46941 @node Nios II Features
46942 @subsection Nios II Features
46943 @cindex target descriptions, Nios II features
46945 The @samp{org.gnu.gdb.nios2.cpu} feature is required for Nios II
46946 targets.  It should contain the 32 core registers (@samp{zero},
46947 @samp{at}, @samp{r2} through @samp{r23}, @samp{et} through @samp{ra}),
46948 @samp{pc}, and the 16 control registers (@samp{status} through
46949 @samp{mpuacc}).
46951 @node OpenRISC 1000 Features
46952 @subsection Openrisc 1000 Features
46953 @cindex target descriptions, OpenRISC 1000 features
46955 The @samp{org.gnu.gdb.or1k.group0} feature is required for OpenRISC 1000
46956 targets.  It should contain the 32 general purpose registers (@samp{r0}
46957 through @samp{r31}), @samp{ppc}, @samp{npc} and @samp{sr}.
46959 @node PowerPC Features
46960 @subsection PowerPC Features
46961 @cindex target descriptions, PowerPC features
46963 The @samp{org.gnu.gdb.power.core} feature is required for PowerPC
46964 targets.  It should contain registers @samp{r0} through @samp{r31},
46965 @samp{pc}, @samp{msr}, @samp{cr}, @samp{lr}, @samp{ctr}, and
46966 @samp{xer}.  They may be 32-bit or 64-bit depending on the target.
46968 The @samp{org.gnu.gdb.power.fpu} feature is optional.  It should
46969 contain registers @samp{f0} through @samp{f31} and @samp{fpscr}.
46971 The @samp{org.gnu.gdb.power.altivec} feature is optional.  It should
46972 contain registers @samp{vr0} through @samp{vr31}, @samp{vscr}, and
46973 @samp{vrsave}.  @value{GDBN} will define pseudo-registers @samp{v0}
46974 through @samp{v31} as aliases for the corresponding @samp{vrX}
46975 registers.
46977 The @samp{org.gnu.gdb.power.vsx} feature is optional.  It should
46978 contain registers @samp{vs0h} through @samp{vs31h}.  @value{GDBN} will
46979 combine these registers with the floating point registers (@samp{f0}
46980 through @samp{f31}) and the altivec registers (@samp{vr0} through
46981 @samp{vr31}) to present the 128-bit wide registers @samp{vs0} through
46982 @samp{vs63}, the set of vector-scalar registers for POWER7.
46983 Therefore, this feature requires both @samp{org.gnu.gdb.power.fpu} and
46984 @samp{org.gnu.gdb.power.altivec}.
46986 The @samp{org.gnu.gdb.power.spe} feature is optional.  It should
46987 contain registers @samp{ev0h} through @samp{ev31h}, @samp{acc}, and
46988 @samp{spefscr}.  SPE targets should provide 32-bit registers in
46989 @samp{org.gnu.gdb.power.core} and provide the upper halves in
46990 @samp{ev0h} through @samp{ev31h}.  @value{GDBN} will combine
46991 these to present registers @samp{ev0} through @samp{ev31} to the
46992 user.
46994 The @samp{org.gnu.gdb.power.ppr} feature is optional.  It should
46995 contain the 64-bit register @samp{ppr}.
46997 The @samp{org.gnu.gdb.power.dscr} feature is optional.  It should
46998 contain the 64-bit register @samp{dscr}.
47000 The @samp{org.gnu.gdb.power.tar} feature is optional.  It should
47001 contain the 64-bit register @samp{tar}.
47003 The @samp{org.gnu.gdb.power.ebb} feature is optional.  It should
47004 contain registers @samp{bescr}, @samp{ebbhr} and @samp{ebbrr}, all
47005 64-bit wide.
47007 The @samp{org.gnu.gdb.power.linux.pmu} feature is optional.  It should
47008 contain registers @samp{mmcr0}, @samp{mmcr2}, @samp{siar}, @samp{sdar}
47009 and @samp{sier}, all 64-bit wide.  This is the subset of the isa 2.07
47010 server PMU registers provided by @sc{gnu}/Linux.
47012 The @samp{org.gnu.gdb.power.htm.spr} feature is optional.  It should
47013 contain registers @samp{tfhar}, @samp{texasr} and @samp{tfiar}, all
47014 64-bit wide.
47016 The @samp{org.gnu.gdb.power.htm.core} feature is optional.  It should
47017 contain the checkpointed general-purpose registers @samp{cr0} through
47018 @samp{cr31}, as well as the checkpointed registers @samp{clr} and
47019 @samp{cctr}.  These registers may all be either 32-bit or 64-bit
47020 depending on the target.  It should also contain the checkpointed
47021 registers @samp{ccr} and @samp{cxer}, which should both be 32-bit
47022 wide.
47024 The @samp{org.gnu.gdb.power.htm.fpu} feature is optional.  It should
47025 contain the checkpointed 64-bit floating-point registers @samp{cf0}
47026 through @samp{cf31}, as well as the checkpointed 64-bit register
47027 @samp{cfpscr}.
47029 The @samp{org.gnu.gdb.power.htm.altivec} feature is optional.  It
47030 should contain the checkpointed altivec registers @samp{cvr0} through
47031 @samp{cvr31}, all 128-bit wide.  It should also contain the
47032 checkpointed registers @samp{cvscr} and @samp{cvrsave}, both 32-bit
47033 wide.
47035 The @samp{org.gnu.gdb.power.htm.vsx} feature is optional.  It should
47036 contain registers @samp{cvs0h} through @samp{cvs31h}.  @value{GDBN}
47037 will combine these registers with the checkpointed floating point
47038 registers (@samp{cf0} through @samp{cf31}) and the checkpointed
47039 altivec registers (@samp{cvr0} through @samp{cvr31}) to present the
47040 128-bit wide checkpointed vector-scalar registers @samp{cvs0} through
47041 @samp{cvs63}.  Therefore, this feature requires both
47042 @samp{org.gnu.gdb.power.htm.altivec} and
47043 @samp{org.gnu.gdb.power.htm.fpu}.
47045 The @samp{org.gnu.gdb.power.htm.ppr} feature is optional.  It should
47046 contain the 64-bit checkpointed register @samp{cppr}.
47048 The @samp{org.gnu.gdb.power.htm.dscr} feature is optional.  It should
47049 contain the 64-bit checkpointed register @samp{cdscr}.
47051 The @samp{org.gnu.gdb.power.htm.tar} feature is optional.  It should
47052 contain the 64-bit checkpointed register @samp{ctar}.
47055 @node RISC-V Features
47056 @subsection RISC-V Features
47057 @cindex target descriptions, RISC-V Features
47059 The @samp{org.gnu.gdb.riscv.cpu} feature is required for RISC-V
47060 targets.  It should contain the registers @samp{x0} through
47061 @samp{x31}, and @samp{pc}.  Either the architectural names (@samp{x0},
47062 @samp{x1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra},
47063 etc).
47065 The @samp{org.gnu.gdb.riscv.fpu} feature is optional.  If present, it
47066 should contain registers @samp{f0} through @samp{f31}, @samp{fflags},
47067 @samp{frm}, and @samp{fcsr}.  As with the cpu feature, either the
47068 architectural register names, or the ABI names can be used.
47070 The @samp{org.gnu.gdb.riscv.virtual} feature is optional.  If present,
47071 it should contain registers that are not backed by real registers on
47072 the target, but are instead virtual, where the register value is
47073 derived from other target state.  In many ways these are like
47074 @value{GDBN}s pseudo-registers, except implemented by the target.
47075 Currently the only register expected in this set is the one byte
47076 @samp{priv} register that contains the target's privilege level in the
47077 least significant two bits.
47079 The @samp{org.gnu.gdb.riscv.csr} feature is optional.  If present, it
47080 should contain all of the target's standard CSRs.  Standard CSRs are
47081 those defined in the RISC-V specification documents.  There is some
47082 overlap between this feature and the fpu feature; the @samp{fflags},
47083 @samp{frm}, and @samp{fcsr} registers could be in either feature.  The
47084 expectation is that these registers will be in the fpu feature if the
47085 target has floating point hardware, but can be moved into the csr
47086 feature if the target has the floating point control registers, but no
47087 other floating point hardware.
47089 The @samp{org.gnu.gdb.riscv.vector} feature is optional.  If present,
47090 it should contain registers @samp{v0} through @samp{v31}, all of which
47091 must be the same size.  These requirements are based on the v0.10
47092 draft vector extension, as the vector extension is not yet final.  In
47093 the event that the register set of the vector extension changes for
47094 the final specification, the requirements given here could change for
47095 future releases of @value{GDBN}.
47097 @node RX Features
47098 @subsection RX Features
47099 @cindex target descriptions, RX Features
47101 The @samp{org.gnu.gdb.rx.core} feature is required for RX
47102 targets.  It should contain the registers @samp{r0} through
47103 @samp{r15}, @samp{usp}, @samp{isp}, @samp{psw}, @samp{pc}, @samp{intb},
47104 @samp{bpsw}, @samp{bpc}, @samp{fintv}, @samp{fpsw}, and @samp{acc}.
47106 @node S/390 and System z Features
47107 @subsection S/390 and System z Features
47108 @cindex target descriptions, S/390 features
47109 @cindex target descriptions, System z features
47111 The @samp{org.gnu.gdb.s390.core} feature is required for S/390 and
47112 System z targets.  It should contain the PSW and the 16 general
47113 registers.  In particular, System z targets should provide the 64-bit
47114 registers @samp{pswm}, @samp{pswa}, and @samp{r0} through @samp{r15}.
47115 S/390 targets should provide the 32-bit versions of these registers.
47116 A System z target that runs in 31-bit addressing mode should provide
47117 32-bit versions of @samp{pswm} and @samp{pswa}, as well as the general
47118 register's upper halves @samp{r0h} through @samp{r15h}, and their
47119 lower halves @samp{r0l} through @samp{r15l}.
47121 The @samp{org.gnu.gdb.s390.fpr} feature is required.  It should
47122 contain the 64-bit registers @samp{f0} through @samp{f15}, and
47123 @samp{fpc}.
47125 The @samp{org.gnu.gdb.s390.acr} feature is required.  It should
47126 contain the 32-bit registers @samp{acr0} through @samp{acr15}.
47128 The @samp{org.gnu.gdb.s390.linux} feature is optional.  It should
47129 contain the register @samp{orig_r2}, which is 64-bit wide on System z
47130 targets and 32-bit otherwise.  In addition, the feature may contain
47131 the @samp{last_break} register, whose width depends on the addressing
47132 mode, as well as the @samp{system_call} register, which is always
47133 32-bit wide.
47135 The @samp{org.gnu.gdb.s390.tdb} feature is optional.  It should
47136 contain the 64-bit registers @samp{tdb0}, @samp{tac}, @samp{tct},
47137 @samp{atia}, and @samp{tr0} through @samp{tr15}.
47139 The @samp{org.gnu.gdb.s390.vx} feature is optional.  It should contain
47140 64-bit wide registers @samp{v0l} through @samp{v15l}, which will be
47141 combined by @value{GDBN} with the floating point registers @samp{f0}
47142 through @samp{f15} to present the 128-bit wide vector registers
47143 @samp{v0} through @samp{v15}.  In addition, this feature should
47144 contain the 128-bit wide vector registers @samp{v16} through
47145 @samp{v31}.
47147 The @samp{org.gnu.gdb.s390.gs} feature is optional.  It should contain
47148 the 64-bit wide guarded-storage-control registers @samp{gsd},
47149 @samp{gssm}, and @samp{gsepla}.
47151 The @samp{org.gnu.gdb.s390.gsbc} feature is optional.  It should contain
47152 the 64-bit wide guarded-storage broadcast control registers
47153 @samp{bc_gsd}, @samp{bc_gssm}, and @samp{bc_gsepla}.
47155 @node Sparc Features
47156 @subsection Sparc Features
47157 @cindex target descriptions, sparc32 features
47158 @cindex target descriptions, sparc64 features
47159 The @samp{org.gnu.gdb.sparc.cpu} feature is required for sparc32/sparc64
47160 targets.  It should describe the following registers:
47162 @itemize @minus
47163 @item
47164 @samp{g0} through @samp{g7}
47165 @item
47166 @samp{o0} through @samp{o7}
47167 @item
47168 @samp{l0} through @samp{l7}
47169 @item
47170 @samp{i0} through @samp{i7}
47171 @end itemize
47173 They may be 32-bit or 64-bit depending on the target.
47175 Also the @samp{org.gnu.gdb.sparc.fpu} feature is required for sparc32/sparc64
47176 targets.  It should describe the following registers:
47178 @itemize @minus
47179 @item
47180 @samp{f0} through @samp{f31}
47181 @item
47182 @samp{f32} through @samp{f62} for sparc64
47183 @end itemize
47185 The @samp{org.gnu.gdb.sparc.cp0} feature is required for sparc32/sparc64
47186 targets.  It should describe the following registers:
47188 @itemize @minus
47189 @item
47190 @samp{y}, @samp{psr}, @samp{wim}, @samp{tbr}, @samp{pc}, @samp{npc},
47191 @samp{fsr}, and @samp{csr} for sparc32
47192 @item
47193 @samp{pc}, @samp{npc}, @samp{state}, @samp{fsr}, @samp{fprs}, and @samp{y}
47194 for sparc64
47195 @end itemize
47197 @node TIC6x Features
47198 @subsection TMS320C6x Features
47199 @cindex target descriptions, TIC6x features
47200 @cindex target descriptions, TMS320C6x features
47201 The @samp{org.gnu.gdb.tic6x.core} feature is required for TMS320C6x
47202 targets.  It should contain registers @samp{A0} through @samp{A15},
47203 registers @samp{B0} through @samp{B15}, @samp{CSR} and @samp{PC}.
47205 The @samp{org.gnu.gdb.tic6x.gp} feature is optional.  It should
47206 contain registers @samp{A16} through @samp{A31} and @samp{B16}
47207 through @samp{B31}.
47209 The @samp{org.gnu.gdb.tic6x.c6xp} feature is optional.  It should
47210 contain registers @samp{TSR}, @samp{ILC} and @samp{RILC}.
47212 @node Operating System Information
47213 @appendix Operating System Information
47214 @cindex operating system information
47216 Users of @value{GDBN} often wish to obtain information about the state of
47217 the operating system running on the target---for example the list of
47218 processes, or the list of open files.  This section describes the
47219 mechanism that makes it possible.  This mechanism is similar to the 
47220 target features mechanism (@pxref{Target Descriptions}), but focuses
47221 on a different aspect of target.
47223 Operating system information is retrieved from the target via the
47224 remote protocol, using @samp{qXfer} requests (@pxref{qXfer osdata
47225 read}).  The object name in the request should be @samp{osdata}, and
47226 the @var{annex} identifies the data to be fetched.
47228 @menu
47229 * Process list::
47230 @end menu
47232 @node Process list
47233 @appendixsection Process list
47234 @cindex operating system information, process list
47236 When requesting the process list, the @var{annex} field in the
47237 @samp{qXfer} request should be @samp{processes}.  The returned data is
47238 an XML document.  The formal syntax of this document is defined in
47239 @file{gdb/features/osdata.dtd}.
47241 An example document is:
47243 @smallexample
47244 <?xml version="1.0"?>
47245 <!DOCTYPE target SYSTEM "osdata.dtd">
47246 <osdata type="processes">
47247   <item>
47248     <column name="pid">1</column>
47249     <column name="user">root</column>
47250     <column name="command">/sbin/init</column>
47251     <column name="cores">1,2,3</column>
47252   </item>
47253 </osdata>
47254 @end smallexample
47256 Each item should include a column whose name is @samp{pid}.  The value
47257 of that column should identify the process on the target.  The
47258 @samp{user} and @samp{command} columns are optional, and will be
47259 displayed by @value{GDBN}.  The @samp{cores} column, if present,
47260 should contain a comma-separated list of cores that this process
47261 is running on.  Target may provide additional columns,
47262 which @value{GDBN} currently ignores.
47264 @node Trace File Format
47265 @appendix Trace File Format
47266 @cindex trace file format
47268 The trace file comes in three parts: a header, a textual description
47269 section, and a trace frame section with binary data.
47271 The header has the form @code{\x7fTRACE0\n}.  The first byte is
47272 @code{0x7f} so as to indicate that the file contains binary data,
47273 while the @code{0} is a version number that may have different values
47274 in the future.
47276 The description section consists of multiple lines of @sc{ascii} text
47277 separated by newline characters (@code{0xa}).  The lines may include a
47278 variety of optional descriptive or context-setting information, such
47279 as tracepoint definitions or register set size.  @value{GDBN} will
47280 ignore any line that it does not recognize.  An empty line marks the end
47281 of this section.
47283 @table @code
47284 @item R @var{size}
47285 Specifies the size of a register block in bytes.  This is equal to the
47286 size of a @code{g} packet payload in the remote protocol.  @var{size}
47287 is an ascii decimal number.  There should be only one such line in
47288 a single trace file.
47290 @item status @var{status}
47291 Trace status.  @var{status} has the same format as a @code{qTStatus}
47292 remote packet reply.  There should be only one such line in a single trace
47293 file.
47295 @item tp @var{payload}
47296 Tracepoint definition.  The @var{payload} has the same format as
47297 @code{qTfP}/@code{qTsP} remote packet reply payload.  A single tracepoint
47298 may take multiple lines of definition, corresponding to the multiple
47299 reply packets.
47301 @item tsv @var{payload}
47302 Trace state variable definition.  The @var{payload} has the same format as
47303 @code{qTfV}/@code{qTsV} remote packet reply payload.  A single variable
47304 may take multiple lines of definition, corresponding to the multiple
47305 reply packets.
47307 @item tdesc @var{payload}
47308 Target description in XML format.  The @var{payload} is a single line of
47309 the XML file.  All such lines should be concatenated together to get
47310 the original XML file.  This file is in the same format as @code{qXfer}
47311 @code{features} payload, and corresponds to the main @code{target.xml}
47312 file.  Includes are not allowed.
47314 @end table
47316 The trace frame section consists of a number of consecutive frames.
47317 Each frame begins with a two-byte tracepoint number, followed by a
47318 four-byte size giving the amount of data in the frame.  The data in
47319 the frame consists of a number of blocks, each introduced by a
47320 character indicating its type (at least register, memory, and trace
47321 state variable).  The data in this section is raw binary, not a
47322 hexadecimal or other encoding; its endianness matches the target's
47323 endianness.
47325 @c FIXME bi-arch may require endianness/arch info in description section
47327 @table @code
47328 @item R @var{bytes}
47329 Register block.  The number and ordering of bytes matches that of a
47330 @code{g} packet in the remote protocol.  Note that these are the
47331 actual bytes, in target order, not a hexadecimal encoding.
47333 @item M @var{address} @var{length} @var{bytes}...
47334 Memory block.  This is a contiguous block of memory, at the 8-byte
47335 address @var{address}, with a 2-byte length @var{length}, followed by
47336 @var{length} bytes.
47338 @item V @var{number} @var{value}
47339 Trace state variable block.  This records the 8-byte signed value
47340 @var{value} of trace state variable numbered @var{number}.
47342 @end table
47344 Future enhancements of the trace file format may include additional types
47345 of blocks.
47347 @node Index Section Format
47348 @appendix @code{.gdb_index} section format
47349 @cindex .gdb_index section format
47350 @cindex index section format
47352 This section documents the index section that is created by @code{save
47353 gdb-index} (@pxref{Index Files}).  The index section is
47354 DWARF-specific; some knowledge of DWARF is assumed in this
47355 description.
47357 The mapped index file format is designed to be directly
47358 @code{mmap}able on any architecture.  In most cases, a datum is
47359 represented using a little-endian 32-bit integer value, called an
47360 @code{offset_type}.  Big endian machines must byte-swap the values
47361 before using them.  Exceptions to this rule are noted.  The data is
47362 laid out such that alignment is always respected.
47364 A mapped index consists of several areas, laid out in order.
47366 @enumerate
47367 @item
47368 The file header.  This is a sequence of values, of @code{offset_type}
47369 unless otherwise noted:
47371 @enumerate
47372 @item
47373 The version number, currently 8.  Versions 1, 2 and 3 are obsolete.
47374 Version 4 uses a different hashing function from versions 5 and 6.
47375 Version 6 includes symbols for inlined functions, whereas versions 4
47376 and 5 do not.  Version 7 adds attributes to the CU indices in the
47377 symbol table.  Version 8 specifies that symbols from DWARF type units
47378 (@samp{DW_TAG_type_unit}) refer to the type unit's symbol table and not the
47379 compilation unit (@samp{DW_TAG_comp_unit}) using the type.
47381 @value{GDBN} will only read version 4, 5, or 6 indices
47382 by specifying @code{set use-deprecated-index-sections on}.
47383 GDB has a workaround for potentially broken version 7 indices so it is
47384 currently not flagged as deprecated.
47386 @item
47387 The offset, from the start of the file, of the CU list.
47389 @item
47390 The offset, from the start of the file, of the types CU list.  Note
47391 that this area can be empty, in which case this offset will be equal
47392 to the next offset.
47394 @item
47395 The offset, from the start of the file, of the address area.
47397 @item
47398 The offset, from the start of the file, of the symbol table.
47400 @item
47401 The offset, from the start of the file, of the constant pool.
47402 @end enumerate
47404 @item
47405 The CU list.  This is a sequence of pairs of 64-bit little-endian
47406 values, sorted by the CU offset.  The first element in each pair is
47407 the offset of a CU in the @code{.debug_info} section.  The second
47408 element in each pair is the length of that CU.  References to a CU
47409 elsewhere in the map are done using a CU index, which is just the
47410 0-based index into this table.  Note that if there are type CUs, then
47411 conceptually CUs and type CUs form a single list for the purposes of
47412 CU indices.
47414 @item
47415 The types CU list.  This is a sequence of triplets of 64-bit
47416 little-endian values.  In a triplet, the first value is the CU offset,
47417 the second value is the type offset in the CU, and the third value is
47418 the type signature.  The types CU list is not sorted.
47420 @item
47421 The address area.  The address area consists of a sequence of address
47422 entries.  Each address entry has three elements:
47424 @enumerate
47425 @item
47426 The low address.  This is a 64-bit little-endian value.
47428 @item
47429 The high address.  This is a 64-bit little-endian value.  Like
47430 @code{DW_AT_high_pc}, the value is one byte beyond the end.
47432 @item
47433 The CU index.  This is an @code{offset_type} value.
47434 @end enumerate
47436 @item
47437 The symbol table.  This is an open-addressed hash table.  The size of
47438 the hash table is always a power of 2.
47440 Each slot in the hash table consists of a pair of @code{offset_type}
47441 values.  The first value is the offset of the symbol's name in the
47442 constant pool.  The second value is the offset of the CU vector in the
47443 constant pool.
47445 If both values are 0, then this slot in the hash table is empty.  This
47446 is ok because while 0 is a valid constant pool index, it cannot be a
47447 valid index for both a string and a CU vector.
47449 The hash value for a table entry is computed by applying an
47450 iterative hash function to the symbol's name.  Starting with an
47451 initial value of @code{r = 0}, each (unsigned) character @samp{c} in
47452 the string is incorporated into the hash using the formula depending on the
47453 index version:
47455 @table @asis
47456 @item Version 4
47457 The formula is @code{r = r * 67 + c - 113}.
47459 @item Versions 5 to 7
47460 The formula is @code{r = r * 67 + tolower (c) - 113}.
47461 @end table
47463 The terminating @samp{\0} is not incorporated into the hash.
47465 The step size used in the hash table is computed via
47466 @code{((hash * 17) & (size - 1)) | 1}, where @samp{hash} is the hash
47467 value, and @samp{size} is the size of the hash table.  The step size
47468 is used to find the next candidate slot when handling a hash
47469 collision.
47471 The names of C@t{++} symbols in the hash table are canonicalized.  We
47472 don't currently have a simple description of the canonicalization
47473 algorithm; if you intend to create new index sections, you must read
47474 the code.
47476 @item
47477 The constant pool.  This is simply a bunch of bytes.  It is organized
47478 so that alignment is correct: CU vectors are stored first, followed by
47479 strings.
47481 A CU vector in the constant pool is a sequence of @code{offset_type}
47482 values.  The first value is the number of CU indices in the vector.
47483 Each subsequent value is the index and symbol attributes of a CU in
47484 the CU list.  This element in the hash table is used to indicate which
47485 CUs define the symbol and how the symbol is used.
47486 See below for the format of each CU index+attributes entry.
47488 A string in the constant pool is zero-terminated.
47489 @end enumerate
47491 Attributes were added to CU index values in @code{.gdb_index} version 7.
47492 If a symbol has multiple uses within a CU then there is one
47493 CU index+attributes value for each use.
47495 The format of each CU index+attributes entry is as follows
47496 (bit 0 = LSB):
47498 @table @asis
47500 @item Bits 0-23
47501 This is the index of the CU in the CU list.
47502 @item Bits 24-27
47503 These bits are reserved for future purposes and must be zero.
47504 @item Bits 28-30
47505 The kind of the symbol in the CU.
47507 @table @asis
47508 @item 0
47509 This value is reserved and should not be used.
47510 By reserving zero the full @code{offset_type} value is backwards compatible
47511 with previous versions of the index.
47512 @item 1
47513 The symbol is a type.
47514 @item 2
47515 The symbol is a variable or an enum value.
47516 @item 3
47517 The symbol is a function.
47518 @item 4
47519 Any other kind of symbol.
47520 @item 5,6,7
47521 These values are reserved.
47522 @end table
47524 @item Bit 31
47525 This bit is zero if the value is global and one if it is static.
47527 The determination of whether a symbol is global or static is complicated.
47528 The authorative reference is the file @file{dwarf2read.c} in
47529 @value{GDBN} sources.
47531 @end table
47533 This pseudo-code describes the computation of a symbol's kind and
47534 global/static attributes in the index.
47536 @smallexample
47537 is_external = get_attribute (die, DW_AT_external);
47538 language = get_attribute (cu_die, DW_AT_language);
47539 switch (die->tag)
47540   @{
47541   case DW_TAG_typedef:
47542   case DW_TAG_base_type:
47543   case DW_TAG_subrange_type:
47544     kind = TYPE;
47545     is_static = 1;
47546     break;
47547   case DW_TAG_enumerator:
47548     kind = VARIABLE;
47549     is_static = language != CPLUS;
47550     break;
47551   case DW_TAG_subprogram:
47552     kind = FUNCTION;
47553     is_static = ! (is_external || language == ADA);
47554     break;
47555   case DW_TAG_constant:
47556     kind = VARIABLE;
47557     is_static = ! is_external;
47558     break;
47559   case DW_TAG_variable:
47560     kind = VARIABLE;
47561     is_static = ! is_external;
47562     break;
47563   case DW_TAG_namespace:
47564     kind = TYPE;
47565     is_static = 0;
47566     break;
47567   case DW_TAG_class_type:
47568   case DW_TAG_interface_type:
47569   case DW_TAG_structure_type:
47570   case DW_TAG_union_type:
47571   case DW_TAG_enumeration_type:
47572     kind = TYPE;
47573     is_static = language != CPLUS;
47574     break;
47575   default:
47576     assert (0);
47577   @}
47578 @end smallexample
47580 @node Debuginfod
47581 @appendix Download debugging resources with Debuginfod
47582 @cindex debuginfod
47584 @code{debuginfod} is an HTTP server for distributing ELF, DWARF and source
47585 files.
47587 With the @code{debuginfod} client library, @file{libdebuginfod}, @value{GDBN}
47588 can query servers using the build IDs associated with missing debug info,
47589 executables and source files in order to download them on demand.
47591 For instructions on building @value{GDBN} with @file{libdebuginfod},
47592 @pxref{Configure Options,,--with-debuginfod}.  @code{debuginfod} is packaged
47593 with @code{elfutils}, starting with version 0.178.  See
47594 @uref{https://sourceware.org/elfutils/Debuginfod.html} for more information
47595 regarding @code{debuginfod}.
47597 @menu
47598 * Debuginfod Settings::         Configuring debuginfod with @value{GDBN}
47599 @end menu
47601 @node Debuginfod Settings
47602 @section Debuginfod Settings
47604 @value{GDBN} provides the following commands for configuring @code{debuginfod}.
47606 @table @code
47607 @kindex set debuginfod enabled
47608 @anchor{set debuginfod enabled}
47609 @item set debuginfod enabled
47610 @itemx set debuginfod enabled on
47611 @cindex enable debuginfod
47612 @value{GDBN} will attempt to query @code{debuginfod} servers when missing debug
47613 info or source files.
47615 @item set debuginfod enabled off
47616 @value{GDBN} will not attempt to query @code{debuginfod} servers when missing
47617 debug info or source files.  By default, @code{debuginfod enabled} is set to
47618 @code{off} for non-interactive sessions.
47620 @item set debuginfod enabled ask
47621 @value{GDBN} will prompt the user to enable or disable @code{debuginfod} before
47622 attempting to perform the next query.  By default, @code{debuginfod enabled}
47623 is set to @code{ask} for interactive sessions.
47625 @kindex show debuginfod enabled
47626 @item show debuginfod enabled
47627 Display whether @code{debuginfod enabled} is set to @code{on}, @code{off} or
47628 @code{ask}.
47630 @kindex set debuginfod urls
47631 @cindex configure debuginfod URLs
47632 @item set debuginfod urls
47633 @itemx set debuginfod urls @var{urls}
47634 Set the space-separated list of URLs that @code{debuginfod} will attempt to
47635 query.  Only @code{http://}, @code{https://} and @code{file://} protocols
47636 should be used.  The default value of @code{debuginfod urls} is copied from
47637 the @var{DEBUGINFOD_URLS} environment variable.
47639 @kindex show debuginfod urls
47640 @item show debuginfod urls
47641 Display the list of URLs that @code{debuginfod} will attempt to query.
47643 @kindex set debuginfod verbose
47644 @cindex debuginfod verbosity
47645 @item set debuginfod verbose
47646 @itemx set debuginfod verbose @var{n}
47647 Enable or disable @code{debuginfod}-related output.  Use a non-zero value
47648 to enable and @code{0} to disable.  @code{debuginfod} output is shown by
47649 default.
47651 @kindex show debuginfod verbose
47652 @item show debuginfod verbose
47653 Show the current verbosity setting.
47655 @end table
47657 @node Man Pages
47658 @appendix Manual pages
47659 @cindex Man pages
47661 @menu
47662 * gdb man::                     The GNU Debugger man page
47663 * gdbserver man::               Remote Server for the GNU Debugger man page
47664 * gcore man::                   Generate a core file of a running program
47665 * gdbinit man::                 gdbinit scripts
47666 * gdb-add-index man::           Add index files to speed up GDB
47667 @end menu
47669 @node gdb man
47670 @heading gdb man
47672 @c man title gdb The GNU Debugger
47674 @c man begin SYNOPSIS gdb
47675 gdb [OPTIONS] [@var{prog}|@var{prog} @var{procID}|@var{prog} @var{core}]
47676 @c man end
47678 @c man begin DESCRIPTION gdb
47679 The purpose of a debugger such as @value{GDBN} is to allow you to see what is
47680 going on ``inside'' another program while it executes -- or what another
47681 program was doing at the moment it crashed.
47683 @value{GDBN} can do four main kinds of things (plus other things in support of
47684 these) to help you catch bugs in the act:
47686 @itemize @bullet
47687 @item
47688 Start your program, specifying anything that might affect its behavior.
47690 @item
47691 Make your program stop on specified conditions.
47693 @item
47694 Examine what has happened, when your program has stopped.
47696 @item
47697 Change things in your program, so you can experiment with correcting the
47698 effects of one bug and go on to learn about another.
47699 @end itemize
47701 You can use @value{GDBN} to debug programs written in C, C@t{++}, Fortran and
47702 Modula-2.
47704 @value{GDBN} is invoked with the shell command @code{gdb}.  Once started, it reads
47705 commands from the terminal until you tell it to exit with the @value{GDBN}
47706 command @code{quit} or @code{exit}.  You can get online help from @value{GDBN} itself
47707 by using the command @code{help}.
47709 You can run @code{gdb} with no arguments or options; but the most
47710 usual way to start @value{GDBN} is with one argument or two, specifying an
47711 executable program as the argument:
47713 @smallexample
47714 gdb program
47715 @end smallexample
47717 You can also start with both an executable program and a core file specified:
47719 @smallexample
47720 gdb program core
47721 @end smallexample
47723 You can, instead, specify a process ID as a second argument or use option
47724 @code{-p}, if you want to debug a running process:
47726 @smallexample
47727 gdb program 1234
47728 gdb -p 1234
47729 @end smallexample
47731 @noindent
47732 would attach @value{GDBN} to process @code{1234}.  With option @option{-p} you
47733 can omit the @var{program} filename.
47735 Here are some of the most frequently needed @value{GDBN} commands:
47737 @c pod2man highlights the right hand side of the @item lines.
47738 @table @env
47739 @item break [@var{file}:][@var{function}|@var{line}]
47740 Set a breakpoint at @var{function} or @var{line} (in @var{file}).
47742 @item run [@var{arglist}]
47743 Start your program (with @var{arglist}, if specified).
47745 @item bt
47746 Backtrace: display the program stack.
47748 @item print @var{expr}
47749 Display the value of an expression.
47751 @item c
47752 Continue running your program (after stopping, e.g.@: at a breakpoint).
47754 @item next
47755 Execute next program line (after stopping); step @emph{over} any
47756 function calls in the line.
47758 @item edit [@var{file}:]@var{function}
47759 look at the program line where it is presently stopped.
47761 @item list [@var{file}:]@var{function}
47762 type the text of the program in the vicinity of where it is presently stopped.
47764 @item step
47765 Execute next program line (after stopping); step @emph{into} any
47766 function calls in the line.
47768 @item help [@var{name}]
47769 Show information about @value{GDBN} command @var{name}, or general information
47770 about using @value{GDBN}.
47772 @item quit
47773 @itemx exit
47774 Exit from @value{GDBN}.
47775 @end table
47777 @ifset man
47778 For full details on @value{GDBN},
47779 see @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47780 by Richard M. Stallman and Roland H. Pesch.  The same text is available online
47781 as the @code{gdb} entry in the @code{info} program.
47782 @end ifset
47783 @c man end
47785 @c man begin OPTIONS gdb
47786 Any arguments other than options specify an executable
47787 file and core file (or process ID); that is, the first argument
47788 encountered with no
47789 associated option flag is equivalent to a @option{--se} option, and the second,
47790 if any, is equivalent to a @option{-c} option if it's the name of a file.
47791 Many options have
47792 both long and abbreviated forms; both are shown here.  The long forms are also
47793 recognized if you truncate them, so long as enough of the option is
47794 present to be unambiguous.
47796 The abbreviated forms are shown here with @samp{-} and long forms are shown
47797 with @samp{--} to reflect how they are shown in @option{--help}. However,
47798 @value{GDBN} recognizes all of the following conventions for most options:
47800 @table @code
47801 @item --option=@var{value}
47802 @item --option @var{value}
47803 @item -option=@var{value}
47804 @item -option @var{value}
47805 @item --o=@var{value}
47806 @item --o @var{value}
47807 @item -o=@var{value}
47808 @item -o @var{value}
47809 @end table
47811 All the options and command line arguments you give are processed
47812 in sequential order.  The order makes a difference when the @option{-x}
47813 option is used.
47815 @table @env
47816 @item --help
47817 @itemx -h
47818 List all options, with brief explanations.
47820 @item --symbols=@var{file}
47821 @itemx -s @var{file}
47822 Read symbol table from @var{file}.
47824 @item --write
47825 Enable writing into executable and core files.
47827 @item --exec=@var{file}
47828 @itemx -e @var{file}
47829 Use @var{file} as the executable file to execute when
47830 appropriate, and for examining pure data in conjunction with a core
47831 dump.
47833 @item --se=@var{file}
47834 Read symbol table from @var{file} and use it as the executable
47835 file.
47837 @item --core=@var{file}
47838 @itemx -c @var{file}
47839 Use @var{file} as a core dump to examine.
47841 @item --command=@var{file}
47842 @itemx -x @var{file}
47843 Execute @value{GDBN} commands from @var{file}.
47845 @item --eval-command=@var{command}
47846 @item -ex @var{command}
47847 Execute given @value{GDBN} @var{command}.
47849 @item --init-eval-command=@var{command}
47850 @item -iex
47851 Execute @value{GDBN} @var{command} before loading the inferior.
47853 @item --directory=@var{directory}
47854 @itemx -d @var{directory}
47855 Add @var{directory} to the path to search for source files.
47857 @item --nh
47858 Do not execute commands from @file{~/.config/gdb/gdbinit},
47859 @file{~/.gdbinit}, @file{~/.config/gdb/gdbearlyinit}, or
47860 @file{~/.gdbearlyinit}
47862 @item --nx
47863 @itemx -n
47864 Do not execute commands from any @file{.gdbinit} or
47865 @file{.gdbearlyinit} initialization files.
47867 @item --quiet
47868 @item --silent
47869 @itemx -q
47870 ``Quiet''.  Do not print the introductory and copyright messages.  These
47871 messages are also suppressed in batch mode.
47873 @item --batch
47874 Run in batch mode.  Exit with status @code{0} after processing all the command
47875 files specified with @option{-x} (and @file{.gdbinit}, if not inhibited).
47876 Exit with nonzero status if an error occurs in executing the @value{GDBN}
47877 commands in the command files.
47879 Batch mode may be useful for running @value{GDBN} as a filter, for example to
47880 download and run a program on another computer; in order to make this
47881 more useful, the message
47883 @smallexample
47884 Program exited normally.
47885 @end smallexample
47887 @noindent
47888 (which is ordinarily issued whenever a program running under @value{GDBN} control
47889 terminates) is not issued when running in batch mode.
47891 @item --batch-silent
47892 Run in batch mode, just like @option{--batch}, but totally silent.  All @value{GDBN}
47893 output is supressed (stderr is unaffected).  This is much quieter than
47894 @option{--silent} and would be useless for an interactive session.
47896 This is particularly useful when using targets that give @samp{Loading section}
47897 messages, for example.
47899 Note that targets that give their output via @value{GDBN}, as opposed to writing
47900 directly to @code{stdout}, will also be made silent.
47902 @item --args @var{prog} [@var{arglist}]
47903 Change interpretation of command line so that arguments following this
47904 option are passed as arguments to the inferior.  As an example, take
47905 the following command:
47907 @smallexample
47908 gdb ./a.out -q
47909 @end smallexample
47911 @noindent
47912 It would start @value{GDBN} with @option{-q}, not printing the introductory message.  On
47913 the other hand, using:
47915 @smallexample
47916 gdb --args ./a.out -q
47917 @end smallexample
47919 @noindent
47920 starts @value{GDBN} with the introductory message, and passes the option to the inferior.
47922 @item --pid=@var{pid}
47923 Attach @value{GDBN} to an already running program, with the PID @var{pid}.
47925 @item --tui
47926 Open the terminal user interface.
47928 @item --readnow
47929 Read all symbols from the given symfile on the first access.
47931 @item --readnever
47932 Do not read symbol files.
47934 @item --return-child-result
47935 @value{GDBN}'s exit code will be the same as the child's exit code.
47937 @item --configuration
47938 Print details about GDB configuration and then exit.
47940 @item --version
47941 Print version information and then exit.
47943 @item --cd=@var{directory}
47944 Run @value{GDBN} using @var{directory} as its working directory,
47945 instead of the current directory.
47947 @item --data-directory=@var{directory}
47948 @item -D
47949 Run @value{GDBN} using @var{directory} as its data directory.  The data
47950 directory is where @value{GDBN} searches for its auxiliary files.
47952 @item --fullname
47953 @itemx -f
47954 Emacs sets this option when it runs @value{GDBN} as a subprocess.  It tells
47955 @value{GDBN} to output the full file name and line number in a standard,
47956 recognizable fashion each time a stack frame is displayed (which
47957 includes each time the program stops).  This recognizable format looks
47958 like two @samp{\032} characters, followed by the file name, line number
47959 and character position separated by colons, and a newline.  The
47960 Emacs-to-@value{GDBN} interface program uses the two @samp{\032}
47961 characters as a signal to display the source code for the frame.
47963 @item -b @var{baudrate}
47964 Set the line speed (baud rate or bits per second) of any serial
47965 interface used by @value{GDBN} for remote debugging.
47967 @item -l @var{timeout}
47968 Set timeout, in seconds, for remote debugging.
47970 @item --tty=@var{device}
47971 Run using @var{device} for your program's standard input and output.
47972 @end table
47973 @c man end
47975 @c man begin SEEALSO gdb
47976 @ifset man
47977 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47978 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47979 documentation are properly installed at your site, the command
47981 @smallexample
47982 info gdb
47983 @end smallexample
47985 @noindent
47986 should give you access to the complete manual.
47988 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47989 Richard M. Stallman and Roland H. Pesch, July 1991.
47990 @end ifset
47991 @c man end
47993 @node gdbserver man
47994 @heading gdbserver man
47996 @c man title gdbserver Remote Server for the GNU Debugger
47997 @format
47998 @c man begin SYNOPSIS gdbserver
47999 gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
48001 gdbserver --attach @var{comm} @var{pid}
48003 gdbserver --multi @var{comm}
48004 @c man end
48005 @end format
48007 @c man begin DESCRIPTION gdbserver
48008 @command{gdbserver} is a program that allows you to run @value{GDBN} on a different machine
48009 than the one which is running the program being debugged.
48011 @ifclear man
48012 @subheading Usage (server (target) side)
48013 @end ifclear
48014 @ifset man
48015 Usage (server (target) side):
48016 @end ifset
48018 First, you need to have a copy of the program you want to debug put onto
48019 the target system.  The program can be stripped to save space if needed, as
48020 @command{gdbserver} doesn't care about symbols.  All symbol handling is taken care of by
48021 the @value{GDBN} running on the host system.
48023 To use the server, you log on to the target system, and run the @command{gdbserver}
48024 program.  You must tell it (a) how to communicate with @value{GDBN}, (b) the name of
48025 your program, and (c) its arguments.  The general syntax is:
48027 @smallexample
48028 target> gdbserver @var{comm} @var{program} [@var{args} ...]
48029 @end smallexample
48031 For example, using a serial port, you might say:
48033 @smallexample
48034 @ifset man
48035 @c @file would wrap it as F</dev/com1>.
48036 target> gdbserver /dev/com1 emacs foo.txt
48037 @end ifset
48038 @ifclear man
48039 target> gdbserver @file{/dev/com1} emacs foo.txt
48040 @end ifclear
48041 @end smallexample
48043 This tells @command{gdbserver} to debug emacs with an argument of foo.txt, and
48044 to communicate with @value{GDBN} via @file{/dev/com1}.  @command{gdbserver} now
48045 waits patiently for the host @value{GDBN} to communicate with it.
48047 To use a TCP connection, you could say:
48049 @smallexample
48050 target> gdbserver host:2345 emacs foo.txt
48051 @end smallexample
48053 This says pretty much the same thing as the last example, except that we are
48054 going to communicate with the @code{host} @value{GDBN} via TCP.  The @code{host:2345} argument means
48055 that we are expecting to see a TCP connection from @code{host} to local TCP port
48056 2345.  (Currently, the @code{host} part is ignored.)  You can choose any number you
48057 want for the port number as long as it does not conflict with any existing TCP
48058 ports on the target system.  This same port number must be used in the host
48059 @value{GDBN}s @code{target remote} command, which will be described shortly.  Note that if
48060 you chose a port number that conflicts with another service, @command{gdbserver} will
48061 print an error message and exit.
48063 @command{gdbserver} can also attach to running programs.
48064 This is accomplished via the @option{--attach} argument.  The syntax is:
48066 @smallexample
48067 target> gdbserver --attach @var{comm} @var{pid}
48068 @end smallexample
48070 @var{pid} is the process ID of a currently running process.  It isn't
48071 necessary to point @command{gdbserver} at a binary for the running process.
48073 To start @code{gdbserver} without supplying an initial command to run
48074 or process ID to attach, use the @option{--multi} command line option.
48075 In such case you should connect using @kbd{target extended-remote} to start
48076 the program you want to debug.
48078 @smallexample
48079 target> gdbserver --multi @var{comm}
48080 @end smallexample
48082 @ifclear man
48083 @subheading Usage (host side)
48084 @end ifclear
48085 @ifset man
48086 Usage (host side):
48087 @end ifset
48089 You need an unstripped copy of the target program on your host system, since
48090 @value{GDBN} needs to examine its symbol tables and such.  Start up @value{GDBN} as you normally
48091 would, with the target program as the first argument.  (You may need to use the
48092 @option{--baud} option if the serial line is running at anything except 9600 baud.)
48093 That is @code{gdb TARGET-PROG}, or @code{gdb --baud BAUD TARGET-PROG}.  After that, the only
48094 new command you need to know about is @code{target remote}
48095 (or @code{target extended-remote}).  Its argument is either
48096 a device name (usually a serial device, like @file{/dev/ttyb}), or a @code{HOST:PORT}
48097 descriptor.  For example:
48099 @smallexample
48100 @ifset man
48101 @c @file would wrap it as F</dev/ttyb>.
48102 (gdb) target remote /dev/ttyb
48103 @end ifset
48104 @ifclear man
48105 (gdb) target remote @file{/dev/ttyb}
48106 @end ifclear
48107 @end smallexample
48109 @noindent
48110 communicates with the server via serial line @file{/dev/ttyb}, and:
48112 @smallexample
48113 (gdb) target remote the-target:2345
48114 @end smallexample
48116 @noindent
48117 communicates via a TCP connection to port 2345 on host `the-target', where
48118 you previously started up @command{gdbserver} with the same port number.  Note that for
48119 TCP connections, you must start up @command{gdbserver} prior to using the `target remote'
48120 command, otherwise you may get an error that looks something like
48121 `Connection refused'.
48123 @command{gdbserver} can also debug multiple inferiors at once,
48124 described in
48125 @ifset man
48126 the @value{GDBN} manual in node @code{Inferiors Connections and Programs}
48127 -- shell command @code{info -f gdb -n 'Inferiors Connections and Programs'}.
48128 @end ifset
48129 @ifclear man
48130 @ref{Inferiors Connections and Programs}.
48131 @end ifclear
48132 In such case use the @code{extended-remote} @value{GDBN} command variant:
48134 @smallexample
48135 (gdb) target extended-remote the-target:2345
48136 @end smallexample
48138 The @command{gdbserver} option @option{--multi} may or may not be used in such
48139 case.
48140 @c man end
48142 @c man begin OPTIONS gdbserver
48143 There are three different modes for invoking @command{gdbserver}:
48145 @itemize @bullet
48147 @item
48148 Debug a specific program specified by its program name:
48150 @smallexample
48151 gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
48152 @end smallexample
48154 The @var{comm} parameter specifies how should the server communicate
48155 with @value{GDBN}; it is either a device name (to use a serial line),
48156 a TCP port number (@code{:1234}), or @code{-} or @code{stdio} to use
48157 stdin/stdout of @code{gdbserver}.  Specify the name of the program to
48158 debug in @var{prog}.  Any remaining arguments will be passed to the
48159 program verbatim.  When the program exits, @value{GDBN} will close the
48160 connection, and @code{gdbserver} will exit.
48162 @item
48163 Debug a specific program by specifying the process ID of a running
48164 program:
48166 @smallexample
48167 gdbserver --attach @var{comm} @var{pid}
48168 @end smallexample
48170 The @var{comm} parameter is as described above.  Supply the process ID
48171 of a running program in @var{pid}; @value{GDBN} will do everything
48172 else.  Like with the previous mode, when the process @var{pid} exits,
48173 @value{GDBN} will close the connection, and @code{gdbserver} will exit.
48175 @item
48176 Multi-process mode -- debug more than one program/process:
48178 @smallexample
48179 gdbserver --multi @var{comm}
48180 @end smallexample
48182 In this mode, @value{GDBN} can instruct @command{gdbserver} which
48183 command(s) to run.  Unlike the other 2 modes, @value{GDBN} will not
48184 close the connection when a process being debugged exits, so you can
48185 debug several processes in the same session.
48186 @end itemize
48188 In each of the modes you may specify these options:
48190 @table @env
48192 @item --help
48193 List all options, with brief explanations.
48195 @item --version
48196 This option causes @command{gdbserver} to print its version number and exit.
48198 @item --attach
48199 @command{gdbserver} will attach to a running program.  The syntax is:
48201 @smallexample
48202 target> gdbserver --attach @var{comm} @var{pid}
48203 @end smallexample
48205 @var{pid} is the process ID of a currently running process.  It isn't
48206 necessary to point @command{gdbserver} at a binary for the running process.
48208 @item --multi
48209 To start @code{gdbserver} without supplying an initial command to run
48210 or process ID to attach, use this command line option.
48211 Then you can connect using @kbd{target extended-remote} and start
48212 the program you want to debug.  The syntax is:
48214 @smallexample
48215 target> gdbserver --multi @var{comm}
48216 @end smallexample
48218 @item --debug
48219 Instruct @code{gdbserver} to display extra status information about the debugging
48220 process.
48221 This option is intended for @code{gdbserver} development and for bug reports to
48222 the developers.
48224 @item --remote-debug
48225 Instruct @code{gdbserver} to display remote protocol debug output.
48226 This option is intended for @code{gdbserver} development and for bug reports to
48227 the developers.
48229 @item --debug-file=@var{filename}
48230 Instruct @code{gdbserver} to send any debug output to the given @var{filename}.
48231 This option is intended for @code{gdbserver} development and for bug reports to
48232 the developers.
48234 @item --debug-format=option1@r{[},option2,...@r{]}
48235 Instruct @code{gdbserver} to include extra information in each line
48236 of debugging output.
48237 @xref{Other Command-Line Arguments for gdbserver}.
48239 @item --wrapper
48240 Specify a wrapper to launch programs
48241 for debugging.  The option should be followed by the name of the
48242 wrapper, then any command-line arguments to pass to the wrapper, then
48243 @kbd{--} indicating the end of the wrapper arguments.
48245 @item --once
48246 By default, @command{gdbserver} keeps the listening TCP port open, so that
48247 additional connections are possible.  However, if you start @code{gdbserver}
48248 with the @option{--once} option, it will stop listening for any further
48249 connection attempts after connecting to the first @value{GDBN} session.
48251 @c --disable-packet is not documented for users.
48253 @c --disable-randomization and --no-disable-randomization are superseded by
48254 @c QDisableRandomization.
48256 @end table
48257 @c man end
48259 @c man begin SEEALSO gdbserver
48260 @ifset man
48261 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48262 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48263 documentation are properly installed at your site, the command
48265 @smallexample
48266 info gdb
48267 @end smallexample
48269 should give you access to the complete manual.
48271 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48272 Richard M. Stallman and Roland H. Pesch, July 1991.
48273 @end ifset
48274 @c man end
48276 @node gcore man
48277 @heading gcore
48279 @c man title gcore Generate a core file of a running program
48281 @format
48282 @c man begin SYNOPSIS gcore
48283 gcore [-a] [-o @var{prefix}] @var{pid1} [@var{pid2}...@var{pidN}]
48284 @c man end
48285 @end format
48287 @c man begin DESCRIPTION gcore
48288 Generate core dumps of one or more running programs with process IDs
48289 @var{pid1}, @var{pid2}, etc.  A core file produced by @command{gcore}
48290 is equivalent to one produced by the kernel when the process crashes
48291 (and when @kbd{ulimit -c} was used to set up an appropriate core dump
48292 limit).  However, unlike after a crash, after @command{gcore} finishes
48293 its job the program remains running without any change.
48294 @c man end
48296 @c man begin OPTIONS gcore
48297 @table @env
48298 @item -a
48299 Dump all memory mappings.  The actual effect of this option depends on
48300 the Operating System.  On @sc{gnu}/Linux, it will disable
48301 @code{use-coredump-filter} (@pxref{set use-coredump-filter}) and
48302 enable @code{dump-excluded-mappings} (@pxref{set
48303 dump-excluded-mappings}).
48305 @item -o @var{prefix}
48306 The optional argument @var{prefix} specifies the prefix to be used
48307 when composing the file names of the core dumps.  The file name is
48308 composed as @file{@var{prefix}.@var{pid}}, where @var{pid} is the
48309 process ID of the running program being analyzed by @command{gcore}.
48310 If not specified, @var{prefix} defaults to @var{gcore}.
48311 @end table
48312 @c man end
48314 @c man begin SEEALSO gcore
48315 @ifset man
48316 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48317 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48318 documentation are properly installed at your site, the command
48320 @smallexample
48321 info gdb
48322 @end smallexample
48324 @noindent
48325 should give you access to the complete manual.
48327 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48328 Richard M. Stallman and Roland H. Pesch, July 1991.
48329 @end ifset
48330 @c man end
48332 @node gdbinit man
48333 @heading gdbinit
48335 @c man title gdbinit GDB initialization scripts
48337 @format
48338 @c man begin SYNOPSIS gdbinit
48339 @ifset SYSTEM_GDBINIT
48340 @value{SYSTEM_GDBINIT}
48341 @end ifset
48343 @ifset SYSTEM_GDBINIT_DIR
48344 @value{SYSTEM_GDBINIT_DIR}/*
48345 @end ifset
48347 ~/.config/gdb/gdbinit
48349 ~/.gdbinit
48351 ./.gdbinit
48352 @c man end
48353 @end format
48355 @c man begin DESCRIPTION gdbinit
48356 These files contain @value{GDBN} commands to automatically execute during
48357 @value{GDBN} startup.  The lines of contents are canned sequences of commands,
48358 described in
48359 @ifset man
48360 the @value{GDBN} manual in node @code{Sequences}
48361 -- shell command @code{info -f gdb -n Sequences}.
48362 @end ifset
48363 @ifclear man
48364 @ref{Sequences}.
48365 @end ifclear
48367 Please read more in
48368 @ifset man
48369 the @value{GDBN} manual in node @code{Startup}
48370 -- shell command @code{info -f gdb -n Startup}.
48371 @end ifset
48372 @ifclear man
48373 @ref{Startup}.
48374 @end ifclear
48376 @table @env
48377 @ifset SYSTEM_GDBINIT
48378 @item @value{SYSTEM_GDBINIT}
48379 @end ifset
48380 @ifclear SYSTEM_GDBINIT
48381 @item (not enabled with @code{--with-system-gdbinit} during compilation)
48382 @end ifclear
48383 System-wide initialization file.  It is executed unless user specified
48384 @value{GDBN} option @code{-nx} or @code{-n}.
48385 See more in
48386 @ifset man
48387 the @value{GDBN} manual in node @code{System-wide configuration}
48388 -- shell command @code{info -f gdb -n 'System-wide configuration'}.
48389 @end ifset
48390 @ifset SYSTEM_GDBINIT_DIR
48391 @item @value{SYSTEM_GDBINIT_DIR}
48392 @end ifset
48393 @ifclear SYSTEM_GDBINIT_DIR
48394 @item (not enabled with @code{--with-system-gdbinit-dir} during compilation)
48395 @end ifclear
48396 System-wide initialization directory.  All files in this directory are
48397 executed on startup unless user specified @value{GDBN} option @code{-nx} or
48398 @code{-n}, as long as they have a recognized file extension.
48399 See more in
48400 @ifset man
48401 the @value{GDBN} manual in node @code{System-wide configuration}
48402 -- shell command @code{info -f gdb -n 'System-wide configuration'}.
48403 @end ifset
48404 @ifclear man
48405 @ref{System-wide configuration}.
48406 @end ifclear
48408 @item @file{~/.config/gdb/gdbinit} or @file{~/.gdbinit}
48409 User initialization file.  It is executed unless user specified
48410 @value{GDBN} options @code{-nx}, @code{-n} or @code{-nh}.
48412 @item @file{.gdbinit}
48413 Initialization file for current directory.  It may need to be enabled with
48414 @value{GDBN} security command @code{set auto-load local-gdbinit}.
48415 See more in
48416 @ifset man
48417 the @value{GDBN} manual in node @code{Init File in the Current Directory}
48418 -- shell command @code{info -f gdb -n 'Init File in the Current Directory'}.
48419 @end ifset
48420 @ifclear man
48421 @ref{Init File in the Current Directory}.
48422 @end ifclear
48423 @end table
48424 @c man end
48426 @c man begin SEEALSO gdbinit
48427 @ifset man
48428 gdb(1), @code{info -f gdb -n Startup}
48430 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48431 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48432 documentation are properly installed at your site, the command
48434 @smallexample
48435 info gdb
48436 @end smallexample
48438 should give you access to the complete manual.
48440 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48441 Richard M. Stallman and Roland H. Pesch, July 1991.
48442 @end ifset
48443 @c man end
48445 @node gdb-add-index man
48446 @heading gdb-add-index
48447 @pindex gdb-add-index
48448 @anchor{gdb-add-index}
48450 @c man title gdb-add-index Add index files to speed up GDB
48452 @c man begin SYNOPSIS gdb-add-index
48453 gdb-add-index @var{filename}
48454 @c man end
48456 @c man begin DESCRIPTION gdb-add-index
48457 When @value{GDBN} finds a symbol file, it scans the symbols in the
48458 file in order to construct an internal symbol table.  This lets most
48459 @value{GDBN} operations work quickly--at the cost of a delay early on.
48460 For large programs, this delay can be quite lengthy, so @value{GDBN}
48461 provides a way to build an index, which speeds up startup.
48463 To determine whether a file contains such an index, use the command
48464 @kbd{readelf -S filename}: the index is stored in a section named
48465 @code{.gdb_index}.  The index file can only be produced on systems
48466 which use ELF binaries and DWARF debug information (i.e., sections
48467 named @code{.debug_*}).
48469 @command{gdb-add-index} uses @value{GDBN} and @command{objdump} found
48470 in the @env{PATH} environment variable.  If you want to use different
48471 versions of these programs, you can specify them through the
48472 @env{GDB} and @env{OBJDUMP} environment variables.
48474 See more in
48475 @ifset man
48476 the @value{GDBN} manual in node @code{Index Files}
48477 -- shell command @kbd{info -f gdb -n "Index Files"}.
48478 @end ifset
48479 @ifclear man
48480 @ref{Index Files}.
48481 @end ifclear
48482 @c man end
48484 @c man begin SEEALSO gdb-add-index
48485 @ifset man
48486 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48487 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48488 documentation are properly installed at your site, the command
48490 @smallexample
48491 info gdb
48492 @end smallexample
48494 should give you access to the complete manual.
48496 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48497 Richard M. Stallman and Roland H. Pesch, July 1991.
48498 @end ifset
48499 @c man end
48501 @include gpl.texi
48503 @node GNU Free Documentation License
48504 @appendix GNU Free Documentation License
48505 @include fdl.texi
48507 @node Concept Index
48508 @unnumbered Concept Index
48510 @printindex cp
48512 @node Command and Variable Index
48513 @unnumbered Command, Variable, and Function Index
48515 @printindex fn
48517 @tex
48518 % I think something like @@colophon should be in texinfo.  In the
48519 % meantime:
48520 \long\def\colophon{\hbox to0pt{}\vfill
48521 \centerline{The body of this manual is set in}
48522 \centerline{\fontname\tenrm,}
48523 \centerline{with headings in {\bf\fontname\tenbf}}
48524 \centerline{and examples in {\tt\fontname\tentt}.}
48525 \centerline{{\it\fontname\tenit\/},}
48526 \centerline{{\bf\fontname\tenbf}, and}
48527 \centerline{{\sl\fontname\tensl\/}}
48528 \centerline{are used for emphasis.}\vfill}
48529 \page\colophon
48530 % Blame: doc@@cygnus.com, 1991.
48531 @end tex
48533 @bye