gdb: Document the 'metadata' styling in GDB displays.
[binutils-gdb.git] / gdb / doc / gdb.texinfo
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
12 @c
13 @settitle Debugging with @value{GDBN}
14 @setchapternewpage odd
15 @c %**end of header
16
17 @iftex
18 @c @smallbook
19 @c @cropmarks
20 @end iftex
21
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
29
30 @c readline appendices use @vindex, @findex and @ftable,
31 @c annotate.texi and gdbmi use @findex.
32 @syncodeindex vr fn
33
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
37
38 @c !!set GDB edit command default editor
39 @set EDITOR /bin/ex
40
41 @c THIS MANUAL REQUIRES TEXINFO 4.0 OR LATER.
42
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
50
51 @copying
52 @c man begin COPYRIGHT
53 Copyright @copyright{} 1988-2022 Free Software Foundation, Inc.
54
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.
61
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
67
68 @ifnottex
69 This file documents the @sc{gnu} debugger @value{GDBN}.
70
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}.
77
78 @insertcopying
79 @end ifnottex
80
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
97 }
98 @end tex
99
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 @*
105
106 @insertcopying
107 @end titlepage
108 @page
109
110 @ifnottex
111 @node Top, Summary
112
113 @top Debugging with @value{GDBN}
114
115 This file describes @value{GDBN}, the @sc{gnu} symbolic debugger.
116
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}.
122
123 Copyright (C) 1988-2022 Free Software Foundation, Inc.
124
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.
128
129 @menu
130 * Summary:: Summary of @value{GDBN}
131 * Sample Session:: A sample @value{GDBN} session
132
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
146
147 * Languages:: Using @value{GDBN} with different languages
148
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
164
165 * GDB Bugs:: Reporting bugs in @value{GDBN}
166
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
196
197 @end ifnottex
198
199 @contents
200
201 @node Summary
202 @unnumbered Summary of @value{GDBN}
203
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.
207
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:
210
211 @itemize @bullet
212 @item
213 Start your program, specifying anything that might affect its behavior.
214
215 @item
216 Make your program stop on specified conditions.
217
218 @item
219 Examine what has happened, when your program has stopped.
220
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
225
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++}.
229
230 Support for D is partial. For information on D, see
231 @ref{D,,D}.
232
233 @cindex Modula-2
234 Support for Modula-2 is partial. For information on Modula-2, see
235 @ref{Modula-2,,Modula-2}.
236
237 Support for OpenCL C is partial. For information on OpenCL C, see
238 @ref{OpenCL C,,OpenCL C}.
239
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.
245
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.
250
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.
253
254 @menu
255 * Free Software:: Freely redistributable software
256 * Free Documentation:: Free Software Needs Free Documentation
257 * Contributors:: Contributors to GDB
258 @end menu
259
260 @node Free Software
261 @unnumberedsec Free Software
262
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.
271
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.
275
276 @node Free Documentation
277 @unnumberedsec Free Software Needs Free Documentation
278
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.
287
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.
293
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.
299
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.
307
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.
312
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.
320
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.
330
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.
336
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.
343
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}.
353
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.
362
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}.
366
367 @node Contributors
368 @unnumberedsec Contributors to @value{GDBN}
369
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.
377
378 Changes much prior to version 2.0 are lost in the mists of time.
379
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
385
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).
398
399 Richard Stallman, assisted at various times by Peter TerMaat, Chris
400 Hanson, and Richard Mlynarik, handled releases through 2.8.
401
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).
407
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.
411
412 David Johnson wrote the original COFF support; Pace Willison did
413 the original support for encapsulated COFF.
414
415 Brent Benson of Harris Computer Systems contributed DWARF 2 support.
416
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.
436
437 Andreas Schwab contributed M68K @sc{gnu}/Linux support.
438
439 Rich Schaefer and Peter Schauer helped with support of SunOS shared
440 libraries.
441
442 Jay Fenlason and Roland McGrath ensured that @value{GDBN} and GAS agree
443 about several machine instruction sets.
444
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.
449
450 Brian Fox is the author of the readline libraries providing
451 command-line editing and command history.
452
453 Andrew Beers of SUNY Buffalo wrote the language-switching code, the
454 Modula-2 support, and contributed the Languages chapter of this manual.
455
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.
459
460 Hitachi America (now Renesas America), Ltd. sponsored the support for
461 H8/300, H8/500, and Super-H processors.
462
463 NEC sponsored the support for the v850, Vr4xxx, and Vr5xxx processors.
464
465 Mitsubishi (now Renesas) sponsored the support for D10V, D30V, and M32R/D
466 processors.
467
468 Toshiba sponsored the support for the TX39 Mips processor.
469
470 Matsushita sponsored the support for the MN10200 and MN10300 processors.
471
472 Fujitsu sponsored the support for SPARClite and FR30 processors.
473
474 Kung Hsu, Jeff Law, and Rick Sladkey added support for hardware
475 watchpoints.
476
477 Michael Snyder added support for tracepoints.
478
479 Stu Grossman wrote gdbserver.
480
481 Jim Kingdon, Peter Schauer, Ian Taylor, and Stu Grossman made
482 nearly innumerable bug fixes and cleanups throughout @value{GDBN}.
483
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.
491
492 DJ Delorie ported @value{GDBN} to MS-DOS, for the DJGPP project.
493 Robert Hoehne made significant contributions to the DJGPP port.
494
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.
510
511 Andrew Cagney, Fernando Nasser, and Elena Zannoni, while working for
512 Cygnus Solutions, implemented the original @sc{gdb/mi} interface.
513
514 Jim Blandy added support for preprocessor macros, while working for Red
515 Hat.
516
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.
523
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.
536
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.
541
542 Michael Eager and staff of Xilinx, Inc., contributed support for the
543 Xilinx MicroBlaze architecture.
544
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.
549
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.
555
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.
560
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.
564
565 @node Sample Session
566 @chapter A Sample @value{GDBN} Session
567
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.
571
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
576
577 @c FIXME: this example may not be appropriate for some configs, where
578 @c FIXME...primary interest is in remote use.
579
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}:
589
590 @smallexample
591 $ @b{cd gnu/m4}
592 $ @b{./m4}
593 @b{define(foo,0000)}
594
595 @b{foo}
596 0000
597 @b{define(bar,defn(`foo'))}
598
599 @b{bar}
600 0000
601 @b{changequote(<QUOTE>,<UNQUOTE>)}
602
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
608
609 @noindent
610 Let us use @value{GDBN} to try to see what is going on.
611
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.
621
622 @value{GDBN} @value{GDBVN}, Copyright 1999 Free Software Foundation, Inc...
623 (@value{GDBP})
624 @end smallexample
625
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.
631
632 @smallexample
633 (@value{GDBP}) @b{set width 70}
634 @end smallexample
635
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.
641
642 @smallexample
643 (@value{GDBP}) @b{break m4_changequote}
644 Breakpoint 1 at 0x62f4: file builtin.c, line 879.
645 @end smallexample
646
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:
651
652 @smallexample
653 (@value{GDBP}) @b{run}
654 Starting program: /work/Editorial/gdb/gnu/m4/m4
655 @b{define(foo,0000)}
656
657 @b{foo}
658 0000
659 @end smallexample
660
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.
665
666 @smallexample
667 @b{changequote(<QUOTE>,<UNQUOTE>)}
668
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
673
674 @noindent
675 Now we use the command @code{n} (@code{next}) to advance execution to
676 the next line of the current function.
677
678 @smallexample
679 (@value{GDBP}) @b{n}
680 882 set_quotes((argc >= 2) ? TOKEN_DATA_TEXT(argv[1])\
681 : nil,
682 @end smallexample
683
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}.
689
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
696
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.
704
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
717
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.
722
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
735
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.
741
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
748
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.
753
754 @smallexample
755 (@value{GDBP}) @b{l}
756 533 xfree(rquote);
757 534
758 535 lquote = (lq == nil || *lq == '\0') ? def_lquote\
759 : xstrdup (lq);
760 536 rquote = (rq == nil || *rq == '\0') ? def_rquote\
761 : xstrdup (rq);
762 537
763 538 len_lquote = strlen(rquote);
764 539 len_rquote = strlen(lquote);
765 540 @}
766 541
767 542 void
768 @end smallexample
769
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.
773
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
784
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.
792
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
799
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:
805
806 @smallexample
807 (@value{GDBP}) @b{c}
808 Continuing.
809
810 @b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
811
812 baz
813 0000
814 @end smallexample
815
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:
820
821 @smallexample
822 @b{Ctrl-d}
823 Program exited normally.
824 @end smallexample
825
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.
830
831 @smallexample
832 (@value{GDBP}) @b{quit}
833 @end smallexample
834
835 @node Invocation
836 @chapter Getting In and Out of @value{GDBN}
837
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
846
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
853
854 @node Invoking GDB
855 @section Invoking @value{GDBN}
856
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.
859
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.
862
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.
866
867 The most usual way to start @value{GDBN} is with one argument,
868 specifying an executable program:
869
870 @smallexample
871 @value{GDBP} @var{program}
872 @end smallexample
873
874 @noindent
875 You can also start with both an executable program and a core file
876 specified:
877
878 @smallexample
879 @value{GDBP} @var{program} @var{core}
880 @end smallexample
881
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:
884
885 @smallexample
886 @value{GDBP} @var{program} 1234
887 @value{GDBP} -p 1234
888 @end smallexample
889
890 @noindent
891 would attach @value{GDBN} to process @code{1234}. With option @option{-p} you
892 can omit the @var{program} filename.
893
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.
899
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}.
908
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}):
912
913 @smallexample
914 @value{GDBP} --silent
915 @end smallexample
916
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.
920
921 @noindent
922 Type
923
924 @smallexample
925 @value{GDBP} -help
926 @end smallexample
927
928 @noindent
929 to display all available options and briefly describe their use
930 (@samp{@value{GDBP} -h} is a shorter equivalent).
931
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.
935
936
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
943
944 @node File Options
945 @subsection Choosing Files
946
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}.
960
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.
964
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.)
970
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.
974
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}.
981
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.
988
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.
993
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.
999
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.
1005
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}.
1013
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.
1019
1020 This option may be used multiple times to call multiple commands. It may
1021 also be interleaved with @samp{-command} as required.
1022
1023 @smallexample
1024 @value{GDBP} -ex 'target sim' -ex 'load' \
1025 -x setbreakpoints -ex 'run' a.out
1026 @end smallexample
1027
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}.
1035
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}.
1043
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}.
1050
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.
1057
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.
1063
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.
1071
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
1083
1084 @node Mode Options
1085 @subsection Choosing Modes
1086
1087 You can run @value{GDBN} in various alternative modes---for example, in
1088 batch mode or quiet mode.
1089
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}).
1098
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.
1106
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.
1115
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.
1123
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}).
1133
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
1137
1138 @smallexample
1139 Program exited normally.
1140 @end smallexample
1141
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.
1146
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.
1153
1154 This is particularly useful when using targets that give @samp{Loading section}
1155 messages, for example.
1156
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.
1159
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:
1164
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
1176
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.
1180
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.
1188
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.
1195
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.
1200
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}.
1208
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.
1222
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.
1233
1234 The annotation mechanism has largely been superseded by @sc{gdb/mi}
1235 (@pxref{GDB/MI}).
1236
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.
1242
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.
1249
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.
1254
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.
1261
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}).
1271
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}.
1278
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.
1285
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}).
1291
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.
1296
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.
1301
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}).
1307
1308 @end table
1309
1310 @node Startup
1311 @subsection What @value{GDBN} Does During Startup
1312 @cindex @value{GDBN} startup
1313
1314 Here's the description of what @value{GDBN} does during session startup:
1315
1316 @enumerate
1317
1318 @item
1319 Performs minimal setup required to initialize basic internal state.
1320
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.
1327
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.
1333
1334 @item
1335 Sets up the command interpreter as specified by the command line
1336 (@pxref{Mode Options, interpreter}).
1337
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}.
1342
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}.
1347
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.
1355
1356 @item
1357 Processes command line options and operands.
1358
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}.
1369
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}.
1375
1376 If you wish to disable the auto-loading during startup,
1377 you must do something like the following:
1378
1379 @smallexample
1380 $ gdb -iex "set auto-load python-scripts off" myprogram
1381 @end smallexample
1382
1383 Option @samp{-ex} does not work because the auto-loading is then turned
1384 off too late.
1385
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.
1390
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
1396
1397 @node Initialization Files
1398 @subsection Initialization Files
1399 @cindex init file name
1400
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.
1405
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}.
1409
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.
1418
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}.
1427
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.
1432
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.
1439
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.
1444
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.
1448
1449 @subsubsection Home directory early initialization files
1450
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.
1458
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
1471
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
1482
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}.
1486
1487 @anchor{System Wide Init Files}
1488 @subsubsection System wide initialization files
1489
1490 There are two locations that are searched for system wide
1491 initialization files. Both of these locations are always checked:
1492
1493 @table @code
1494
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.
1500
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.
1512
1513 @end table
1514
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}.
1518
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}
1524
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.
1533
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
1540
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
1546
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}.
1550
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.
1557
1558 @anchor{Init File in the Current Directory during Startup}
1559 @subsubsection Local directory initialization file
1560
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}.
1567
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.
1571
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}.
1575
1576 @node Quitting GDB
1577 @section Quitting @value{GDBN}
1578 @cindex exiting @value{GDBN}
1579 @cindex leaving @value{GDBN}
1580
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
1594
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.
1601
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}).
1605
1606 @node Shell Commands
1607 @section Shell Commands
1608
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.
1612
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
1626
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}:
1630
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
1638
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.
1651
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}.
1655
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
1666 @}
1667 @end group
1668 @group
1669 (gdb) pipe p var|wc
1670 7 19 80
1671 (gdb) |p var|wc -l
1672 7
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
1682 @}
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
1695
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}.
1700
1701 @node Logging Output
1702 @section Logging Output
1703 @cindex logging @value{GDBN} output
1704 @cindex save @value{GDBN} output to a file
1705
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.
1708
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
1729
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
1734
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).
1740
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
1748
1749 @node Command Syntax
1750 @section Command Syntax
1751
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.
1758
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.
1767
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}.
1776
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.
1780
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.
1786
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}).
1792
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.
1799
1800
1801 @node Command Settings
1802 @section Command Settings
1803 @cindex default behavior of commands, changing
1804 @cindex default settings, changing
1805
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.
1812
1813 You can change these settings to your preference in the gdbinit files
1814 loaded at @value{GDBN} startup. @xref{Startup}.
1815
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
1824
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}.
1830
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
1840
1841 Alternatively, you can use the @code{with} command to change a setting
1842 temporarily, for the duration of a command invocation.
1843
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}.
1853
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}.
1857
1858 If no @var{command} is provided, the last command executed is
1859 repeated.
1860
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.
1864
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
1876
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}.
1880
1881 @smallexample
1882 (@value{GDBN}) with print pretty on -- my_complex_command
1883 @end smallexample
1884
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.
1889
1890 @end table
1891
1892 @node Completion
1893 @section Command Completion
1894
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.
1902
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
1907
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
1915
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}:
1919
1920 @smallexample
1921 (@value{GDBP}) info breakpoints
1922 @end smallexample
1923
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).
1931
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:
1941
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
1952
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.
1957
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{?}.
1963
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.
1967
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
1975
1976 @noindent
1977 This behavior can be controlled with the following commands:
1978
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
1995
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.
2003
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}).
2010
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:
2020
2021 @smallexample
2022 (@value{GDBP}) p 'func< @kbd{M-?}
2023 func<int>() func<float>()
2024 (@value{GDBP}) p 'func<
2025 @end smallexample
2026
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:
2031
2032 @smallexample
2033 (@value{GDBP}) b func< @kbd{M-?}
2034 func<int>() func<float>()
2035 (@value{GDBP}) b func<
2036 @end smallexample
2037
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)}.
2044
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
2051
2052 See @ref{quoting names} for a description of other scenarios that
2053 require quoting.
2054
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{++}}.
2059
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:
2070
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
2078
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:
2083
2084 @smallexample
2085 struct ui_file
2086 @{
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;
2098 @}
2099 @end smallexample
2100
2101 @node Command Options
2102 @section Command options
2103
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).
2112
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.
2122
2123 @cindex command options, boolean
2124
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.
2132
2133 For example, these are equivalent:
2134
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
2139
2140 You can discover the set of options some command accepts by completing
2141 on @code{-} after the command name. For example:
2142
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
2150
2151 Completion will in some cases guide you with a suggestion of what kind
2152 of argument an option expects. For example:
2153
2154 @smallexample
2155 (@value{GDBP}) print -elements @key{TAB}@key{TAB}
2156 NUMBER unlimited
2157 @end smallexample
2158
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.
2162
2163 (For more on using the @code{print} command, see @ref{Data, ,Examining
2164 Data}.)
2165
2166 @node Help
2167 @section Getting Help
2168 @cindex online documentation
2169 @kindex help
2170
2171 You can always ask @value{GDBN} itself for information on its commands,
2172 using the command @code{help}.
2173
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:
2180
2181 @smallexample
2182 (@value{GDBP}) help
2183 List of classes of commands:
2184
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
2198
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...
2207
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}:
2215
2216 @smallexample
2217 (@value{GDBP}) help status
2218 Status inquiries.
2219
2220 List of commands:
2221
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.
2230 ...
2231 show, info set -- Generic command for showing things
2232 about the debugger
2233
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
2239
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.
2247
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:
2256
2257 @smallexample
2258 apropos alias
2259 @end smallexample
2260
2261 @noindent
2262 results in:
2263
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
2270
2271 @noindent
2272 while
2273
2274 @smallexample
2275 apropos -v cut.*thread apply
2276 @end smallexample
2277
2278 @noindent
2279 results in the below output, where @samp{cut for 'thread apply}
2280 is highlighted if styling is enabled.
2281
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'
2288
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
2295
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:
2301
2302 @smallexample
2303 complete i
2304 @end smallexample
2305
2306 @noindent results in:
2307
2308 @smallexample
2309 @group
2310 if
2311 ignore
2312 info
2313 inspect
2314 @end group
2315 @end smallexample
2316
2317 @noindent This is intended for use by @sc{gnu} Emacs.
2318 @end table
2319
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}.
2327
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}}.
2339
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 $}.
2345
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}.
2354
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
2364
2365 Here are several miscellaneous @code{show} subcommands, all of which are
2366 exceptional in lacking corresponding @code{set} commands:
2367
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}.
2381
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}.
2388
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.
2395
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.
2404
2405 @end table
2406
2407 @node Running
2408 @chapter Running Programs Under @value{GDBN}
2409
2410 When you run a program under @value{GDBN}, you must first generate
2411 debugging information when you compile it.
2412
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.
2417
2418 @menu
2419 * Compilation:: Compiling for debugging
2420 * Starting:: Starting your program
2421 * Arguments:: Your program's arguments
2422 * Environment:: Your program's environment
2423
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
2434
2435 @node Compilation
2436 @section Compiling for Debugging
2437
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.
2443
2444 To request debugging information, specify the @samp{-g} option when you run
2445 the compiler.
2446
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.
2452
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}.
2458
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.
2462
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}.
2469
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.
2473
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}.
2478
2479 @need 2000
2480 @node Starting
2481 @section Starting your Program
2482 @cindex starting
2483 @cindex running
2484
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}).
2495
2496 @end table
2497
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:
2504
2505 @smallexample
2506 The "remote" target does not support "run".
2507 Try "help target" or "continue".
2508 @end smallexample
2509
2510 @noindent
2511 then use @code{continue} to run your program. You may need @code{load}
2512 first (@pxref{load}).
2513
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:
2520
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).
2533
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}.
2539
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}.
2547
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}.
2554
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
2561
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}.
2567
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.
2572
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.
2583
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.
2587
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.
2596
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}.
2602
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.
2609
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.
2618
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.
2631
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.
2636
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:
2640
2641 @smallexample
2642 (@value{GDBP}) set exec-wrapper env 'LD_PRELOAD=libtest.so'
2643 (@value{GDBP}) run
2644 @end smallexample
2645
2646 This command is available when debugging locally on most targets, excluding
2647 @sc{djgpp}, Cygwin, MS Windows, and QNX Neutrino.
2648
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:
2662
2663 @smallexample
2664 (@value{GDBP}) run
2665 Starting program: ./a.out
2666 During startup program terminated with signal SIGSEGV, Segmentation fault.
2667 @end smallexample
2668
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.
2676
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
2683
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.
2691
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.
2695
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:
2698
2699 @smallexample
2700 (@value{GDBP}) run
2701 Don't know how to run. Try "help target".
2702 @end smallexample
2703
2704 If the current inferior is already connected to a target, @value{GDBN}
2705 always uses it with the @code{run} command.
2706
2707 In any case, you can explicitly connect to the native target with the
2708 @code{target native} command. For example,
2709
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
2719
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.
2724
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}.
2728
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.
2736
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
2739
2740 @smallexample
2741 (@value{GDBP}) set exec-wrapper setarch `uname -m` -R
2742 @end smallexample
2743
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.
2751
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.
2757
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.
2766
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}.
2772
2773 Heap (malloc storage), stack and custom mmap areas are always placed randomly
2774 (as long as the randomization is enabled).
2775
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.
2779
2780 @end table
2781
2782 @node Arguments
2783 @section Your Program's Arguments
2784
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).
2793
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.
2798
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.
2801
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.
2810
2811 @kindex show args
2812 @item show args
2813 Show the arguments to give your program when it is started.
2814 @end table
2815
2816 @node Environment
2817 @section Your Program's Environment
2818
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.
2827
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.
2838
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.
2847
2848 @kindex show paths
2849 @item show paths
2850 Display the list of search paths for executables (the @env{PATH}
2851 environment variable).
2852
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}.
2859
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?
2872
2873 For example, this command:
2874
2875 @smallexample
2876 set env USER = foo
2877 @end smallexample
2878
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.)
2883
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.
2889
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}.
2893
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.
2901
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
2906
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}.
2917
2918 @node Working Directory
2919 @section Your Program's Working Directory
2920
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.
2929
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.
2945
2946 You can also change @value{GDBN}'s current working directory by using
2947 the @code{cd} command.
2948 @xref{cd command}.
2949
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.
2956
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{'~'}.
2963
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}.
2968
2969 @kindex pwd
2970 @item pwd
2971 Print the @value{GDBN} working directory.
2972 @end table
2973
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.
2980
2981 @node Input/Output
2982 @section Your Program's Input and Output
2983
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.
2992
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
2999
3000 You can redirect your program's input and/or output using shell
3001 redirection with the @code{run} command. For example,
3002
3003 @smallexample
3004 run > outfile
3005 @end smallexample
3006
3007 @noindent
3008 starts your program, diverting its output to the file @file{outfile}.
3009
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,
3017
3018 @smallexample
3019 tty /dev/ttyb
3020 @end smallexample
3021
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.
3026
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.
3030
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}.
3035
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.
3041
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}.
3048
3049 @item show inferior-tty
3050 @kindex show inferior-tty
3051 Show the current tty for the program being debugged.
3052 @end table
3053
3054 @node Attach
3055 @section Debugging an Already-running Process
3056 @kindex attach
3057 @cindex attach
3058
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.
3066
3067 @code{attach} does not repeat if you press @key{RET} a second time after
3068 executing the command.
3069 @end table
3070
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.
3075
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}.
3082
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.
3089
3090 @table @code
3091 @kindex exec-file-mismatch
3092 @cindex set exec-file-mismatch
3093 @item set exec-file-mismatch @samp{ask|warn|off}
3094
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.
3102
3103 @cindex show exec-file-mismatch
3104 @item show exec-file-mismatch
3105 Show the current value of @code{exec-file-mismatch}.
3106
3107 @end table
3108
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.
3116
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
3128
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}).
3135
3136 @node Kill Process
3137 @section Killing the Child Process
3138
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
3144
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.
3148
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.
3153
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).
3160
3161 @node Inferiors Connections and Programs
3162 @section Debugging Multiple Inferiors Connections and Programs
3163
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.
3172
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.
3184
3185 To find out what inferiors exist at any moment, use @w{@code{info
3186 inferiors}}:
3187
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.
3195
3196 @value{GDBN} displays for each inferior (in this order):
3197
3198 @enumerate
3199 @item
3200 the inferior number assigned by @value{GDBN}
3201
3202 @item
3203 the target system's inferior identifier
3204
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.
3209
3210 @item
3211 the name of the executable the inferior is running.
3212
3213 @end enumerate
3214
3215 @noindent
3216 An asterisk @samp{*} preceding the @value{GDBN} inferior number
3217 indicates the current inferior.
3218
3219 For example,
3220 @end table
3221 @c end table here to get a little more width for example
3222
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
3229
3230 To get informations about the current inferior, use @code{inferior}:
3231
3232 @table @code
3233 @kindex inferior
3234 @item inferior
3235 Shows information about the current inferior.
3236
3237 For example,
3238 @end table
3239 @c end table here to get a little more width for example
3240
3241 @smallexample
3242 (@value{GDBP}) inferior
3243 [Current inferior is 1 [process 3401] (helloworld)]
3244 @end smallexample
3245
3246 To find out what open target connections exist at any moment, use
3247 @w{@code{info connections}}:
3248
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.
3257
3258 @value{GDBN} displays for each connection (in this order):
3259
3260 @enumerate
3261 @item
3262 the connection number assigned by @value{GDBN}.
3263
3264 @item
3265 the protocol used by the connection.
3266
3267 @item
3268 a textual description of the protocol used by the connection.
3269
3270 @end enumerate
3271
3272 @noindent
3273 An asterisk @samp{*} preceding the connection number indicates the
3274 connection of the current inferior.
3275
3276 For example,
3277 @end table
3278 @c end table here to get a little more width for example
3279
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
3287
3288 To switch focus between inferiors, use the @code{inferior} command:
3289
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
3297
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.
3304
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.
3311
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.
3321
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.
3330
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.
3341
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
3354
3355 You can now simply switch focus to inferior 2 and run it.
3356
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.
3362
3363 @end table
3364
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:
3369
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>}.
3377
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
3385
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.
3390
3391
3392 To be notified when inferiors are started or exit under @value{GDBN}'s
3393 control use @w{@code{set print inferior-events}}:
3394
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.
3405
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
3411
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.
3415
3416
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.
3421
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}.
3427
3428 @value{GDBN} displays for each program space (in this order):
3429
3430 @enumerate
3431 @item
3432 the program space number assigned by @value{GDBN}
3433
3434 @item
3435 the name of the executable loaded into the program space, with e.g.,
3436 the @code{file} command.
3437
3438 @end enumerate
3439
3440 @noindent
3441 An asterisk @samp{*} preceding the @value{GDBN} program space number
3442 indicates the current program space.
3443
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.
3447
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
3455
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,
3461
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
3468
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
3472
3473 @node Threads
3474 @section Debugging Programs with Multiple Threads
3475
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.
3486
3487 @value{GDBN} provides these facilities for debugging multi-thread
3488 programs:
3489
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
3503
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.
3511
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
3522
3523 @smallexample
3524 [New Thread 0x41e02940 (LWP 25582)]
3525 @end smallexample
3526
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.
3531
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?
3539
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.
3547
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.
3557
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.
3562
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:
3567
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}.
3573
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}.
3578
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.
3585
3586 @end enumerate
3587
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}.
3594
3595
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.
3604
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.
3608
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.
3617
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.
3621
3622 @smallexample
3623 Thread 2 "client" hit Breakpoint 1, send_message () at client.c:68
3624 @end smallexample
3625
3626 Likewise when the program receives a signal:
3627
3628 @smallexample
3629 Thread 1 "main" received signal SIGINT, Interrupt.
3630 @end smallexample
3631
3632 @table @code
3633 @anchor{info_threads}
3634 @kindex info threads
3635 @item info threads @r{[}@var{thread-id-list}@r{]}
3636
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}).
3641
3642 @value{GDBN} displays for each thread (in this order):
3643
3644 @enumerate
3645 @item
3646 the per-inferior thread number assigned by @value{GDBN}
3647
3648 @item
3649 the global thread number assigned by @value{GDBN}, if the @samp{-gid}
3650 option was specified
3651
3652 @item
3653 the target system's thread identifier (@var{systag})
3654
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.
3659
3660 @item
3661 the current stack frame summary for that thread
3662 @end enumerate
3663
3664 @noindent
3665 An asterisk @samp{*} to the left of the @value{GDBN} thread number
3666 indicates the current thread.
3667
3668 For example,
3669 @end table
3670 @c end table here to get a little more width for example
3671
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
3680
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.
3684
3685 If you specify the @samp{-gid} option, @value{GDBN} displays a column
3686 indicating each thread's global thread ID:
3687
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
3696
3697 On Solaris, you can display more information about user threads with a
3698 Solaris-specific command:
3699
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
3706
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}).
3714
3715 @value{GDBN} responds by displaying the system identifier of the
3716 thread you selected, and its current stack frame summary:
3717
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
3724
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.
3729
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}}.
3741
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}.
3747
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:
3752
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
3767
3768 Flags @code{-c} and @code{-s} cannot be used together.
3769
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.
3775
3776 The @code{taas} command accepts the same options as the @code{thread
3777 apply all} command. @xref{thread apply all}.
3778
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.
3790
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
3797
3798 The @code{tfaas} command accepts the same options as the @code{frame
3799 apply} command. @xref{Frame Apply,,frame apply}.
3800
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.
3807
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.
3813
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.
3819
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.
3824
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
3832
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.
3843
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
3849
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.
3853
3854 @xref{Set Watchpoints,,Setting Watchpoints}, for information about
3855 watchpoints in programs with multiple threads.
3856
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.
3868
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}).
3875
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}).
3881
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.
3885
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.
3893
3894 Setting @code{libthread-db-search-path} is currently implemented
3895 only on some platforms.
3896
3897 @kindex show libthread-db-search-path
3898 @item show libthread-db-search-path
3899 Display current libthread_db search path.
3900
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.
3908
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
3917
3918 @node Forks
3919 @section Debugging Forks
3920
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.
3931
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.
3942
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.
3947
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.
3951
3952 By default, when a program forks, @value{GDBN} will continue to debug
3953 the parent process and the child process will run unimpeded.
3954
3955 If you want to follow the child process instead of the parent process,
3956 use the command @w{@code{set follow-fork-mode}}.
3957
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:
3964
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.
3969
3970 @item child
3971 The new process is debugged after a fork. The parent process runs
3972 unimpeded.
3973
3974 @end table
3975
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
3980
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}}.
3984
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.
3990
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.
3996
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.
4002
4003 @end table
4004
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
4009
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}).
4016
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}.
4022
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}.
4028
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.
4031
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.
4039
4040 @table @code
4041 @kindex set follow-exec-mode
4042 @item set follow-exec-mode @var{mode}
4043
4044 Set debugger response to a program call of @code{exec}. An
4045 @code{exec} call replaces the program image of a process.
4046
4047 @code{follow-exec-mode} can be:
4048
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.
4055
4056 For example:
4057
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
4071
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.
4078
4079 For example:
4080
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
4092
4093 @end table
4094 @end table
4095
4096 @code{follow-exec-mode} is supported in native mode and
4097 @code{target extended-remote} mode.
4098
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}.
4102
4103 @node Checkpoint/Restart
4104 @section Setting a @emph{Bookmark} to Return to Later
4105
4106 @cindex checkpoint
4107 @cindex restart
4108 @cindex bookmark
4109 @cindex snapshot of a process
4110 @cindex rewind program state
4111
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.
4116
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.
4122
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.
4129
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.
4132
4133 To use the @code{checkpoint}/@code{restart} method of debugging:
4134
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.
4141
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:
4147
4148 @table @code
4149 @item Checkpoint ID
4150 @item Process ID
4151 @item Code Address
4152 @item Source line, or label
4153 @end table
4154
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.
4162
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.
4167
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}.
4171
4172 @end table
4173
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.
4181
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).
4188
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.
4193
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.
4201
4202 @subsection A Non-obvious Benefit of Using Checkpoints
4203
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.
4210
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.
4216
4217 @node Stopping
4218 @chapter Stopping and Continuing
4219
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.
4223
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.
4231
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
4238
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
4247
4248 @node Breakpoints
4249 @section Breakpoints, Watchpoints, and Catchpoints
4250
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.
4259
4260 On some systems, you can set breakpoints in shared libraries before
4261 the executable is run.
4262
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.
4277
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}.
4281
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}.)
4291
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.
4301
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.
4311
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
4326
4327 @node Set Breaks
4328 @subsection Setting Breakpoints
4329
4330 @c FIXME LMB what does GDB do if no code on line of breakpt?
4331 @c consider in particular declaration with/without initialization.
4332 @c
4333 @c FIXME 2 is there stuff on this already? break at fun start, already init?
4334
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.
4344
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}.
4352
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.
4357
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.
4361
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.
4373
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.
4379
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.
4387
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.
4393
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
4402
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:
4406
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
4417
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:
4422
4423 @smallexample
4424 (@value{GDBP}) break func if foo
4425 No symbol "foo" in current context.
4426 @end smallexample
4427
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.
4435
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
4446
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.
4451
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}.
4458
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}.
4480
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}.
4491
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.
4503
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}).
4510
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}.
4517
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.
4522
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:
4526
4527 @smallexample
4528 (@value{GDBP}) rbreak .
4529 @end smallexample
4530
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:
4536
4537 @smallexample
4538 (@value{GDBP}) rbreak file.c:.
4539 @end smallexample
4540
4541 The colon separating the filename qualifier from the regex may
4542 optionally be surrounded by spaces.
4543
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:
4552
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
4575
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.
4583
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.
4588
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}).
4595
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.
4603
4604 @noindent
4605 For a breakpoints with an enable count (xref) greater than 1,
4606 @code{info break} also displays that count.
4607
4608 @end table
4609
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}).
4614
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:
4619
4620 @itemize @bullet
4621 @item
4622 Multiple functions in the program may have the same name.
4623
4624 @item
4625 For a C@t{++} constructor, the @value{NGCC} compiler generates several
4626 instances of the function body, used in different cases.
4627
4628 @item
4629 For a C@t{++} template function, a given line in the function can
4630 correspond to any number of instantiations.
4631
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
4636
4637 In all those cases, @value{GDBN} will insert a breakpoint at all
4638 the relevant locations.
4639
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}.
4647
4648 For example:
4649
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
4658
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.
4670
4671 @cindex pending breakpoints
4672 It's quite common to have a breakpoint inside a shared library.
4673 Shared libraries can be loaded and unloaded explicitly,
4674 and possibly repeatedly, as the program is executed. To support
4675 this use case, @value{GDBN} updates breakpoint locations whenever
4676 any shared library is loaded or unloaded. Typically, you would
4677 set a breakpoint in a shared library at the beginning of your
4678 debugging session, when the library is not loaded, and when the
4679 symbols from the library are not available. When you try to set
4680 breakpoint, @value{GDBN} will ask you if you want to set
4681 a so called @dfn{pending breakpoint}---breakpoint whose address
4682 is not yet resolved.
4683
4684 After the program is run, whenever a new shared library is loaded,
4685 @value{GDBN} reevaluates all the breakpoints. When a newly loaded
4686 shared library contains the symbol or line referred to by some
4687 pending breakpoint, that breakpoint is resolved and becomes an
4688 ordinary breakpoint. When a library is unloaded, all breakpoints
4689 that refer to its symbols or source lines become pending again.
4690
4691 This logic works for breakpoints with multiple locations, too. For
4692 example, if you have a breakpoint in a C@t{++} template function, and
4693 a newly loaded shared library has an instantiation of that template,
4694 a new location is added to the list of locations for the breakpoint.
4695
4696 Except for having unresolved address, pending breakpoints do not
4697 differ from regular breakpoints. You can set conditions or commands,
4698 enable and disable them and perform other breakpoint operations.
4699
4700 @value{GDBN} provides some additional commands for controlling what
4701 happens when the @samp{break} command cannot resolve breakpoint
4702 address specification to an address:
4703
4704 @kindex set breakpoint pending
4705 @kindex show breakpoint pending
4706 @table @code
4707 @item set breakpoint pending auto
4708 This is the default behavior. When @value{GDBN} cannot find the breakpoint
4709 location, it queries you whether a pending breakpoint should be created.
4710
4711 @item set breakpoint pending on
4712 This indicates that an unrecognized breakpoint location should automatically
4713 result in a pending breakpoint being created.
4714
4715 @item set breakpoint pending off
4716 This indicates that pending breakpoints are not to be created. Any
4717 unrecognized breakpoint location results in an error. This setting does
4718 not affect any pending breakpoints previously created.
4719
4720 @item show breakpoint pending
4721 Show the current behavior setting for creating pending breakpoints.
4722 @end table
4723
4724 The settings above only affect the @code{break} command and its
4725 variants. Once breakpoint is set, it will be automatically updated
4726 as shared libraries are loaded and unloaded.
4727
4728 @cindex automatic hardware breakpoints
4729 For some targets, @value{GDBN} can automatically decide if hardware or
4730 software breakpoints should be used, depending on whether the
4731 breakpoint address is read-only or read-write. This applies to
4732 breakpoints set with the @code{break} command as well as to internal
4733 breakpoints set by commands like @code{next} and @code{finish}. For
4734 breakpoints set with @code{hbreak}, @value{GDBN} will always use hardware
4735 breakpoints.
4736
4737 You can control this automatic behaviour with the following commands:
4738
4739 @kindex set breakpoint auto-hw
4740 @kindex show breakpoint auto-hw
4741 @table @code
4742 @item set breakpoint auto-hw on
4743 This is the default behavior. When @value{GDBN} sets a breakpoint, it
4744 will try to use the target memory map to decide if software or hardware
4745 breakpoint must be used.
4746
4747 @item set breakpoint auto-hw off
4748 This indicates @value{GDBN} should not automatically select breakpoint
4749 type. If the target provides a memory map, @value{GDBN} will warn when
4750 trying to set software breakpoint at a read-only address.
4751 @end table
4752
4753 @value{GDBN} normally implements breakpoints by replacing the program code
4754 at the breakpoint address with a special instruction, which, when
4755 executed, given control to the debugger. By default, the program
4756 code is so modified only when the program is resumed. As soon as
4757 the program stops, @value{GDBN} restores the original instructions. This
4758 behaviour guards against leaving breakpoints inserted in the
4759 target should gdb abrubptly disconnect. However, with slow remote
4760 targets, inserting and removing breakpoint can reduce the performance.
4761 This behavior can be controlled with the following commands::
4762
4763 @kindex set breakpoint always-inserted
4764 @kindex show breakpoint always-inserted
4765 @table @code
4766 @item set breakpoint always-inserted off
4767 All breakpoints, including newly added by the user, are inserted in
4768 the target only when the target is resumed. All breakpoints are
4769 removed from the target when it stops. This is the default mode.
4770
4771 @item set breakpoint always-inserted on
4772 Causes all breakpoints to be inserted in the target at all times. If
4773 the user adds a new breakpoint, or changes an existing breakpoint, the
4774 breakpoints in the target are updated immediately. A breakpoint is
4775 removed from the target only when breakpoint itself is deleted.
4776 @end table
4777
4778 @value{GDBN} handles conditional breakpoints by evaluating these conditions
4779 when a breakpoint breaks. If the condition is true, then the process being
4780 debugged stops, otherwise the process is resumed.
4781
4782 If the target supports evaluating conditions on its end, @value{GDBN} may
4783 download the breakpoint, together with its conditions, to it.
4784
4785 This feature can be controlled via the following commands:
4786
4787 @kindex set breakpoint condition-evaluation
4788 @kindex show breakpoint condition-evaluation
4789 @table @code
4790 @item set breakpoint condition-evaluation host
4791 This option commands @value{GDBN} to evaluate the breakpoint
4792 conditions on the host's side. Unconditional breakpoints are sent to
4793 the target which in turn receives the triggers and reports them back to GDB
4794 for condition evaluation. This is the standard evaluation mode.
4795
4796 @item set breakpoint condition-evaluation target
4797 This option commands @value{GDBN} to download breakpoint conditions
4798 to the target at the moment of their insertion. The target
4799 is responsible for evaluating the conditional expression and reporting
4800 breakpoint stop events back to @value{GDBN} whenever the condition
4801 is true. Due to limitations of target-side evaluation, some conditions
4802 cannot be evaluated there, e.g., conditions that depend on local data
4803 that is only known to the host. Examples include
4804 conditional expressions involving convenience variables, complex types
4805 that cannot be handled by the agent expression parser and expressions
4806 that are too long to be sent over to the target, specially when the
4807 target is a remote system. In these cases, the conditions will be
4808 evaluated by @value{GDBN}.
4809
4810 @item set breakpoint condition-evaluation auto
4811 This is the default mode. If the target supports evaluating breakpoint
4812 conditions on its end, @value{GDBN} will download breakpoint conditions to
4813 the target (limitations mentioned previously apply). If the target does
4814 not support breakpoint condition evaluation, then @value{GDBN} will fallback
4815 to evaluating all these conditions on the host's side.
4816 @end table
4817
4818
4819 @cindex negative breakpoint numbers
4820 @cindex internal @value{GDBN} breakpoints
4821 @value{GDBN} itself sometimes sets breakpoints in your program for
4822 special purposes, such as proper handling of @code{longjmp} (in C
4823 programs). These internal breakpoints are assigned negative numbers,
4824 starting with @code{-1}; @samp{info breakpoints} does not display them.
4825 You can see these breakpoints with the @value{GDBN} maintenance command
4826 @samp{maint info breakpoints} (@pxref{maint info breakpoints}).
4827
4828
4829 @node Set Watchpoints
4830 @subsection Setting Watchpoints
4831
4832 @cindex setting watchpoints
4833 You can use a watchpoint to stop execution whenever the value of an
4834 expression changes, without having to predict a particular place where
4835 this may happen. (This is sometimes called a @dfn{data breakpoint}.)
4836 The expression may be as simple as the value of a single variable, or
4837 as complex as many variables combined by operators. Examples include:
4838
4839 @itemize @bullet
4840 @item
4841 A reference to the value of a single variable.
4842
4843 @item
4844 An address cast to an appropriate data type. For example,
4845 @samp{*(int *)0x12345678} will watch a 4-byte region at the specified
4846 address (assuming an @code{int} occupies 4 bytes).
4847
4848 @item
4849 An arbitrarily complex expression, such as @samp{a*b + c/d}. The
4850 expression can use any operators valid in the program's native
4851 language (@pxref{Languages}).
4852 @end itemize
4853
4854 You can set a watchpoint on an expression even if the expression can
4855 not be evaluated yet. For instance, you can set a watchpoint on
4856 @samp{*global_ptr} before @samp{global_ptr} is initialized.
4857 @value{GDBN} will stop when your program sets @samp{global_ptr} and
4858 the expression produces a valid value. If the expression becomes
4859 valid in some other way than changing a variable (e.g.@: if the memory
4860 pointed to by @samp{*global_ptr} becomes readable as the result of a
4861 @code{malloc} call), @value{GDBN} may not stop until the next time
4862 the expression changes.
4863
4864 @cindex software watchpoints
4865 @cindex hardware watchpoints
4866 Depending on your system, watchpoints may be implemented in software or
4867 hardware. @value{GDBN} does software watchpointing by single-stepping your
4868 program and testing the variable's value each time, which is hundreds of
4869 times slower than normal execution. (But this may still be worth it, to
4870 catch errors where you have no clue what part of your program is the
4871 culprit.)
4872
4873 On some systems, such as most PowerPC or x86-based targets,
4874 @value{GDBN} includes support for hardware watchpoints, which do not
4875 slow down the running of your program.
4876
4877 @table @code
4878 @kindex watch
4879 @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{]}
4880 Set a watchpoint for an expression. @value{GDBN} will break when the
4881 expression @var{expr} is written into by the program and its value
4882 changes. The simplest (and the most popular) use of this command is
4883 to watch the value of a single variable:
4884
4885 @smallexample
4886 (@value{GDBP}) watch foo
4887 @end smallexample
4888
4889 If the command includes a @code{@r{[}thread @var{thread-id}@r{]}}
4890 argument, @value{GDBN} breaks only when the thread identified by
4891 @var{thread-id} changes the value of @var{expr}. If any other threads
4892 change the value of @var{expr}, @value{GDBN} will not break. Note
4893 that watchpoints restricted to a single thread in this way only work
4894 with Hardware Watchpoints.
4895
4896 Similarly, if the @code{task} argument is given, then the watchpoint
4897 will be specific to the indicated Ada task (@pxref{Ada Tasks}).
4898
4899 Ordinarily a watchpoint respects the scope of variables in @var{expr}
4900 (see below). The @code{-location} argument tells @value{GDBN} to
4901 instead watch the memory referred to by @var{expr}. In this case,
4902 @value{GDBN} will evaluate @var{expr}, take the address of the result,
4903 and watch the memory at that address. The type of the result is used
4904 to determine the size of the watched memory. If the expression's
4905 result does not have an address, then @value{GDBN} will print an
4906 error.
4907
4908 The @code{@r{[}mask @var{maskvalue}@r{]}} argument allows creation
4909 of masked watchpoints, if the current architecture supports this
4910 feature (e.g., PowerPC Embedded architecture, see @ref{PowerPC
4911 Embedded}.) A @dfn{masked watchpoint} specifies a mask in addition
4912 to an address to watch. The mask specifies that some bits of an address
4913 (the bits which are reset in the mask) should be ignored when matching
4914 the address accessed by the inferior against the watchpoint address.
4915 Thus, a masked watchpoint watches many addresses simultaneously---those
4916 addresses whose unmasked bits are identical to the unmasked bits in the
4917 watchpoint address. The @code{mask} argument implies @code{-location}.
4918 Examples:
4919
4920 @smallexample
4921 (@value{GDBP}) watch foo mask 0xffff00ff
4922 (@value{GDBP}) watch *0xdeadbeef mask 0xffffff00
4923 @end smallexample
4924
4925 @kindex rwatch
4926 @item rwatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
4927 Set a watchpoint that will break when the value of @var{expr} is read
4928 by the program.
4929
4930 @kindex awatch
4931 @item awatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
4932 Set a watchpoint that will break when @var{expr} is either read from
4933 or written into by the program.
4934
4935 @kindex info watchpoints @r{[}@var{list}@dots{}@r{]}
4936 @item info watchpoints @r{[}@var{list}@dots{}@r{]}
4937 This command prints a list of watchpoints, using the same format as
4938 @code{info break} (@pxref{Set Breaks}).
4939 @end table
4940
4941 If you watch for a change in a numerically entered address you need to
4942 dereference it, as the address itself is just a constant number which will
4943 never change. @value{GDBN} refuses to create a watchpoint that watches
4944 a never-changing value:
4945
4946 @smallexample
4947 (@value{GDBP}) watch 0x600850
4948 Cannot watch constant value 0x600850.
4949 (@value{GDBP}) watch *(int *) 0x600850
4950 Watchpoint 1: *(int *) 6293584
4951 @end smallexample
4952
4953 @value{GDBN} sets a @dfn{hardware watchpoint} if possible. Hardware
4954 watchpoints execute very quickly, and the debugger reports a change in
4955 value at the exact instruction where the change occurs. If @value{GDBN}
4956 cannot set a hardware watchpoint, it sets a software watchpoint, which
4957 executes more slowly and reports the change in value at the next
4958 @emph{statement}, not the instruction, after the change occurs.
4959
4960 @cindex use only software watchpoints
4961 You can force @value{GDBN} to use only software watchpoints with the
4962 @kbd{set can-use-hw-watchpoints 0} command. With this variable set to
4963 zero, @value{GDBN} will never try to use hardware watchpoints, even if
4964 the underlying system supports them. (Note that hardware-assisted
4965 watchpoints that were set @emph{before} setting
4966 @code{can-use-hw-watchpoints} to zero will still use the hardware
4967 mechanism of watching expression values.)
4968
4969 @table @code
4970 @item set can-use-hw-watchpoints
4971 @kindex set can-use-hw-watchpoints
4972 Set whether or not to use hardware watchpoints.
4973
4974 @item show can-use-hw-watchpoints
4975 @kindex show can-use-hw-watchpoints
4976 Show the current mode of using hardware watchpoints.
4977 @end table
4978
4979 For remote targets, you can restrict the number of hardware
4980 watchpoints @value{GDBN} will use, see @ref{set remote
4981 hardware-breakpoint-limit}.
4982
4983 When you issue the @code{watch} command, @value{GDBN} reports
4984
4985 @smallexample
4986 Hardware watchpoint @var{num}: @var{expr}
4987 @end smallexample
4988
4989 @noindent
4990 if it was able to set a hardware watchpoint.
4991
4992 Currently, the @code{awatch} and @code{rwatch} commands can only set
4993 hardware watchpoints, because accesses to data that don't change the
4994 value of the watched expression cannot be detected without examining
4995 every instruction as it is being executed, and @value{GDBN} does not do
4996 that currently. If @value{GDBN} finds that it is unable to set a
4997 hardware breakpoint with the @code{awatch} or @code{rwatch} command, it
4998 will print a message like this:
4999
5000 @smallexample
5001 Expression cannot be implemented with read/access watchpoint.
5002 @end smallexample
5003
5004 Sometimes, @value{GDBN} cannot set a hardware watchpoint because the
5005 data type of the watched expression is wider than what a hardware
5006 watchpoint on the target machine can handle. For example, some systems
5007 can only watch regions that are up to 4 bytes wide; on such systems you
5008 cannot set hardware watchpoints for an expression that yields a
5009 double-precision floating-point number (which is typically 8 bytes
5010 wide). As a work-around, it might be possible to break the large region
5011 into a series of smaller ones and watch them with separate watchpoints.
5012
5013 If you set too many hardware watchpoints, @value{GDBN} might be unable
5014 to insert all of them when you resume the execution of your program.
5015 Since the precise number of active watchpoints is unknown until such
5016 time as the program is about to be resumed, @value{GDBN} might not be
5017 able to warn you about this when you set the watchpoints, and the
5018 warning will be printed only when the program is resumed:
5019
5020 @smallexample
5021 Hardware watchpoint @var{num}: Could not insert watchpoint
5022 @end smallexample
5023
5024 @noindent
5025 If this happens, delete or disable some of the watchpoints.
5026
5027 Watching complex expressions that reference many variables can also
5028 exhaust the resources available for hardware-assisted watchpoints.
5029 That's because @value{GDBN} needs to watch every variable in the
5030 expression with separately allocated resources.
5031
5032 If you call a function interactively using @code{print} or @code{call},
5033 any watchpoints you have set will be inactive until @value{GDBN} reaches another
5034 kind of breakpoint or the call completes.
5035
5036 @value{GDBN} automatically deletes watchpoints that watch local
5037 (automatic) variables, or expressions that involve such variables, when
5038 they go out of scope, that is, when the execution leaves the block in
5039 which these variables were defined. In particular, when the program
5040 being debugged terminates, @emph{all} local variables go out of scope,
5041 and so only watchpoints that watch global variables remain set. If you
5042 rerun the program, you will need to set all such watchpoints again. One
5043 way of doing that would be to set a code breakpoint at the entry to the
5044 @code{main} function and when it breaks, set all the watchpoints.
5045
5046 @cindex watchpoints and threads
5047 @cindex threads and watchpoints
5048 In multi-threaded programs, watchpoints will detect changes to the
5049 watched expression from every thread.
5050
5051 @quotation
5052 @emph{Warning:} In multi-threaded programs, software watchpoints
5053 have only limited usefulness. If @value{GDBN} creates a software
5054 watchpoint, it can only watch the value of an expression @emph{in a
5055 single thread}. If you are confident that the expression can only
5056 change due to the current thread's activity (and if you are also
5057 confident that no other thread can become current), then you can use
5058 software watchpoints as usual. However, @value{GDBN} may not notice
5059 when a non-current thread's activity changes the expression. (Hardware
5060 watchpoints, in contrast, watch an expression in all threads.)
5061 @end quotation
5062
5063 @xref{set remote hardware-watchpoint-limit}.
5064
5065 @node Set Catchpoints
5066 @subsection Setting Catchpoints
5067 @cindex catchpoints, setting
5068 @cindex exception handlers
5069 @cindex event handling
5070
5071 You can use @dfn{catchpoints} to cause the debugger to stop for certain
5072 kinds of program events, such as C@t{++} exceptions or the loading of a
5073 shared library. Use the @code{catch} command to set a catchpoint.
5074
5075 @table @code
5076 @kindex catch
5077 @item catch @var{event}
5078 Stop when @var{event} occurs. The @var{event} can be any of the following:
5079
5080 @table @code
5081 @item throw @r{[}@var{regexp}@r{]}
5082 @itemx rethrow @r{[}@var{regexp}@r{]}
5083 @itemx catch @r{[}@var{regexp}@r{]}
5084 @kindex catch throw
5085 @kindex catch rethrow
5086 @kindex catch catch
5087 @cindex stop on C@t{++} exceptions
5088 The throwing, re-throwing, or catching of a C@t{++} exception.
5089
5090 If @var{regexp} is given, then only exceptions whose type matches the
5091 regular expression will be caught.
5092
5093 @vindex $_exception@r{, convenience variable}
5094 The convenience variable @code{$_exception} is available at an
5095 exception-related catchpoint, on some systems. This holds the
5096 exception being thrown.
5097
5098 There are currently some limitations to C@t{++} exception handling in
5099 @value{GDBN}:
5100
5101 @itemize @bullet
5102 @item
5103 The support for these commands is system-dependent. Currently, only
5104 systems using the @samp{gnu-v3} C@t{++} ABI (@pxref{ABI}) are
5105 supported.
5106
5107 @item
5108 The regular expression feature and the @code{$_exception} convenience
5109 variable rely on the presence of some SDT probes in @code{libstdc++}.
5110 If these probes are not present, then these features cannot be used.
5111 These probes were first available in the GCC 4.8 release, but whether
5112 or not they are available in your GCC also depends on how it was
5113 built.
5114
5115 @item
5116 The @code{$_exception} convenience variable is only valid at the
5117 instruction at which an exception-related catchpoint is set.
5118
5119 @item
5120 When an exception-related catchpoint is hit, @value{GDBN} stops at a
5121 location in the system library which implements runtime exception
5122 support for C@t{++}, usually @code{libstdc++}. You can use @code{up}
5123 (@pxref{Selection}) to get to your code.
5124
5125 @item
5126 If you call a function interactively, @value{GDBN} normally returns
5127 control to you when the function has finished executing. If the call
5128 raises an exception, however, the call may bypass the mechanism that
5129 returns control to you and cause your program either to abort or to
5130 simply continue running until it hits a breakpoint, catches a signal
5131 that @value{GDBN} is listening for, or exits. This is the case even if
5132 you set a catchpoint for the exception; catchpoints on exceptions are
5133 disabled within interactive calls. @xref{Calling}, for information on
5134 controlling this with @code{set unwind-on-terminating-exception}.
5135
5136 @item
5137 You cannot raise an exception interactively.
5138
5139 @item
5140 You cannot install an exception handler interactively.
5141 @end itemize
5142
5143 @item exception @r{[}@var{name}@r{]}
5144 @kindex catch exception
5145 @cindex Ada exception catching
5146 @cindex catch Ada exceptions
5147 An Ada exception being raised. If an exception name is specified
5148 at the end of the command (eg @code{catch exception Program_Error}),
5149 the debugger will stop only when this specific exception is raised.
5150 Otherwise, the debugger stops execution when any Ada exception is raised.
5151
5152 When inserting an exception catchpoint on a user-defined exception whose
5153 name is identical to one of the exceptions defined by the language, the
5154 fully qualified name must be used as the exception name. Otherwise,
5155 @value{GDBN} will assume that it should stop on the pre-defined exception
5156 rather than the user-defined one. For instance, assuming an exception
5157 called @code{Constraint_Error} is defined in package @code{Pck}, then
5158 the command to use to catch such exceptions is @kbd{catch exception
5159 Pck.Constraint_Error}.
5160
5161 @vindex $_ada_exception@r{, convenience variable}
5162 The convenience variable @code{$_ada_exception} holds the address of
5163 the exception being thrown. This can be useful when setting a
5164 condition for such a catchpoint.
5165
5166 @item exception unhandled
5167 @kindex catch exception unhandled
5168 An exception that was raised but is not handled by the program. The
5169 convenience variable @code{$_ada_exception} is set as for @code{catch
5170 exception}.
5171
5172 @item handlers @r{[}@var{name}@r{]}
5173 @kindex catch handlers
5174 @cindex Ada exception handlers catching
5175 @cindex catch Ada exceptions when handled
5176 An Ada exception being handled. If an exception name is
5177 specified at the end of the command
5178 (eg @kbd{catch handlers Program_Error}), the debugger will stop
5179 only when this specific exception is handled.
5180 Otherwise, the debugger stops execution when any Ada exception is handled.
5181
5182 When inserting a handlers catchpoint on a user-defined
5183 exception whose name is identical to one of the exceptions
5184 defined by the language, the fully qualified name must be used
5185 as the exception name. Otherwise, @value{GDBN} will assume that it
5186 should stop on the pre-defined exception rather than the
5187 user-defined one. For instance, assuming an exception called
5188 @code{Constraint_Error} is defined in package @code{Pck}, then the
5189 command to use to catch such exceptions handling is
5190 @kbd{catch handlers Pck.Constraint_Error}.
5191
5192 The convenience variable @code{$_ada_exception} is set as for
5193 @code{catch exception}.
5194
5195 @item assert
5196 @kindex catch assert
5197 A failed Ada assertion. Note that the convenience variable
5198 @code{$_ada_exception} is @emph{not} set by this catchpoint.
5199
5200 @item exec
5201 @kindex catch exec
5202 @cindex break on fork/exec
5203 A call to @code{exec}.
5204
5205 @anchor{catch syscall}
5206 @item syscall
5207 @itemx syscall @r{[}@var{name} @r{|} @var{number} @r{|} @r{group:}@var{groupname} @r{|} @r{g:}@var{groupname}@r{]} @dots{}
5208 @kindex catch syscall
5209 @cindex break on a system call.
5210 A call to or return from a system call, a.k.a.@: @dfn{syscall}. A
5211 syscall is a mechanism for application programs to request a service
5212 from the operating system (OS) or one of the OS system services.
5213 @value{GDBN} can catch some or all of the syscalls issued by the
5214 debuggee, and show the related information for each syscall. If no
5215 argument is specified, calls to and returns from all system calls
5216 will be caught.
5217
5218 @var{name} can be any system call name that is valid for the
5219 underlying OS. Just what syscalls are valid depends on the OS. On
5220 GNU and Unix systems, you can find the full list of valid syscall
5221 names on @file{/usr/include/asm/unistd.h}.
5222
5223 @c For MS-Windows, the syscall names and the corresponding numbers
5224 @c can be found, e.g., on this URL:
5225 @c http://www.metasploit.com/users/opcode/syscalls.html
5226 @c but we don't support Windows syscalls yet.
5227
5228 Normally, @value{GDBN} knows in advance which syscalls are valid for
5229 each OS, so you can use the @value{GDBN} command-line completion
5230 facilities (@pxref{Completion,, command completion}) to list the
5231 available choices.
5232
5233 You may also specify the system call numerically. A syscall's
5234 number is the value passed to the OS's syscall dispatcher to
5235 identify the requested service. When you specify the syscall by its
5236 name, @value{GDBN} uses its database of syscalls to convert the name
5237 into the corresponding numeric code, but using the number directly
5238 may be useful if @value{GDBN}'s database does not have the complete
5239 list of syscalls on your system (e.g., because @value{GDBN} lags
5240 behind the OS upgrades).
5241
5242 You may specify a group of related syscalls to be caught at once using
5243 the @code{group:} syntax (@code{g:} is a shorter equivalent). For
5244 instance, on some platforms @value{GDBN} allows you to catch all
5245 network related syscalls, by passing the argument @code{group:network}
5246 to @code{catch syscall}. Note that not all syscall groups are
5247 available in every system. You can use the command completion
5248 facilities (@pxref{Completion,, command completion}) to list the
5249 syscall groups available on your environment.
5250
5251 The example below illustrates how this command works if you don't provide
5252 arguments to it:
5253
5254 @smallexample
5255 (@value{GDBP}) catch syscall
5256 Catchpoint 1 (syscall)
5257 (@value{GDBP}) r
5258 Starting program: /tmp/catch-syscall
5259
5260 Catchpoint 1 (call to syscall 'close'), \
5261 0xffffe424 in __kernel_vsyscall ()
5262 (@value{GDBP}) c
5263 Continuing.
5264
5265 Catchpoint 1 (returned from syscall 'close'), \
5266 0xffffe424 in __kernel_vsyscall ()
5267 (@value{GDBP})
5268 @end smallexample
5269
5270 Here is an example of catching a system call by name:
5271
5272 @smallexample
5273 (@value{GDBP}) catch syscall chroot
5274 Catchpoint 1 (syscall 'chroot' [61])
5275 (@value{GDBP}) r
5276 Starting program: /tmp/catch-syscall
5277
5278 Catchpoint 1 (call to syscall 'chroot'), \
5279 0xffffe424 in __kernel_vsyscall ()
5280 (@value{GDBP}) c
5281 Continuing.
5282
5283 Catchpoint 1 (returned from syscall 'chroot'), \
5284 0xffffe424 in __kernel_vsyscall ()
5285 (@value{GDBP})
5286 @end smallexample
5287
5288 An example of specifying a system call numerically. In the case
5289 below, the syscall number has a corresponding entry in the XML
5290 file, so @value{GDBN} finds its name and prints it:
5291
5292 @smallexample
5293 (@value{GDBP}) catch syscall 252
5294 Catchpoint 1 (syscall(s) 'exit_group')
5295 (@value{GDBP}) r
5296 Starting program: /tmp/catch-syscall
5297
5298 Catchpoint 1 (call to syscall 'exit_group'), \
5299 0xffffe424 in __kernel_vsyscall ()
5300 (@value{GDBP}) c
5301 Continuing.
5302
5303 Program exited normally.
5304 (@value{GDBP})
5305 @end smallexample
5306
5307 Here is an example of catching a syscall group:
5308
5309 @smallexample
5310 (@value{GDBP}) catch syscall group:process
5311 Catchpoint 1 (syscalls 'exit' [1] 'fork' [2] 'waitpid' [7]
5312 'execve' [11] 'wait4' [114] 'clone' [120] 'vfork' [190]
5313 'exit_group' [252] 'waitid' [284] 'unshare' [310])
5314 (@value{GDBP}) r
5315 Starting program: /tmp/catch-syscall
5316
5317 Catchpoint 1 (call to syscall fork), 0x00007ffff7df4e27 in open64 ()
5318 from /lib64/ld-linux-x86-64.so.2
5319
5320 (@value{GDBP}) c
5321 Continuing.
5322 @end smallexample
5323
5324 However, there can be situations when there is no corresponding name
5325 in XML file for that syscall number. In this case, @value{GDBN} prints
5326 a warning message saying that it was not able to find the syscall name,
5327 but the catchpoint will be set anyway. See the example below:
5328
5329 @smallexample
5330 (@value{GDBP}) catch syscall 764
5331 warning: The number '764' does not represent a known syscall.
5332 Catchpoint 2 (syscall 764)
5333 (@value{GDBP})
5334 @end smallexample
5335
5336 If you configure @value{GDBN} using the @samp{--without-expat} option,
5337 it will not be able to display syscall names. Also, if your
5338 architecture does not have an XML file describing its system calls,
5339 you will not be able to see the syscall names. It is important to
5340 notice that these two features are used for accessing the syscall
5341 name database. In either case, you will see a warning like this:
5342
5343 @smallexample
5344 (@value{GDBP}) catch syscall
5345 warning: Could not open "syscalls/i386-linux.xml"
5346 warning: Could not load the syscall XML file 'syscalls/i386-linux.xml'.
5347 GDB will not be able to display syscall names.
5348 Catchpoint 1 (syscall)
5349 (@value{GDBP})
5350 @end smallexample
5351
5352 Of course, the file name will change depending on your architecture and system.
5353
5354 Still using the example above, you can also try to catch a syscall by its
5355 number. In this case, you would see something like:
5356
5357 @smallexample
5358 (@value{GDBP}) catch syscall 252
5359 Catchpoint 1 (syscall(s) 252)
5360 @end smallexample
5361
5362 Again, in this case @value{GDBN} would not be able to display syscall's names.
5363
5364 @item fork
5365 @kindex catch fork
5366 A call to @code{fork}.
5367
5368 @item vfork
5369 @kindex catch vfork
5370 A call to @code{vfork}.
5371
5372 @item load @r{[}@var{regexp}@r{]}
5373 @itemx unload @r{[}@var{regexp}@r{]}
5374 @kindex catch load
5375 @kindex catch unload
5376 The loading or unloading of a shared library. If @var{regexp} is
5377 given, then the catchpoint will stop only if the regular expression
5378 matches one of the affected libraries.
5379
5380 @item signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
5381 @kindex catch signal
5382 The delivery of a signal.
5383
5384 With no arguments, this catchpoint will catch any signal that is not
5385 used internally by @value{GDBN}, specifically, all signals except
5386 @samp{SIGTRAP} and @samp{SIGINT}.
5387
5388 With the argument @samp{all}, all signals, including those used by
5389 @value{GDBN}, will be caught. This argument cannot be used with other
5390 signal names.
5391
5392 Otherwise, the arguments are a list of signal names as given to
5393 @code{handle} (@pxref{Signals}). Only signals specified in this list
5394 will be caught.
5395
5396 One reason that @code{catch signal} can be more useful than
5397 @code{handle} is that you can attach commands and conditions to the
5398 catchpoint.
5399
5400 When a signal is caught by a catchpoint, the signal's @code{stop} and
5401 @code{print} settings, as specified by @code{handle}, are ignored.
5402 However, whether the signal is still delivered to the inferior depends
5403 on the @code{pass} setting; this can be changed in the catchpoint's
5404 commands.
5405
5406 @end table
5407
5408 @item tcatch @var{event}
5409 @kindex tcatch
5410 Set a catchpoint that is enabled only for one stop. The catchpoint is
5411 automatically deleted after the first time the event is caught.
5412
5413 @end table
5414
5415 Use the @code{info break} command to list the current catchpoints.
5416
5417
5418 @node Delete Breaks
5419 @subsection Deleting Breakpoints
5420
5421 @cindex clearing breakpoints, watchpoints, catchpoints
5422 @cindex deleting breakpoints, watchpoints, catchpoints
5423 It is often necessary to eliminate a breakpoint, watchpoint, or
5424 catchpoint once it has done its job and you no longer want your program
5425 to stop there. This is called @dfn{deleting} the breakpoint. A
5426 breakpoint that has been deleted no longer exists; it is forgotten.
5427
5428 With the @code{clear} command you can delete breakpoints according to
5429 where they are in your program. With the @code{delete} command you can
5430 delete individual breakpoints, watchpoints, or catchpoints by specifying
5431 their breakpoint numbers.
5432
5433 It is not necessary to delete a breakpoint to proceed past it. @value{GDBN}
5434 automatically ignores breakpoints on the first instruction to be executed
5435 when you continue execution without changing the execution address.
5436
5437 @table @code
5438 @kindex clear
5439 @item clear
5440 Delete any breakpoints at the next instruction to be executed in the
5441 selected stack frame (@pxref{Selection, ,Selecting a Frame}). When
5442 the innermost frame is selected, this is a good way to delete a
5443 breakpoint where your program just stopped.
5444
5445 @item clear @var{location}
5446 Delete any breakpoints set at the specified @var{location}.
5447 @xref{Specify Location}, for the various forms of @var{location}; the
5448 most useful ones are listed below:
5449
5450 @table @code
5451 @item clear @var{function}
5452 @itemx clear @var{filename}:@var{function}
5453 Delete any breakpoints set at entry to the named @var{function}.
5454
5455 @item clear @var{linenum}
5456 @itemx clear @var{filename}:@var{linenum}
5457 Delete any breakpoints set at or within the code of the specified
5458 @var{linenum} of the specified @var{filename}.
5459 @end table
5460
5461 @cindex delete breakpoints
5462 @kindex delete
5463 @kindex d @r{(@code{delete})}
5464 @item delete @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5465 Delete the breakpoints, watchpoints, or catchpoints of the breakpoint
5466 list specified as argument. If no argument is specified, delete all
5467 breakpoints (@value{GDBN} asks confirmation, unless you have @code{set
5468 confirm off}). You can abbreviate this command as @code{d}.
5469 @end table
5470
5471 @node Disabling
5472 @subsection Disabling Breakpoints
5473
5474 @cindex enable/disable a breakpoint
5475 Rather than deleting a breakpoint, watchpoint, or catchpoint, you might
5476 prefer to @dfn{disable} it. This makes the breakpoint inoperative as if
5477 it had been deleted, but remembers the information on the breakpoint so
5478 that you can @dfn{enable} it again later.
5479
5480 You disable and enable breakpoints, watchpoints, and catchpoints with
5481 the @code{enable} and @code{disable} commands, optionally specifying
5482 one or more breakpoint numbers as arguments. Use @code{info break} to
5483 print a list of all breakpoints, watchpoints, and catchpoints if you
5484 do not know which numbers to use.
5485
5486 Disabling and enabling a breakpoint that has multiple locations
5487 affects all of its locations.
5488
5489 A breakpoint, watchpoint, or catchpoint can have any of several
5490 different states of enablement:
5491
5492 @itemize @bullet
5493 @item
5494 Enabled. The breakpoint stops your program. A breakpoint set
5495 with the @code{break} command starts out in this state.
5496 @item
5497 Disabled. The breakpoint has no effect on your program.
5498 @item
5499 Enabled once. The breakpoint stops your program, but then becomes
5500 disabled.
5501 @item
5502 Enabled for a count. The breakpoint stops your program for the next
5503 N times, then becomes disabled.
5504 @item
5505 Enabled for deletion. The breakpoint stops your program, but
5506 immediately after it does so it is deleted permanently. A breakpoint
5507 set with the @code{tbreak} command starts out in this state.
5508 @end itemize
5509
5510 You can use the following commands to enable or disable breakpoints,
5511 watchpoints, and catchpoints:
5512
5513 @table @code
5514 @kindex disable
5515 @kindex dis @r{(@code{disable})}
5516 @item disable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5517 Disable the specified breakpoints---or all breakpoints, if none are
5518 listed. A disabled breakpoint has no effect but is not forgotten. All
5519 options such as ignore-counts, conditions and commands are remembered in
5520 case the breakpoint is enabled again later. You may abbreviate
5521 @code{disable} as @code{dis}.
5522
5523 @kindex enable
5524 @item enable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
5525 Enable the specified breakpoints (or all defined breakpoints). They
5526 become effective once again in stopping your program.
5527
5528 @item enable @r{[}breakpoints@r{]} once @var{list}@dots{}
5529 Enable the specified breakpoints temporarily. @value{GDBN} disables any
5530 of these breakpoints immediately after stopping your program.
5531
5532 @item enable @r{[}breakpoints@r{]} count @var{count} @var{list}@dots{}
5533 Enable the specified breakpoints temporarily. @value{GDBN} records
5534 @var{count} with each of the specified breakpoints, and decrements a
5535 breakpoint's count when it is hit. When any count reaches 0,
5536 @value{GDBN} disables that breakpoint. If a breakpoint has an ignore
5537 count (@pxref{Conditions, ,Break Conditions}), that will be
5538 decremented to 0 before @var{count} is affected.
5539
5540 @item enable @r{[}breakpoints@r{]} delete @var{list}@dots{}
5541 Enable the specified breakpoints to work once, then die. @value{GDBN}
5542 deletes any of these breakpoints as soon as your program stops there.
5543 Breakpoints set by the @code{tbreak} command start out in this state.
5544 @end table
5545
5546 @c FIXME: I think the following ``Except for [...] @code{tbreak}'' is
5547 @c confusing: tbreak is also initially enabled.
5548 Except for a breakpoint set with @code{tbreak} (@pxref{Set Breaks,
5549 ,Setting Breakpoints}), breakpoints that you set are initially enabled;
5550 subsequently, they become disabled or enabled only when you use one of
5551 the commands above. (The command @code{until} can set and delete a
5552 breakpoint of its own, but it does not change the state of your other
5553 breakpoints; see @ref{Continuing and Stepping, ,Continuing and
5554 Stepping}.)
5555
5556 @node Conditions
5557 @subsection Break Conditions
5558 @cindex conditional breakpoints
5559 @cindex breakpoint conditions
5560
5561 @c FIXME what is scope of break condition expr? Context where wanted?
5562 @c in particular for a watchpoint?
5563 The simplest sort of breakpoint breaks every time your program reaches a
5564 specified place. You can also specify a @dfn{condition} for a
5565 breakpoint. A condition is just a Boolean expression in your
5566 programming language (@pxref{Expressions, ,Expressions}). A breakpoint with
5567 a condition evaluates the expression each time your program reaches it,
5568 and your program stops only if the condition is @emph{true}.
5569
5570 This is the converse of using assertions for program validation; in that
5571 situation, you want to stop when the assertion is violated---that is,
5572 when the condition is false. In C, if you want to test an assertion expressed
5573 by the condition @var{assert}, you should set the condition
5574 @samp{! @var{assert}} on the appropriate breakpoint.
5575
5576 Conditions are also accepted for watchpoints; you may not need them,
5577 since a watchpoint is inspecting the value of an expression anyhow---but
5578 it might be simpler, say, to just set a watchpoint on a variable name,
5579 and specify a condition that tests whether the new value is an interesting
5580 one.
5581
5582 Break conditions can have side effects, and may even call functions in
5583 your program. This can be useful, for example, to activate functions
5584 that log program progress, or to use your own print functions to
5585 format special data structures. The effects are completely predictable
5586 unless there is another enabled breakpoint at the same address. (In
5587 that case, @value{GDBN} might see the other breakpoint first and stop your
5588 program without checking the condition of this one.) Note that
5589 breakpoint commands are usually more convenient and flexible than break
5590 conditions for the
5591 purpose of performing side effects when a breakpoint is reached
5592 (@pxref{Break Commands, ,Breakpoint Command Lists}).
5593
5594 Breakpoint conditions can also be evaluated on the target's side if
5595 the target supports it. Instead of evaluating the conditions locally,
5596 @value{GDBN} encodes the expression into an agent expression
5597 (@pxref{Agent Expressions}) suitable for execution on the target,
5598 independently of @value{GDBN}. Global variables become raw memory
5599 locations, locals become stack accesses, and so forth.
5600
5601 In this case, @value{GDBN} will only be notified of a breakpoint trigger
5602 when its condition evaluates to true. This mechanism may provide faster
5603 response times depending on the performance characteristics of the target
5604 since it does not need to keep @value{GDBN} informed about
5605 every breakpoint trigger, even those with false conditions.
5606
5607 Break conditions can be specified when a breakpoint is set, by using
5608 @samp{if} in the arguments to the @code{break} command. @xref{Set
5609 Breaks, ,Setting Breakpoints}. They can also be changed at any time
5610 with the @code{condition} command.
5611
5612 You can also use the @code{if} keyword with the @code{watch} command.
5613 The @code{catch} command does not recognize the @code{if} keyword;
5614 @code{condition} is the only way to impose a further condition on a
5615 catchpoint.
5616
5617 @table @code
5618 @kindex condition
5619 @item condition @var{bnum} @var{expression}
5620 Specify @var{expression} as the break condition for breakpoint,
5621 watchpoint, or catchpoint number @var{bnum}. After you set a condition,
5622 breakpoint @var{bnum} stops your program only if the value of
5623 @var{expression} is true (nonzero, in C). When you use
5624 @code{condition}, @value{GDBN} checks @var{expression} immediately for
5625 syntactic correctness, and to determine whether symbols in it have
5626 referents in the context of your breakpoint. If @var{expression} uses
5627 symbols not referenced in the context of the breakpoint, @value{GDBN}
5628 prints an error message:
5629
5630 @smallexample
5631 No symbol "foo" in current context.
5632 @end smallexample
5633
5634 @noindent
5635 @value{GDBN} does
5636 not actually evaluate @var{expression} at the time the @code{condition}
5637 command (or a command that sets a breakpoint with a condition, like
5638 @code{break if @dots{}}) is given, however. @xref{Expressions, ,Expressions}.
5639
5640 @item condition -force @var{bnum} @var{expression}
5641 When the @code{-force} flag is used, define the condition even if
5642 @var{expression} is invalid at all the current locations of breakpoint
5643 @var{bnum}. This is similar to the @code{-force-condition} option
5644 of the @code{break} command.
5645
5646 @item condition @var{bnum}
5647 Remove the condition from breakpoint number @var{bnum}. It becomes
5648 an ordinary unconditional breakpoint.
5649 @end table
5650
5651 @cindex ignore count (of breakpoint)
5652 A special case of a breakpoint condition is to stop only when the
5653 breakpoint has been reached a certain number of times. This is so
5654 useful that there is a special way to do it, using the @dfn{ignore
5655 count} of the breakpoint. Every breakpoint has an ignore count, which
5656 is an integer. Most of the time, the ignore count is zero, and
5657 therefore has no effect. But if your program reaches a breakpoint whose
5658 ignore count is positive, then instead of stopping, it just decrements
5659 the ignore count by one and continues. As a result, if the ignore count
5660 value is @var{n}, the breakpoint does not stop the next @var{n} times
5661 your program reaches it.
5662
5663 @table @code
5664 @kindex ignore
5665 @item ignore @var{bnum} @var{count}
5666 Set the ignore count of breakpoint number @var{bnum} to @var{count}.
5667 The next @var{count} times the breakpoint is reached, your program's
5668 execution does not stop; other than to decrement the ignore count, @value{GDBN}
5669 takes no action.
5670
5671 To make the breakpoint stop the next time it is reached, specify
5672 a count of zero.
5673
5674 When you use @code{continue} to resume execution of your program from a
5675 breakpoint, you can specify an ignore count directly as an argument to
5676 @code{continue}, rather than using @code{ignore}. @xref{Continuing and
5677 Stepping,,Continuing and Stepping}.
5678
5679 If a breakpoint has a positive ignore count and a condition, the
5680 condition is not checked. Once the ignore count reaches zero,
5681 @value{GDBN} resumes checking the condition.
5682
5683 You could achieve the effect of the ignore count with a condition such
5684 as @w{@samp{$foo-- <= 0}} using a debugger convenience variable that
5685 is decremented each time. @xref{Convenience Vars, ,Convenience
5686 Variables}.
5687 @end table
5688
5689 Ignore counts apply to breakpoints, watchpoints, and catchpoints.
5690
5691
5692 @node Break Commands
5693 @subsection Breakpoint Command Lists
5694
5695 @cindex breakpoint commands
5696 You can give any breakpoint (or watchpoint or catchpoint) a series of
5697 commands to execute when your program stops due to that breakpoint. For
5698 example, you might want to print the values of certain expressions, or
5699 enable other breakpoints.
5700
5701 @table @code
5702 @kindex commands
5703 @kindex end@r{ (breakpoint commands)}
5704 @item commands @r{[}@var{list}@dots{}@r{]}
5705 @itemx @dots{} @var{command-list} @dots{}
5706 @itemx end
5707 Specify a list of commands for the given breakpoints. The commands
5708 themselves appear on the following lines. Type a line containing just
5709 @code{end} to terminate the commands.
5710
5711 To remove all commands from a breakpoint, type @code{commands} and
5712 follow it immediately with @code{end}; that is, give no commands.
5713
5714 With no argument, @code{commands} refers to the last breakpoint,
5715 watchpoint, or catchpoint set (not to the breakpoint most recently
5716 encountered). If the most recent breakpoints were set with a single
5717 command, then the @code{commands} will apply to all the breakpoints
5718 set by that command. This applies to breakpoints set by
5719 @code{rbreak}, and also applies when a single @code{break} command
5720 creates multiple breakpoints (@pxref{Ambiguous Expressions,,Ambiguous
5721 Expressions}).
5722 @end table
5723
5724 Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
5725 disabled within a @var{command-list}.
5726
5727 You can use breakpoint commands to start your program up again. Simply
5728 use the @code{continue} command, or @code{step}, or any other command
5729 that resumes execution.
5730
5731 Any other commands in the command list, after a command that resumes
5732 execution, are ignored. This is because any time you resume execution
5733 (even with a simple @code{next} or @code{step}), you may encounter
5734 another breakpoint---which could have its own command list, leading to
5735 ambiguities about which list to execute.
5736
5737 @kindex silent
5738 If the first command you specify in a command list is @code{silent}, the
5739 usual message about stopping at a breakpoint is not printed. This may
5740 be desirable for breakpoints that are to print a specific message and
5741 then continue. If none of the remaining commands print anything, you
5742 see no sign that the breakpoint was reached. @code{silent} is
5743 meaningful only at the beginning of a breakpoint command list.
5744
5745 The commands @code{echo}, @code{output}, and @code{printf} allow you to
5746 print precisely controlled output, and are often useful in silent
5747 breakpoints. @xref{Output, ,Commands for Controlled Output}.
5748
5749 For example, here is how you could use breakpoint commands to print the
5750 value of @code{x} at entry to @code{foo} whenever @code{x} is positive.
5751
5752 @smallexample
5753 break foo if x>0
5754 commands
5755 silent
5756 printf "x is %d\n",x
5757 cont
5758 end
5759 @end smallexample
5760
5761 One application for breakpoint commands is to compensate for one bug so
5762 you can test for another. Put a breakpoint just after the erroneous line
5763 of code, give it a condition to detect the case in which something
5764 erroneous has been done, and give it commands to assign correct values
5765 to any variables that need them. End with the @code{continue} command
5766 so that your program does not stop, and start with the @code{silent}
5767 command so that no output is produced. Here is an example:
5768
5769 @smallexample
5770 break 403
5771 commands
5772 silent
5773 set x = y + 4
5774 cont
5775 end
5776 @end smallexample
5777
5778 @node Dynamic Printf
5779 @subsection Dynamic Printf
5780
5781 @cindex dynamic printf
5782 @cindex dprintf
5783 The dynamic printf command @code{dprintf} combines a breakpoint with
5784 formatted printing of your program's data to give you the effect of
5785 inserting @code{printf} calls into your program on-the-fly, without
5786 having to recompile it.
5787
5788 In its most basic form, the output goes to the GDB console. However,
5789 you can set the variable @code{dprintf-style} for alternate handling.
5790 For instance, you can ask to format the output by calling your
5791 program's @code{printf} function. This has the advantage that the
5792 characters go to the program's output device, so they can recorded in
5793 redirects to files and so forth.
5794
5795 If you are doing remote debugging with a stub or agent, you can also
5796 ask to have the printf handled by the remote agent. In addition to
5797 ensuring that the output goes to the remote program's device along
5798 with any other output the program might produce, you can also ask that
5799 the dprintf remain active even after disconnecting from the remote
5800 target. Using the stub/agent is also more efficient, as it can do
5801 everything without needing to communicate with @value{GDBN}.
5802
5803 @table @code
5804 @kindex dprintf
5805 @item dprintf @var{location},@var{template},@var{expression}[,@var{expression}@dots{}]
5806 Whenever execution reaches @var{location}, print the values of one or
5807 more @var{expressions} under the control of the string @var{template}.
5808 To print several values, separate them with commas.
5809
5810 @item set dprintf-style @var{style}
5811 Set the dprintf output to be handled in one of several different
5812 styles enumerated below. A change of style affects all existing
5813 dynamic printfs immediately. (If you need individual control over the
5814 print commands, simply define normal breakpoints with
5815 explicitly-supplied command lists.)
5816
5817 @table @code
5818 @item gdb
5819 @kindex dprintf-style gdb
5820 Handle the output using the @value{GDBN} @code{printf} command.
5821
5822 @item call
5823 @kindex dprintf-style call
5824 Handle the output by calling a function in your program (normally
5825 @code{printf}).
5826
5827 @item agent
5828 @kindex dprintf-style agent
5829 Have the remote debugging agent (such as @code{gdbserver}) handle
5830 the output itself. This style is only available for agents that
5831 support running commands on the target.
5832 @end table
5833
5834 @item set dprintf-function @var{function}
5835 Set the function to call if the dprintf style is @code{call}. By
5836 default its value is @code{printf}. You may set it to any expression.
5837 that @value{GDBN} can evaluate to a function, as per the @code{call}
5838 command.
5839
5840 @item set dprintf-channel @var{channel}
5841 Set a ``channel'' for dprintf. If set to a non-empty value,
5842 @value{GDBN} will evaluate it as an expression and pass the result as
5843 a first argument to the @code{dprintf-function}, in the manner of
5844 @code{fprintf} and similar functions. Otherwise, the dprintf format
5845 string will be the first argument, in the manner of @code{printf}.
5846
5847 As an example, if you wanted @code{dprintf} output to go to a logfile
5848 that is a standard I/O stream assigned to the variable @code{mylog},
5849 you could do the following:
5850
5851 @example
5852 (gdb) set dprintf-style call
5853 (gdb) set dprintf-function fprintf
5854 (gdb) set dprintf-channel mylog
5855 (gdb) dprintf 25,"at line 25, glob=%d\n",glob
5856 Dprintf 1 at 0x123456: file main.c, line 25.
5857 (gdb) info break
5858 1 dprintf keep y 0x00123456 in main at main.c:25
5859 call (void) fprintf (mylog,"at line 25, glob=%d\n",glob)
5860 continue
5861 (gdb)
5862 @end example
5863
5864 Note that the @code{info break} displays the dynamic printf commands
5865 as normal breakpoint commands; you can thus easily see the effect of
5866 the variable settings.
5867
5868 @item set disconnected-dprintf on
5869 @itemx set disconnected-dprintf off
5870 @kindex set disconnected-dprintf
5871 Choose whether @code{dprintf} commands should continue to run if
5872 @value{GDBN} has disconnected from the target. This only applies
5873 if the @code{dprintf-style} is @code{agent}.
5874
5875 @item show disconnected-dprintf off
5876 @kindex show disconnected-dprintf
5877 Show the current choice for disconnected @code{dprintf}.
5878
5879 @end table
5880
5881 @value{GDBN} does not check the validity of function and channel,
5882 relying on you to supply values that are meaningful for the contexts
5883 in which they are being used. For instance, the function and channel
5884 may be the values of local variables, but if that is the case, then
5885 all enabled dynamic prints must be at locations within the scope of
5886 those locals. If evaluation fails, @value{GDBN} will report an error.
5887
5888 @node Save Breakpoints
5889 @subsection How to save breakpoints to a file
5890
5891 To save breakpoint definitions to a file use the @w{@code{save
5892 breakpoints}} command.
5893
5894 @table @code
5895 @kindex save breakpoints
5896 @cindex save breakpoints to a file for future sessions
5897 @item save breakpoints [@var{filename}]
5898 This command saves all current breakpoint definitions together with
5899 their commands and ignore counts, into a file @file{@var{filename}}
5900 suitable for use in a later debugging session. This includes all
5901 types of breakpoints (breakpoints, watchpoints, catchpoints,
5902 tracepoints). To read the saved breakpoint definitions, use the
5903 @code{source} command (@pxref{Command Files}). Note that watchpoints
5904 with expressions involving local variables may fail to be recreated
5905 because it may not be possible to access the context where the
5906 watchpoint is valid anymore. Because the saved breakpoint definitions
5907 are simply a sequence of @value{GDBN} commands that recreate the
5908 breakpoints, you can edit the file in your favorite editing program,
5909 and remove the breakpoint definitions you're not interested in, or
5910 that can no longer be recreated.
5911 @end table
5912
5913 @node Static Probe Points
5914 @subsection Static Probe Points
5915
5916 @cindex static probe point, SystemTap
5917 @cindex static probe point, DTrace
5918 @value{GDBN} supports @dfn{SDT} probes in the code. @acronym{SDT} stands
5919 for Statically Defined Tracing, and the probes are designed to have a tiny
5920 runtime code and data footprint, and no dynamic relocations.
5921
5922 Currently, the following types of probes are supported on
5923 ELF-compatible systems:
5924
5925 @itemize @bullet
5926
5927 @item @code{SystemTap} (@uref{http://sourceware.org/systemtap/})
5928 @acronym{SDT} probes@footnote{See
5929 @uref{http://sourceware.org/systemtap/wiki/AddingUserSpaceProbingToApps}
5930 for more information on how to add @code{SystemTap} @acronym{SDT}
5931 probes in your applications.}. @code{SystemTap} probes are usable
5932 from assembly, C and C@t{++} languages@footnote{See
5933 @uref{http://sourceware.org/systemtap/wiki/UserSpaceProbeImplementation}
5934 for a good reference on how the @acronym{SDT} probes are implemented.}.
5935
5936 @item @code{DTrace} (@uref{http://oss.oracle.com/projects/DTrace})
5937 @acronym{USDT} probes. @code{DTrace} probes are usable from C and
5938 C@t{++} languages.
5939 @end itemize
5940
5941 @cindex semaphores on static probe points
5942 Some @code{SystemTap} probes have an associated semaphore variable;
5943 for instance, this happens automatically if you defined your probe
5944 using a DTrace-style @file{.d} file. If your probe has a semaphore,
5945 @value{GDBN} will automatically enable it when you specify a
5946 breakpoint using the @samp{-probe-stap} notation. But, if you put a
5947 breakpoint at a probe's location by some other method (e.g.,
5948 @code{break file:line}), then @value{GDBN} will not automatically set
5949 the semaphore. @code{DTrace} probes do not support semaphores.
5950
5951 You can examine the available static static probes using @code{info
5952 probes}, with optional arguments:
5953
5954 @table @code
5955 @kindex info probes
5956 @item info probes @r{[}@var{type}@r{]} @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5957 If given, @var{type} is either @code{stap} for listing
5958 @code{SystemTap} probes or @code{dtrace} for listing @code{DTrace}
5959 probes. If omitted all probes are listed regardless of their types.
5960
5961 If given, @var{provider} is a regular expression used to match against provider
5962 names when selecting which probes to list. If omitted, probes by all
5963 probes from all providers are listed.
5964
5965 If given, @var{name} is a regular expression to match against probe names
5966 when selecting which probes to list. If omitted, probe names are not
5967 considered when deciding whether to display them.
5968
5969 If given, @var{objfile} is a regular expression used to select which
5970 object files (executable or shared libraries) to examine. If not
5971 given, all object files are considered.
5972
5973 @item info probes all
5974 List the available static probes, from all types.
5975 @end table
5976
5977 @cindex enabling and disabling probes
5978 Some probe points can be enabled and/or disabled. The effect of
5979 enabling or disabling a probe depends on the type of probe being
5980 handled. Some @code{DTrace} probes can be enabled or
5981 disabled, but @code{SystemTap} probes cannot be disabled.
5982
5983 You can enable (or disable) one or more probes using the following
5984 commands, with optional arguments:
5985
5986 @table @code
5987 @kindex enable probes
5988 @item enable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5989 If given, @var{provider} is a regular expression used to match against
5990 provider names when selecting which probes to enable. If omitted,
5991 all probes from all providers are enabled.
5992
5993 If given, @var{name} is a regular expression to match against probe
5994 names when selecting which probes to enable. If omitted, probe names
5995 are not considered when deciding whether to enable them.
5996
5997 If given, @var{objfile} is a regular expression used to select which
5998 object files (executable or shared libraries) to examine. If not
5999 given, all object files are considered.
6000
6001 @kindex disable probes
6002 @item disable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
6003 See the @code{enable probes} command above for a description of the
6004 optional arguments accepted by this command.
6005 @end table
6006
6007 @vindex $_probe_arg@r{, convenience variable}
6008 A probe may specify up to twelve arguments. These are available at the
6009 point at which the probe is defined---that is, when the current PC is
6010 at the probe's location. The arguments are available using the
6011 convenience variables (@pxref{Convenience Vars})
6012 @code{$_probe_arg0}@dots{}@code{$_probe_arg11}. In @code{SystemTap}
6013 probes each probe argument is an integer of the appropriate size;
6014 types are not preserved. In @code{DTrace} probes types are preserved
6015 provided that they are recognized as such by @value{GDBN}; otherwise
6016 the value of the probe argument will be a long integer. The
6017 convenience variable @code{$_probe_argc} holds the number of arguments
6018 at the current probe point.
6019
6020 These variables are always available, but attempts to access them at
6021 any location other than a probe point will cause @value{GDBN} to give
6022 an error message.
6023
6024
6025 @c @ifclear BARETARGET
6026 @node Error in Breakpoints
6027 @subsection ``Cannot insert breakpoints''
6028
6029 If you request too many active hardware-assisted breakpoints and
6030 watchpoints, you will see this error message:
6031
6032 @c FIXME: the precise wording of this message may change; the relevant
6033 @c source change is not committed yet (Sep 3, 1999).
6034 @smallexample
6035 Stopped; cannot insert breakpoints.
6036 You may have requested too many hardware breakpoints and watchpoints.
6037 @end smallexample
6038
6039 @noindent
6040 This message is printed when you attempt to resume the program, since
6041 only then @value{GDBN} knows exactly how many hardware breakpoints and
6042 watchpoints it needs to insert.
6043
6044 When this message is printed, you need to disable or remove some of the
6045 hardware-assisted breakpoints and watchpoints, and then continue.
6046
6047 @node Breakpoint-related Warnings
6048 @subsection ``Breakpoint address adjusted...''
6049 @cindex breakpoint address adjusted
6050
6051 Some processor architectures place constraints on the addresses at
6052 which breakpoints may be placed. For architectures thus constrained,
6053 @value{GDBN} will attempt to adjust the breakpoint's address to comply
6054 with the constraints dictated by the architecture.
6055
6056 One example of such an architecture is the Fujitsu FR-V. The FR-V is
6057 a VLIW architecture in which a number of RISC-like instructions may be
6058 bundled together for parallel execution. The FR-V architecture
6059 constrains the location of a breakpoint instruction within such a
6060 bundle to the instruction with the lowest address. @value{GDBN}
6061 honors this constraint by adjusting a breakpoint's address to the
6062 first in the bundle.
6063
6064 It is not uncommon for optimized code to have bundles which contain
6065 instructions from different source statements, thus it may happen that
6066 a breakpoint's address will be adjusted from one source statement to
6067 another. Since this adjustment may significantly alter @value{GDBN}'s
6068 breakpoint related behavior from what the user expects, a warning is
6069 printed when the breakpoint is first set and also when the breakpoint
6070 is hit.
6071
6072 A warning like the one below is printed when setting a breakpoint
6073 that's been subject to address adjustment:
6074
6075 @smallexample
6076 warning: Breakpoint address adjusted from 0x00010414 to 0x00010410.
6077 @end smallexample
6078
6079 Such warnings are printed both for user settable and @value{GDBN}'s
6080 internal breakpoints. If you see one of these warnings, you should
6081 verify that a breakpoint set at the adjusted address will have the
6082 desired affect. If not, the breakpoint in question may be removed and
6083 other breakpoints may be set which will have the desired behavior.
6084 E.g., it may be sufficient to place the breakpoint at a later
6085 instruction. A conditional breakpoint may also be useful in some
6086 cases to prevent the breakpoint from triggering too often.
6087
6088 @value{GDBN} will also issue a warning when stopping at one of these
6089 adjusted breakpoints:
6090
6091 @smallexample
6092 warning: Breakpoint 1 address previously adjusted from 0x00010414
6093 to 0x00010410.
6094 @end smallexample
6095
6096 When this warning is encountered, it may be too late to take remedial
6097 action except in cases where the breakpoint is hit earlier or more
6098 frequently than expected.
6099
6100 @node Continuing and Stepping
6101 @section Continuing and Stepping
6102
6103 @cindex stepping
6104 @cindex continuing
6105 @cindex resuming execution
6106 @dfn{Continuing} means resuming program execution until your program
6107 completes normally. In contrast, @dfn{stepping} means executing just
6108 one more ``step'' of your program, where ``step'' may mean either one
6109 line of source code, or one machine instruction (depending on what
6110 particular command you use). Either when continuing or when stepping,
6111 your program may stop even sooner, due to a breakpoint or a signal. (If
6112 it stops due to a signal, you may want to use @code{handle}, or use
6113 @samp{signal 0} to resume execution (@pxref{Signals, ,Signals}),
6114 or you may step into the signal's handler (@pxref{stepping and signal
6115 handlers}).)
6116
6117 @table @code
6118 @kindex continue
6119 @kindex c @r{(@code{continue})}
6120 @kindex fg @r{(resume foreground execution)}
6121 @item continue @r{[}@var{ignore-count}@r{]}
6122 @itemx c @r{[}@var{ignore-count}@r{]}
6123 @itemx fg @r{[}@var{ignore-count}@r{]}
6124 Resume program execution, at the address where your program last stopped;
6125 any breakpoints set at that address are bypassed. The optional argument
6126 @var{ignore-count} allows you to specify a further number of times to
6127 ignore a breakpoint at this location; its effect is like that of
6128 @code{ignore} (@pxref{Conditions, ,Break Conditions}).
6129
6130 The argument @var{ignore-count} is meaningful only when your program
6131 stopped due to a breakpoint. At other times, the argument to
6132 @code{continue} is ignored.
6133
6134 The synonyms @code{c} and @code{fg} (for @dfn{foreground}, as the
6135 debugged program is deemed to be the foreground program) are provided
6136 purely for convenience, and have exactly the same behavior as
6137 @code{continue}.
6138 @end table
6139
6140 To resume execution at a different place, you can use @code{return}
6141 (@pxref{Returning, ,Returning from a Function}) to go back to the
6142 calling function; or @code{jump} (@pxref{Jumping, ,Continuing at a
6143 Different Address}) to go to an arbitrary location in your program.
6144
6145 A typical technique for using stepping is to set a breakpoint
6146 (@pxref{Breakpoints, ,Breakpoints; Watchpoints; and Catchpoints}) at the
6147 beginning of the function or the section of your program where a problem
6148 is believed to lie, run your program until it stops at that breakpoint,
6149 and then step through the suspect area, examining the variables that are
6150 interesting, until you see the problem happen.
6151
6152 @table @code
6153 @kindex step
6154 @kindex s @r{(@code{step})}
6155 @item step
6156 Continue running your program until control reaches a different source
6157 line, then stop it and return control to @value{GDBN}. This command is
6158 abbreviated @code{s}.
6159
6160 @quotation
6161 @c "without debugging information" is imprecise; actually "without line
6162 @c numbers in the debugging information". (gcc -g1 has debugging info but
6163 @c not line numbers). But it seems complex to try to make that
6164 @c distinction here.
6165 @emph{Warning:} If you use the @code{step} command while control is
6166 within a function that was compiled without debugging information,
6167 execution proceeds until control reaches a function that does have
6168 debugging information. Likewise, it will not step into a function which
6169 is compiled without debugging information. To step through functions
6170 without debugging information, use the @code{stepi} command, described
6171 below.
6172 @end quotation
6173
6174 The @code{step} command only stops at the first instruction of a source
6175 line. This prevents the multiple stops that could otherwise occur in
6176 @code{switch} statements, @code{for} loops, etc. @code{step} continues
6177 to stop if a function that has debugging information is called within
6178 the line. In other words, @code{step} @emph{steps inside} any functions
6179 called within the line.
6180
6181 Also, the @code{step} command only enters a function if there is line
6182 number information for the function. Otherwise it acts like the
6183 @code{next} command. This avoids problems when using @code{cc -gl}
6184 on @acronym{MIPS} machines. Previously, @code{step} entered subroutines if there
6185 was any debugging information about the routine.
6186
6187 @item step @var{count}
6188 Continue running as in @code{step}, but do so @var{count} times. If a
6189 breakpoint is reached, or a signal not related to stepping occurs before
6190 @var{count} steps, stepping stops right away.
6191
6192 @kindex next
6193 @kindex n @r{(@code{next})}
6194 @item next @r{[}@var{count}@r{]}
6195 Continue to the next source line in the current (innermost) stack frame.
6196 This is similar to @code{step}, but function calls that appear within
6197 the line of code are executed without stopping. Execution stops when
6198 control reaches a different line of code at the original stack level
6199 that was executing when you gave the @code{next} command. This command
6200 is abbreviated @code{n}.
6201
6202 An argument @var{count} is a repeat count, as for @code{step}.
6203
6204
6205 @c FIX ME!! Do we delete this, or is there a way it fits in with
6206 @c the following paragraph? --- Vctoria
6207 @c
6208 @c @code{next} within a function that lacks debugging information acts like
6209 @c @code{step}, but any function calls appearing within the code of the
6210 @c function are executed without stopping.
6211
6212 The @code{next} command only stops at the first instruction of a
6213 source line. This prevents multiple stops that could otherwise occur in
6214 @code{switch} statements, @code{for} loops, etc.
6215
6216 @kindex set step-mode
6217 @item set step-mode
6218 @cindex functions without line info, and stepping
6219 @cindex stepping into functions with no line info
6220 @itemx set step-mode on
6221 The @code{set step-mode on} command causes the @code{step} command to
6222 stop at the first instruction of a function which contains no debug line
6223 information rather than stepping over it.
6224
6225 This is useful in cases where you may be interested in inspecting the
6226 machine instructions of a function which has no symbolic info and do not
6227 want @value{GDBN} to automatically skip over this function.
6228
6229 @item set step-mode off
6230 Causes the @code{step} command to step over any functions which contains no
6231 debug information. This is the default.
6232
6233 @item show step-mode
6234 Show whether @value{GDBN} will stop in or step over functions without
6235 source line debug information.
6236
6237 @kindex finish
6238 @kindex fin @r{(@code{finish})}
6239 @item finish
6240 Continue running until just after function in the selected stack frame
6241 returns. Print the returned value (if any). This command can be
6242 abbreviated as @code{fin}.
6243
6244 Contrast this with the @code{return} command (@pxref{Returning,
6245 ,Returning from a Function}).
6246
6247 @kindex set print finish
6248 @kindex show print finish
6249 @item set print finish @r{[}on|off@r{]}
6250 @itemx show print finish
6251 By default the @code{finish} command will show the value that is
6252 returned by the function. This can be disabled using @code{set print
6253 finish off}. When disabled, the value is still entered into the value
6254 history (@pxref{Value History}), but not displayed.
6255
6256 @kindex until
6257 @kindex u @r{(@code{until})}
6258 @cindex run until specified location
6259 @item until
6260 @itemx u
6261 Continue running until a source line past the current line, in the
6262 current stack frame, is reached. This command is used to avoid single
6263 stepping through a loop more than once. It is like the @code{next}
6264 command, except that when @code{until} encounters a jump, it
6265 automatically continues execution until the program counter is greater
6266 than the address of the jump.
6267
6268 This means that when you reach the end of a loop after single stepping
6269 though it, @code{until} makes your program continue execution until it
6270 exits the loop. In contrast, a @code{next} command at the end of a loop
6271 simply steps back to the beginning of the loop, which forces you to step
6272 through the next iteration.
6273
6274 @code{until} always stops your program if it attempts to exit the current
6275 stack frame.
6276
6277 @code{until} may produce somewhat counterintuitive results if the order
6278 of machine code does not match the order of the source lines. For
6279 example, in the following excerpt from a debugging session, the @code{f}
6280 (@code{frame}) command shows that execution is stopped at line
6281 @code{206}; yet when we use @code{until}, we get to line @code{195}:
6282
6283 @smallexample
6284 (@value{GDBP}) f
6285 #0 main (argc=4, argv=0xf7fffae8) at m4.c:206
6286 206 expand_input();
6287 (@value{GDBP}) until
6288 195 for ( ; argc > 0; NEXTARG) @{
6289 @end smallexample
6290
6291 This happened because, for execution efficiency, the compiler had
6292 generated code for the loop closure test at the end, rather than the
6293 start, of the loop---even though the test in a C @code{for}-loop is
6294 written before the body of the loop. The @code{until} command appeared
6295 to step back to the beginning of the loop when it advanced to this
6296 expression; however, it has not really gone to an earlier
6297 statement---not in terms of the actual machine code.
6298
6299 @code{until} with no argument works by means of single
6300 instruction stepping, and hence is slower than @code{until} with an
6301 argument.
6302
6303 @item until @var{location}
6304 @itemx u @var{location}
6305 Continue running your program until either the specified @var{location} is
6306 reached, or the current stack frame returns. The location is any of
6307 the forms described in @ref{Specify Location}.
6308 This form of the command uses temporary breakpoints, and
6309 hence is quicker than @code{until} without an argument. The specified
6310 location is actually reached only if it is in the current frame. This
6311 implies that @code{until} can be used to skip over recursive function
6312 invocations. For instance in the code below, if the current location is
6313 line @code{96}, issuing @code{until 99} will execute the program up to
6314 line @code{99} in the same invocation of factorial, i.e., after the inner
6315 invocations have returned.
6316
6317 @smallexample
6318 94 int factorial (int value)
6319 95 @{
6320 96 if (value > 1) @{
6321 97 value *= factorial (value - 1);
6322 98 @}
6323 99 return (value);
6324 100 @}
6325 @end smallexample
6326
6327
6328 @kindex advance @var{location}
6329 @item advance @var{location}
6330 Continue running the program up to the given @var{location}. An argument is
6331 required, which should be of one of the forms described in
6332 @ref{Specify Location}.
6333 Execution will also stop upon exit from the current stack
6334 frame. This command is similar to @code{until}, but @code{advance} will
6335 not skip over recursive function calls, and the target location doesn't
6336 have to be in the same frame as the current one.
6337
6338
6339 @kindex stepi
6340 @kindex si @r{(@code{stepi})}
6341 @item stepi
6342 @itemx stepi @var{arg}
6343 @itemx si
6344 Execute one machine instruction, then stop and return to the debugger.
6345
6346 It is often useful to do @samp{display/i $pc} when stepping by machine
6347 instructions. This makes @value{GDBN} automatically display the next
6348 instruction to be executed, each time your program stops. @xref{Auto
6349 Display,, Automatic Display}.
6350
6351 An argument is a repeat count, as in @code{step}.
6352
6353 @need 750
6354 @kindex nexti
6355 @kindex ni @r{(@code{nexti})}
6356 @item nexti
6357 @itemx nexti @var{arg}
6358 @itemx ni
6359 Execute one machine instruction, but if it is a function call,
6360 proceed until the function returns.
6361
6362 An argument is a repeat count, as in @code{next}.
6363
6364 @end table
6365
6366 @anchor{range stepping}
6367 @cindex range stepping
6368 @cindex target-assisted range stepping
6369 By default, and if available, @value{GDBN} makes use of
6370 target-assisted @dfn{range stepping}. In other words, whenever you
6371 use a stepping command (e.g., @code{step}, @code{next}), @value{GDBN}
6372 tells the target to step the corresponding range of instruction
6373 addresses instead of issuing multiple single-steps. This speeds up
6374 line stepping, particularly for remote targets. Ideally, there should
6375 be no reason you would want to turn range stepping off. However, it's
6376 possible that a bug in the debug info, a bug in the remote stub (for
6377 remote targets), or even a bug in @value{GDBN} could make line
6378 stepping behave incorrectly when target-assisted range stepping is
6379 enabled. You can use the following command to turn off range stepping
6380 if necessary:
6381
6382 @table @code
6383 @kindex set range-stepping
6384 @kindex show range-stepping
6385 @item set range-stepping
6386 @itemx show range-stepping
6387 Control whether range stepping is enabled.
6388
6389 If @code{on}, and the target supports it, @value{GDBN} tells the
6390 target to step a range of addresses itself, instead of issuing
6391 multiple single-steps. If @code{off}, @value{GDBN} always issues
6392 single-steps, even if range stepping is supported by the target. The
6393 default is @code{on}.
6394
6395 @end table
6396
6397 @node Skipping Over Functions and Files
6398 @section Skipping Over Functions and Files
6399 @cindex skipping over functions and files
6400
6401 The program you are debugging may contain some functions which are
6402 uninteresting to debug. The @code{skip} command lets you tell @value{GDBN} to
6403 skip a function, all functions in a file or a particular function in
6404 a particular file when stepping.
6405
6406 For example, consider the following C function:
6407
6408 @smallexample
6409 101 int func()
6410 102 @{
6411 103 foo(boring());
6412 104 bar(boring());
6413 105 @}
6414 @end smallexample
6415
6416 @noindent
6417 Suppose you wish to step into the functions @code{foo} and @code{bar}, but you
6418 are not interested in stepping through @code{boring}. If you run @code{step}
6419 at line 103, you'll enter @code{boring()}, but if you run @code{next}, you'll
6420 step over both @code{foo} and @code{boring}!
6421
6422 One solution is to @code{step} into @code{boring} and use the @code{finish}
6423 command to immediately exit it. But this can become tedious if @code{boring}
6424 is called from many places.
6425
6426 A more flexible solution is to execute @kbd{skip boring}. This instructs
6427 @value{GDBN} never to step into @code{boring}. Now when you execute
6428 @code{step} at line 103, you'll step over @code{boring} and directly into
6429 @code{foo}.
6430
6431 Functions may be skipped by providing either a function name, linespec
6432 (@pxref{Specify Location}), regular expression that matches the function's
6433 name, file name or a @code{glob}-style pattern that matches the file name.
6434
6435 On Posix systems the form of the regular expression is
6436 ``Extended Regular Expressions''. See for example @samp{man 7 regex}
6437 on @sc{gnu}/Linux systems. On non-Posix systems the form of the regular
6438 expression is whatever is provided by the @code{regcomp} function of
6439 the underlying system.
6440 See for example @samp{man 7 glob} on @sc{gnu}/Linux systems for a
6441 description of @code{glob}-style patterns.
6442
6443 @table @code
6444 @kindex skip
6445 @item skip @r{[}@var{options}@r{]}
6446 The basic form of the @code{skip} command takes zero or more options
6447 that specify what to skip.
6448 The @var{options} argument is any useful combination of the following:
6449
6450 @table @code
6451 @item -file @var{file}
6452 @itemx -fi @var{file}
6453 Functions in @var{file} will be skipped over when stepping.
6454
6455 @item -gfile @var{file-glob-pattern}
6456 @itemx -gfi @var{file-glob-pattern}
6457 @cindex skipping over files via glob-style patterns
6458 Functions in files matching @var{file-glob-pattern} will be skipped
6459 over when stepping.
6460
6461 @smallexample
6462 (gdb) skip -gfi utils/*.c
6463 @end smallexample
6464
6465 @item -function @var{linespec}
6466 @itemx -fu @var{linespec}
6467 Functions named by @var{linespec} or the function containing the line
6468 named by @var{linespec} will be skipped over when stepping.
6469 @xref{Specify Location}.
6470
6471 @item -rfunction @var{regexp}
6472 @itemx -rfu @var{regexp}
6473 @cindex skipping over functions via regular expressions
6474 Functions whose name matches @var{regexp} will be skipped over when stepping.
6475
6476 This form is useful for complex function names.
6477 For example, there is generally no need to step into C@t{++} @code{std::string}
6478 constructors or destructors. Plus with C@t{++} templates it can be hard to
6479 write out the full name of the function, and often it doesn't matter what
6480 the template arguments are. Specifying the function to be skipped as a
6481 regular expression makes this easier.
6482
6483 @smallexample
6484 (gdb) skip -rfu ^std::(allocator|basic_string)<.*>::~?\1 *\(
6485 @end smallexample
6486
6487 If you want to skip every templated C@t{++} constructor and destructor
6488 in the @code{std} namespace you can do:
6489
6490 @smallexample
6491 (gdb) skip -rfu ^std::([a-zA-z0-9_]+)<.*>::~?\1 *\(
6492 @end smallexample
6493 @end table
6494
6495 If no options are specified, the function you're currently debugging
6496 will be skipped.
6497
6498 @kindex skip function
6499 @item skip function @r{[}@var{linespec}@r{]}
6500 After running this command, the function named by @var{linespec} or the
6501 function containing the line named by @var{linespec} will be skipped over when
6502 stepping. @xref{Specify Location}.
6503
6504 If you do not specify @var{linespec}, the function you're currently debugging
6505 will be skipped.
6506
6507 (If you have a function called @code{file} that you want to skip, use
6508 @kbd{skip function file}.)
6509
6510 @kindex skip file
6511 @item skip file @r{[}@var{filename}@r{]}
6512 After running this command, any function whose source lives in @var{filename}
6513 will be skipped over when stepping.
6514
6515 @smallexample
6516 (gdb) skip file boring.c
6517 File boring.c will be skipped when stepping.
6518 @end smallexample
6519
6520 If you do not specify @var{filename}, functions whose source lives in the file
6521 you're currently debugging will be skipped.
6522 @end table
6523
6524 Skips can be listed, deleted, disabled, and enabled, much like breakpoints.
6525 These are the commands for managing your list of skips:
6526
6527 @table @code
6528 @kindex info skip
6529 @item info skip @r{[}@var{range}@r{]}
6530 Print details about the specified skip(s). If @var{range} is not specified,
6531 print a table with details about all functions and files marked for skipping.
6532 @code{info skip} prints the following information about each skip:
6533
6534 @table @emph
6535 @item Identifier
6536 A number identifying this skip.
6537 @item Enabled or Disabled
6538 Enabled skips are marked with @samp{y}.
6539 Disabled skips are marked with @samp{n}.
6540 @item Glob
6541 If the file name is a @samp{glob} pattern this is @samp{y}.
6542 Otherwise it is @samp{n}.
6543 @item File
6544 The name or @samp{glob} pattern of the file to be skipped.
6545 If no file is specified this is @samp{<none>}.
6546 @item RE
6547 If the function name is a @samp{regular expression} this is @samp{y}.
6548 Otherwise it is @samp{n}.
6549 @item Function
6550 The name or regular expression of the function to skip.
6551 If no function is specified this is @samp{<none>}.
6552 @end table
6553
6554 @kindex skip delete
6555 @item skip delete @r{[}@var{range}@r{]}
6556 Delete the specified skip(s). If @var{range} is not specified, delete all
6557 skips.
6558
6559 @kindex skip enable
6560 @item skip enable @r{[}@var{range}@r{]}
6561 Enable the specified skip(s). If @var{range} is not specified, enable all
6562 skips.
6563
6564 @kindex skip disable
6565 @item skip disable @r{[}@var{range}@r{]}
6566 Disable the specified skip(s). If @var{range} is not specified, disable all
6567 skips.
6568
6569 @kindex set debug skip
6570 @item set debug skip @r{[}on|off@r{]}
6571 Set whether to print the debug output about skipping files and functions.
6572
6573 @kindex show debug skip
6574 @item show debug skip
6575 Show whether the debug output about skipping files and functions is printed.
6576
6577 @end table
6578
6579 @node Signals
6580 @section Signals
6581 @cindex signals
6582
6583 A signal is an asynchronous event that can happen in a program. The
6584 operating system defines the possible kinds of signals, and gives each
6585 kind a name and a number. For example, in Unix @code{SIGINT} is the
6586 signal a program gets when you type an interrupt character (often @kbd{Ctrl-c});
6587 @code{SIGSEGV} is the signal a program gets from referencing a place in
6588 memory far away from all the areas in use; @code{SIGALRM} occurs when
6589 the alarm clock timer goes off (which happens only if your program has
6590 requested an alarm).
6591
6592 @cindex fatal signals
6593 Some signals, including @code{SIGALRM}, are a normal part of the
6594 functioning of your program. Others, such as @code{SIGSEGV}, indicate
6595 errors; these signals are @dfn{fatal} (they kill your program immediately) if the
6596 program has not specified in advance some other way to handle the signal.
6597 @code{SIGINT} does not indicate an error in your program, but it is normally
6598 fatal so it can carry out the purpose of the interrupt: to kill the program.
6599
6600 @value{GDBN} has the ability to detect any occurrence of a signal in your
6601 program. You can tell @value{GDBN} in advance what to do for each kind of
6602 signal.
6603
6604 @cindex handling signals
6605 Normally, @value{GDBN} is set up to let the non-erroneous signals like
6606 @code{SIGALRM} be silently passed to your program
6607 (so as not to interfere with their role in the program's functioning)
6608 but to stop your program immediately whenever an error signal happens.
6609 You can change these settings with the @code{handle} command.
6610
6611 @table @code
6612 @kindex info signals
6613 @kindex info handle
6614 @item info signals
6615 @itemx info handle
6616 Print a table of all the kinds of signals and how @value{GDBN} has been told to
6617 handle each one. You can use this to see the signal numbers of all
6618 the defined types of signals.
6619
6620 @item info signals @var{sig}
6621 Similar, but print information only about the specified signal number.
6622
6623 @code{info handle} is an alias for @code{info signals}.
6624
6625 @item catch signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
6626 Set a catchpoint for the indicated signals. @xref{Set Catchpoints},
6627 for details about this command.
6628
6629 @kindex handle
6630 @item handle @var{signal} @r{[}@var{keywords}@dots{}@r{]}
6631 Change the way @value{GDBN} handles signal @var{signal}. The @var{signal}
6632 can be the number of a signal or its name (with or without the
6633 @samp{SIG} at the beginning); a list of signal numbers of the form
6634 @samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
6635 known signals. Optional arguments @var{keywords}, described below,
6636 say what change to make.
6637 @end table
6638
6639 @c @group
6640 The keywords allowed by the @code{handle} command can be abbreviated.
6641 Their full names are:
6642
6643 @table @code
6644 @item nostop
6645 @value{GDBN} should not stop your program when this signal happens. It may
6646 still print a message telling you that the signal has come in.
6647
6648 @item stop
6649 @value{GDBN} should stop your program when this signal happens. This implies
6650 the @code{print} keyword as well.
6651
6652 @item print
6653 @value{GDBN} should print a message when this signal happens.
6654
6655 @item noprint
6656 @value{GDBN} should not mention the occurrence of the signal at all. This
6657 implies the @code{nostop} keyword as well.
6658
6659 @item pass
6660 @itemx noignore
6661 @value{GDBN} should allow your program to see this signal; your program
6662 can handle the signal, or else it may terminate if the signal is fatal
6663 and not handled. @code{pass} and @code{noignore} are synonyms.
6664
6665 @item nopass
6666 @itemx ignore
6667 @value{GDBN} should not allow your program to see this signal.
6668 @code{nopass} and @code{ignore} are synonyms.
6669 @end table
6670 @c @end group
6671
6672 When a signal stops your program, the signal is not visible to the
6673 program until you
6674 continue. Your program sees the signal then, if @code{pass} is in
6675 effect for the signal in question @emph{at that time}. In other words,
6676 after @value{GDBN} reports a signal, you can use the @code{handle}
6677 command with @code{pass} or @code{nopass} to control whether your
6678 program sees that signal when you continue.
6679
6680 The default is set to @code{nostop}, @code{noprint}, @code{pass} for
6681 non-erroneous signals such as @code{SIGALRM}, @code{SIGWINCH} and
6682 @code{SIGCHLD}, and to @code{stop}, @code{print}, @code{pass} for the
6683 erroneous signals.
6684
6685 You can also use the @code{signal} command to prevent your program from
6686 seeing a signal, or cause it to see a signal it normally would not see,
6687 or to give it any signal at any time. For example, if your program stopped
6688 due to some sort of memory reference error, you might store correct
6689 values into the erroneous variables and continue, hoping to see more
6690 execution; but your program would probably terminate immediately as
6691 a result of the fatal signal once it saw the signal. To prevent this,
6692 you can continue with @samp{signal 0}. @xref{Signaling, ,Giving your
6693 Program a Signal}.
6694
6695 @cindex stepping and signal handlers
6696 @anchor{stepping and signal handlers}
6697
6698 @value{GDBN} optimizes for stepping the mainline code. If a signal
6699 that has @code{handle nostop} and @code{handle pass} set arrives while
6700 a stepping command (e.g., @code{stepi}, @code{step}, @code{next}) is
6701 in progress, @value{GDBN} lets the signal handler run and then resumes
6702 stepping the mainline code once the signal handler returns. In other
6703 words, @value{GDBN} steps over the signal handler. This prevents
6704 signals that you've specified as not interesting (with @code{handle
6705 nostop}) from changing the focus of debugging unexpectedly. Note that
6706 the signal handler itself may still hit a breakpoint, stop for another
6707 signal that has @code{handle stop} in effect, or for any other event
6708 that normally results in stopping the stepping command sooner. Also
6709 note that @value{GDBN} still informs you that the program received a
6710 signal if @code{handle print} is set.
6711
6712 @anchor{stepping into signal handlers}
6713
6714 If you set @code{handle pass} for a signal, and your program sets up a
6715 handler for it, then issuing a stepping command, such as @code{step}
6716 or @code{stepi}, when your program is stopped due to the signal will
6717 step @emph{into} the signal handler (if the target supports that).
6718
6719 Likewise, if you use the @code{queue-signal} command to queue a signal
6720 to be delivered to the current thread when execution of the thread
6721 resumes (@pxref{Signaling, ,Giving your Program a Signal}), then a
6722 stepping command will step into the signal handler.
6723
6724 Here's an example, using @code{stepi} to step to the first instruction
6725 of @code{SIGUSR1}'s handler:
6726
6727 @smallexample
6728 (@value{GDBP}) handle SIGUSR1
6729 Signal Stop Print Pass to program Description
6730 SIGUSR1 Yes Yes Yes User defined signal 1
6731 (@value{GDBP}) c
6732 Continuing.
6733
6734 Program received signal SIGUSR1, User defined signal 1.
6735 main () sigusr1.c:28
6736 28 p = 0;
6737 (@value{GDBP}) si
6738 sigusr1_handler () at sigusr1.c:9
6739 9 @{
6740 @end smallexample
6741
6742 The same, but using @code{queue-signal} instead of waiting for the
6743 program to receive the signal first:
6744
6745 @smallexample
6746 (@value{GDBP}) n
6747 28 p = 0;
6748 (@value{GDBP}) queue-signal SIGUSR1
6749 (@value{GDBP}) si
6750 sigusr1_handler () at sigusr1.c:9
6751 9 @{
6752 (@value{GDBP})
6753 @end smallexample
6754
6755 @cindex extra signal information
6756 @anchor{extra signal information}
6757
6758 On some targets, @value{GDBN} can inspect extra signal information
6759 associated with the intercepted signal, before it is actually
6760 delivered to the program being debugged. This information is exported
6761 by the convenience variable @code{$_siginfo}, and consists of data
6762 that is passed by the kernel to the signal handler at the time of the
6763 receipt of a signal. The data type of the information itself is
6764 target dependent. You can see the data type using the @code{ptype
6765 $_siginfo} command. On Unix systems, it typically corresponds to the
6766 standard @code{siginfo_t} type, as defined in the @file{signal.h}
6767 system header.
6768
6769 Here's an example, on a @sc{gnu}/Linux system, printing the stray
6770 referenced address that raised a segmentation fault.
6771
6772 @smallexample
6773 @group
6774 (@value{GDBP}) continue
6775 Program received signal SIGSEGV, Segmentation fault.
6776 0x0000000000400766 in main ()
6777 69 *(int *)p = 0;
6778 (@value{GDBP}) ptype $_siginfo
6779 type = struct @{
6780 int si_signo;
6781 int si_errno;
6782 int si_code;
6783 union @{
6784 int _pad[28];
6785 struct @{...@} _kill;
6786 struct @{...@} _timer;
6787 struct @{...@} _rt;
6788 struct @{...@} _sigchld;
6789 struct @{...@} _sigfault;
6790 struct @{...@} _sigpoll;
6791 @} _sifields;
6792 @}
6793 (@value{GDBP}) ptype $_siginfo._sifields._sigfault
6794 type = struct @{
6795 void *si_addr;
6796 @}
6797 (@value{GDBP}) p $_siginfo._sifields._sigfault.si_addr
6798 $1 = (void *) 0x7ffff7ff7000
6799 @end group
6800 @end smallexample
6801
6802 Depending on target support, @code{$_siginfo} may also be writable.
6803
6804 @cindex Intel MPX boundary violations
6805 @cindex boundary violations, Intel MPX
6806 On some targets, a @code{SIGSEGV} can be caused by a boundary
6807 violation, i.e., accessing an address outside of the allowed range.
6808 In those cases @value{GDBN} may displays additional information,
6809 depending on how @value{GDBN} has been told to handle the signal.
6810 With @code{handle stop SIGSEGV}, @value{GDBN} displays the violation
6811 kind: "Upper" or "Lower", the memory address accessed and the
6812 bounds, while with @code{handle nostop SIGSEGV} no additional
6813 information is displayed.
6814
6815 The usual output of a segfault is:
6816 @smallexample
6817 Program received signal SIGSEGV, Segmentation fault
6818 0x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
6819 68 value = *(p + len);
6820 @end smallexample
6821
6822 While a bound violation is presented as:
6823 @smallexample
6824 Program received signal SIGSEGV, Segmentation fault
6825 Upper bound violation while accessing address 0x7fffffffc3b3
6826 Bounds: [lower = 0x7fffffffc390, upper = 0x7fffffffc3a3]
6827 0x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
6828 68 value = *(p + len);
6829 @end smallexample
6830
6831 @node Thread Stops
6832 @section Stopping and Starting Multi-thread Programs
6833
6834 @cindex stopped threads
6835 @cindex threads, stopped
6836
6837 @cindex continuing threads
6838 @cindex threads, continuing
6839
6840 @value{GDBN} supports debugging programs with multiple threads
6841 (@pxref{Threads,, Debugging Programs with Multiple Threads}). There
6842 are two modes of controlling execution of your program within the
6843 debugger. In the default mode, referred to as @dfn{all-stop mode},
6844 when any thread in your program stops (for example, at a breakpoint
6845 or while being stepped), all other threads in the program are also stopped by
6846 @value{GDBN}. On some targets, @value{GDBN} also supports
6847 @dfn{non-stop mode}, in which other threads can continue to run freely while
6848 you examine the stopped thread in the debugger.
6849
6850 @menu
6851 * All-Stop Mode:: All threads stop when GDB takes control
6852 * Non-Stop Mode:: Other threads continue to execute
6853 * Background Execution:: Running your program asynchronously
6854 * Thread-Specific Breakpoints:: Controlling breakpoints
6855 * Interrupted System Calls:: GDB may interfere with system calls
6856 * Observer Mode:: GDB does not alter program behavior
6857 @end menu
6858
6859 @node All-Stop Mode
6860 @subsection All-Stop Mode
6861
6862 @cindex all-stop mode
6863
6864 In all-stop mode, whenever your program stops under @value{GDBN} for any reason,
6865 @emph{all} threads of execution stop, not just the current thread. This
6866 allows you to examine the overall state of the program, including
6867 switching between threads, without worrying that things may change
6868 underfoot.
6869
6870 Conversely, whenever you restart the program, @emph{all} threads start
6871 executing. @emph{This is true even when single-stepping} with commands
6872 like @code{step} or @code{next}.
6873
6874 In particular, @value{GDBN} cannot single-step all threads in lockstep.
6875 Since thread scheduling is up to your debugging target's operating
6876 system (not controlled by @value{GDBN}), other threads may
6877 execute more than one statement while the current thread completes a
6878 single step. Moreover, in general other threads stop in the middle of a
6879 statement, rather than at a clean statement boundary, when the program
6880 stops.
6881
6882 You might even find your program stopped in another thread after
6883 continuing or even single-stepping. This happens whenever some other
6884 thread runs into a breakpoint, a signal, or an exception before the
6885 first thread completes whatever you requested.
6886
6887 @cindex automatic thread selection
6888 @cindex switching threads automatically
6889 @cindex threads, automatic switching
6890 Whenever @value{GDBN} stops your program, due to a breakpoint or a
6891 signal, it automatically selects the thread where that breakpoint or
6892 signal happened. @value{GDBN} alerts you to the context switch with a
6893 message such as @samp{[Switching to Thread @var{n}]} to identify the
6894 thread.
6895
6896 On some OSes, you can modify @value{GDBN}'s default behavior by
6897 locking the OS scheduler to allow only a single thread to run.
6898
6899 @table @code
6900 @item set scheduler-locking @var{mode}
6901 @cindex scheduler locking mode
6902 @cindex lock scheduler
6903 Set the scheduler locking mode. It applies to normal execution,
6904 record mode, and replay mode. If it is @code{off}, then there is no
6905 locking and any thread may run at any time. If @code{on}, then only
6906 the current thread may run when the inferior is resumed. The
6907 @code{step} mode optimizes for single-stepping; it prevents other
6908 threads from preempting the current thread while you are stepping, so
6909 that the focus of debugging does not change unexpectedly. Other
6910 threads never get a chance to run when you step, and they are
6911 completely free to run when you use commands like @samp{continue},
6912 @samp{until}, or @samp{finish}. However, unless another thread hits a
6913 breakpoint during its timeslice, @value{GDBN} does not change the
6914 current thread away from the thread that you are debugging. The
6915 @code{replay} mode behaves like @code{off} in record mode and like
6916 @code{on} in replay mode.
6917
6918 @item show scheduler-locking
6919 Display the current scheduler locking mode.
6920 @end table
6921
6922 @cindex resume threads of multiple processes simultaneously
6923 By default, when you issue one of the execution commands such as
6924 @code{continue}, @code{next} or @code{step}, @value{GDBN} allows only
6925 threads of the current inferior to run. For example, if @value{GDBN}
6926 is attached to two inferiors, each with two threads, the
6927 @code{continue} command resumes only the two threads of the current
6928 inferior. This is useful, for example, when you debug a program that
6929 forks and you want to hold the parent stopped (so that, for instance,
6930 it doesn't run to exit), while you debug the child. In other
6931 situations, you may not be interested in inspecting the current state
6932 of any of the processes @value{GDBN} is attached to, and you may want
6933 to resume them all until some breakpoint is hit. In the latter case,
6934 you can instruct @value{GDBN} to allow all threads of all the
6935 inferiors to run with the @w{@code{set schedule-multiple}} command.
6936
6937 @table @code
6938 @kindex set schedule-multiple
6939 @item set schedule-multiple
6940 Set the mode for allowing threads of multiple processes to be resumed
6941 when an execution command is issued. When @code{on}, all threads of
6942 all processes are allowed to run. When @code{off}, only the threads
6943 of the current process are resumed. The default is @code{off}. The
6944 @code{scheduler-locking} mode takes precedence when set to @code{on},
6945 or while you are stepping and set to @code{step}.
6946
6947 @item show schedule-multiple
6948 Display the current mode for resuming the execution of threads of
6949 multiple processes.
6950 @end table
6951
6952 @node Non-Stop Mode
6953 @subsection Non-Stop Mode
6954
6955 @cindex non-stop mode
6956
6957 @c This section is really only a place-holder, and needs to be expanded
6958 @c with more details.
6959
6960 For some multi-threaded targets, @value{GDBN} supports an optional
6961 mode of operation in which you can examine stopped program threads in
6962 the debugger while other threads continue to execute freely. This
6963 minimizes intrusion when debugging live systems, such as programs
6964 where some threads have real-time constraints or must continue to
6965 respond to external events. This is referred to as @dfn{non-stop} mode.
6966
6967 In non-stop mode, when a thread stops to report a debugging event,
6968 @emph{only} that thread is stopped; @value{GDBN} does not stop other
6969 threads as well, in contrast to the all-stop mode behavior. Additionally,
6970 execution commands such as @code{continue} and @code{step} apply by default
6971 only to the current thread in non-stop mode, rather than all threads as
6972 in all-stop mode. This allows you to control threads explicitly in
6973 ways that are not possible in all-stop mode --- for example, stepping
6974 one thread while allowing others to run freely, stepping
6975 one thread while holding all others stopped, or stepping several threads
6976 independently and simultaneously.
6977
6978 To enter non-stop mode, use this sequence of commands before you run
6979 or attach to your program:
6980
6981 @smallexample
6982 # If using the CLI, pagination breaks non-stop.
6983 set pagination off
6984
6985 # Finally, turn it on!
6986 set non-stop on
6987 @end smallexample
6988
6989 You can use these commands to manipulate the non-stop mode setting:
6990
6991 @table @code
6992 @kindex set non-stop
6993 @item set non-stop on
6994 Enable selection of non-stop mode.
6995 @item set non-stop off
6996 Disable selection of non-stop mode.
6997 @kindex show non-stop
6998 @item show non-stop
6999 Show the current non-stop enablement setting.
7000 @end table
7001
7002 Note these commands only reflect whether non-stop mode is enabled,
7003 not whether the currently-executing program is being run in non-stop mode.
7004 In particular, the @code{set non-stop} preference is only consulted when
7005 @value{GDBN} starts or connects to the target program, and it is generally
7006 not possible to switch modes once debugging has started. Furthermore,
7007 since not all targets support non-stop mode, even when you have enabled
7008 non-stop mode, @value{GDBN} may still fall back to all-stop operation by
7009 default.
7010
7011 In non-stop mode, all execution commands apply only to the current thread
7012 by default. That is, @code{continue} only continues one thread.
7013 To continue all threads, issue @code{continue -a} or @code{c -a}.
7014
7015 You can use @value{GDBN}'s background execution commands
7016 (@pxref{Background Execution}) to run some threads in the background
7017 while you continue to examine or step others from @value{GDBN}.
7018 The MI execution commands (@pxref{GDB/MI Program Execution}) are
7019 always executed asynchronously in non-stop mode.
7020
7021 Suspending execution is done with the @code{interrupt} command when
7022 running in the background, or @kbd{Ctrl-c} during foreground execution.
7023 In all-stop mode, this stops the whole process;
7024 but in non-stop mode the interrupt applies only to the current thread.
7025 To stop the whole program, use @code{interrupt -a}.
7026
7027 Other execution commands do not currently support the @code{-a} option.
7028
7029 In non-stop mode, when a thread stops, @value{GDBN} doesn't automatically make
7030 that thread current, as it does in all-stop mode. This is because the
7031 thread stop notifications are asynchronous with respect to @value{GDBN}'s
7032 command interpreter, and it would be confusing if @value{GDBN} unexpectedly
7033 changed to a different thread just as you entered a command to operate on the
7034 previously current thread.
7035
7036 @node Background Execution
7037 @subsection Background Execution
7038
7039 @cindex foreground execution
7040 @cindex background execution
7041 @cindex asynchronous execution
7042 @cindex execution, foreground, background and asynchronous
7043
7044 @value{GDBN}'s execution commands have two variants: the normal
7045 foreground (synchronous) behavior, and a background
7046 (asynchronous) behavior. In foreground execution, @value{GDBN} waits for
7047 the program to report that some thread has stopped before prompting for
7048 another command. In background execution, @value{GDBN} immediately gives
7049 a command prompt so that you can issue other commands while your program runs.
7050
7051 If the target doesn't support async mode, @value{GDBN} issues an error
7052 message if you attempt to use the background execution commands.
7053
7054 @cindex @code{&}, background execution of commands
7055 To specify background execution, add a @code{&} to the command. For example,
7056 the background form of the @code{continue} command is @code{continue&}, or
7057 just @code{c&}. The execution commands that accept background execution
7058 are:
7059
7060 @table @code
7061 @kindex run&
7062 @item run
7063 @xref{Starting, , Starting your Program}.
7064
7065 @item attach
7066 @kindex attach&
7067 @xref{Attach, , Debugging an Already-running Process}.
7068
7069 @item step
7070 @kindex step&
7071 @xref{Continuing and Stepping, step}.
7072
7073 @item stepi
7074 @kindex stepi&
7075 @xref{Continuing and Stepping, stepi}.
7076
7077 @item next
7078 @kindex next&
7079 @xref{Continuing and Stepping, next}.
7080
7081 @item nexti
7082 @kindex nexti&
7083 @xref{Continuing and Stepping, nexti}.
7084
7085 @item continue
7086 @kindex continue&
7087 @xref{Continuing and Stepping, continue}.
7088
7089 @item finish
7090 @kindex finish&
7091 @xref{Continuing and Stepping, finish}.
7092
7093 @item until
7094 @kindex until&
7095 @xref{Continuing and Stepping, until}.
7096
7097 @end table
7098
7099 Background execution is especially useful in conjunction with non-stop
7100 mode for debugging programs with multiple threads; see @ref{Non-Stop Mode}.
7101 However, you can also use these commands in the normal all-stop mode with
7102 the restriction that you cannot issue another execution command until the
7103 previous one finishes. Examples of commands that are valid in all-stop
7104 mode while the program is running include @code{help} and @code{info break}.
7105
7106 You can interrupt your program while it is running in the background by
7107 using the @code{interrupt} command.
7108
7109 @table @code
7110 @kindex interrupt
7111 @item interrupt
7112 @itemx interrupt -a
7113
7114 Suspend execution of the running program. In all-stop mode,
7115 @code{interrupt} stops the whole process, but in non-stop mode, it stops
7116 only the current thread. To stop the whole program in non-stop mode,
7117 use @code{interrupt -a}.
7118 @end table
7119
7120 @node Thread-Specific Breakpoints
7121 @subsection Thread-Specific Breakpoints
7122
7123 When your program has multiple threads (@pxref{Threads,, Debugging
7124 Programs with Multiple Threads}), you can choose whether to set
7125 breakpoints on all threads, or on a particular thread.
7126
7127 @table @code
7128 @cindex breakpoints and threads
7129 @cindex thread breakpoints
7130 @kindex break @dots{} thread @var{thread-id}
7131 @item break @var{location} thread @var{thread-id}
7132 @itemx break @var{location} thread @var{thread-id} if @dots{}
7133 @var{location} specifies source lines; there are several ways of
7134 writing them (@pxref{Specify Location}), but the effect is always to
7135 specify some source line.
7136
7137 Use the qualifier @samp{thread @var{thread-id}} with a breakpoint command
7138 to specify that you only want @value{GDBN} to stop the program when a
7139 particular thread reaches this breakpoint. The @var{thread-id} specifier
7140 is one of the thread identifiers assigned by @value{GDBN}, shown
7141 in the first column of the @samp{info threads} display.
7142
7143 If you do not specify @samp{thread @var{thread-id}} when you set a
7144 breakpoint, the breakpoint applies to @emph{all} threads of your
7145 program.
7146
7147 You can use the @code{thread} qualifier on conditional breakpoints as
7148 well; in this case, place @samp{thread @var{thread-id}} before or
7149 after the breakpoint condition, like this:
7150
7151 @smallexample
7152 (@value{GDBP}) break frik.c:13 thread 28 if bartab > lim
7153 @end smallexample
7154
7155 @end table
7156
7157 Thread-specific breakpoints are automatically deleted when
7158 @value{GDBN} detects the corresponding thread is no longer in the
7159 thread list. For example:
7160
7161 @smallexample
7162 (@value{GDBP}) c
7163 Thread-specific breakpoint 3 deleted - thread 28 no longer in the thread list.
7164 @end smallexample
7165
7166 There are several ways for a thread to disappear, such as a regular
7167 thread exit, but also when you detach from the process with the
7168 @code{detach} command (@pxref{Attach, ,Debugging an Already-running
7169 Process}), or if @value{GDBN} loses the remote connection
7170 (@pxref{Remote Debugging}), etc. Note that with some targets,
7171 @value{GDBN} is only able to detect a thread has exited when the user
7172 explictly asks for the thread list with the @code{info threads}
7173 command.
7174
7175 @node Interrupted System Calls
7176 @subsection Interrupted System Calls
7177
7178 @cindex thread breakpoints and system calls
7179 @cindex system calls and thread breakpoints
7180 @cindex premature return from system calls
7181 There is an unfortunate side effect when using @value{GDBN} to debug
7182 multi-threaded programs. If one thread stops for a
7183 breakpoint, or for some other reason, and another thread is blocked in a
7184 system call, then the system call may return prematurely. This is a
7185 consequence of the interaction between multiple threads and the signals
7186 that @value{GDBN} uses to implement breakpoints and other events that
7187 stop execution.
7188
7189 To handle this problem, your program should check the return value of
7190 each system call and react appropriately. This is good programming
7191 style anyways.
7192
7193 For example, do not write code like this:
7194
7195 @smallexample
7196 sleep (10);
7197 @end smallexample
7198
7199 The call to @code{sleep} will return early if a different thread stops
7200 at a breakpoint or for some other reason.
7201
7202 Instead, write this:
7203
7204 @smallexample
7205 int unslept = 10;
7206 while (unslept > 0)
7207 unslept = sleep (unslept);
7208 @end smallexample
7209
7210 A system call is allowed to return early, so the system is still
7211 conforming to its specification. But @value{GDBN} does cause your
7212 multi-threaded program to behave differently than it would without
7213 @value{GDBN}.
7214
7215 Also, @value{GDBN} uses internal breakpoints in the thread library to
7216 monitor certain events such as thread creation and thread destruction.
7217 When such an event happens, a system call in another thread may return
7218 prematurely, even though your program does not appear to stop.
7219
7220 @node Observer Mode
7221 @subsection Observer Mode
7222
7223 If you want to build on non-stop mode and observe program behavior
7224 without any chance of disruption by @value{GDBN}, you can set
7225 variables to disable all of the debugger's attempts to modify state,
7226 whether by writing memory, inserting breakpoints, etc. These operate
7227 at a low level, intercepting operations from all commands.
7228
7229 When all of these are set to @code{off}, then @value{GDBN} is said to
7230 be @dfn{observer mode}. As a convenience, the variable
7231 @code{observer} can be set to disable these, plus enable non-stop
7232 mode.
7233
7234 Note that @value{GDBN} will not prevent you from making nonsensical
7235 combinations of these settings. For instance, if you have enabled
7236 @code{may-insert-breakpoints} but disabled @code{may-write-memory},
7237 then breakpoints that work by writing trap instructions into the code
7238 stream will still not be able to be placed.
7239
7240 @table @code
7241
7242 @kindex observer
7243 @item set observer on
7244 @itemx set observer off
7245 When set to @code{on}, this disables all the permission variables
7246 below (except for @code{insert-fast-tracepoints}), plus enables
7247 non-stop debugging. Setting this to @code{off} switches back to
7248 normal debugging, though remaining in non-stop mode.
7249
7250 @item show observer
7251 Show whether observer mode is on or off.
7252
7253 @kindex may-write-registers
7254 @item set may-write-registers on
7255 @itemx set may-write-registers off
7256 This controls whether @value{GDBN} will attempt to alter the values of
7257 registers, such as with assignment expressions in @code{print}, or the
7258 @code{jump} command. It defaults to @code{on}.
7259
7260 @item show may-write-registers
7261 Show the current permission to write registers.
7262
7263 @kindex may-write-memory
7264 @item set may-write-memory on
7265 @itemx set may-write-memory off
7266 This controls whether @value{GDBN} will attempt to alter the contents
7267 of memory, such as with assignment expressions in @code{print}. It
7268 defaults to @code{on}.
7269
7270 @item show may-write-memory
7271 Show the current permission to write memory.
7272
7273 @kindex may-insert-breakpoints
7274 @item set may-insert-breakpoints on
7275 @itemx set may-insert-breakpoints off
7276 This controls whether @value{GDBN} will attempt to insert breakpoints.
7277 This affects all breakpoints, including internal breakpoints defined
7278 by @value{GDBN}. It defaults to @code{on}.
7279
7280 @item show may-insert-breakpoints
7281 Show the current permission to insert breakpoints.
7282
7283 @kindex may-insert-tracepoints
7284 @item set may-insert-tracepoints on
7285 @itemx set may-insert-tracepoints off
7286 This controls whether @value{GDBN} will attempt to insert (regular)
7287 tracepoints at the beginning of a tracing experiment. It affects only
7288 non-fast tracepoints, fast tracepoints being under the control of
7289 @code{may-insert-fast-tracepoints}. It defaults to @code{on}.
7290
7291 @item show may-insert-tracepoints
7292 Show the current permission to insert tracepoints.
7293
7294 @kindex may-insert-fast-tracepoints
7295 @item set may-insert-fast-tracepoints on
7296 @itemx set may-insert-fast-tracepoints off
7297 This controls whether @value{GDBN} will attempt to insert fast
7298 tracepoints at the beginning of a tracing experiment. It affects only
7299 fast tracepoints, regular (non-fast) tracepoints being under the
7300 control of @code{may-insert-tracepoints}. It defaults to @code{on}.
7301
7302 @item show may-insert-fast-tracepoints
7303 Show the current permission to insert fast tracepoints.
7304
7305 @kindex may-interrupt
7306 @item set may-interrupt on
7307 @itemx set may-interrupt off
7308 This controls whether @value{GDBN} will attempt to interrupt or stop
7309 program execution. When this variable is @code{off}, the
7310 @code{interrupt} command will have no effect, nor will
7311 @kbd{Ctrl-c}. It defaults to @code{on}.
7312
7313 @item show may-interrupt
7314 Show the current permission to interrupt or stop the program.
7315
7316 @end table
7317
7318 @node Reverse Execution
7319 @chapter Running programs backward
7320 @cindex reverse execution
7321 @cindex running programs backward
7322
7323 When you are debugging a program, it is not unusual to realize that
7324 you have gone too far, and some event of interest has already happened.
7325 If the target environment supports it, @value{GDBN} can allow you to
7326 ``rewind'' the program by running it backward.
7327
7328 A target environment that supports reverse execution should be able
7329 to ``undo'' the changes in machine state that have taken place as the
7330 program was executing normally. Variables, registers etc.@: should
7331 revert to their previous values. Obviously this requires a great
7332 deal of sophistication on the part of the target environment; not
7333 all target environments can support reverse execution.
7334
7335 When a program is executed in reverse, the instructions that
7336 have most recently been executed are ``un-executed'', in reverse
7337 order. The program counter runs backward, following the previous
7338 thread of execution in reverse. As each instruction is ``un-executed'',
7339 the values of memory and/or registers that were changed by that
7340 instruction are reverted to their previous states. After executing
7341 a piece of source code in reverse, all side effects of that code
7342 should be ``undone'', and all variables should be returned to their
7343 prior values@footnote{
7344 Note that some side effects are easier to undo than others. For instance,
7345 memory and registers are relatively easy, but device I/O is hard. Some
7346 targets may be able undo things like device I/O, and some may not.
7347
7348 The contract between @value{GDBN} and the reverse executing target
7349 requires only that the target do something reasonable when
7350 @value{GDBN} tells it to execute backwards, and then report the
7351 results back to @value{GDBN}. Whatever the target reports back to
7352 @value{GDBN}, @value{GDBN} will report back to the user. @value{GDBN}
7353 assumes that the memory and registers that the target reports are in a
7354 consistent state, but @value{GDBN} accepts whatever it is given.
7355 }.
7356
7357 On some platforms, @value{GDBN} has built-in support for reverse
7358 execution, activated with the @code{record} or @code{record btrace}
7359 commands. @xref{Process Record and Replay}. Some remote targets,
7360 typically full system emulators, support reverse execution directly
7361 without requiring any special command.
7362
7363 If you are debugging in a target environment that supports
7364 reverse execution, @value{GDBN} provides the following commands.
7365
7366 @table @code
7367 @kindex reverse-continue
7368 @kindex rc @r{(@code{reverse-continue})}
7369 @item reverse-continue @r{[}@var{ignore-count}@r{]}
7370 @itemx rc @r{[}@var{ignore-count}@r{]}
7371 Beginning at the point where your program last stopped, start executing
7372 in reverse. Reverse execution will stop for breakpoints and synchronous
7373 exceptions (signals), just like normal execution. Behavior of
7374 asynchronous signals depends on the target environment.
7375
7376 @kindex reverse-step
7377 @kindex rs @r{(@code{step})}
7378 @item reverse-step @r{[}@var{count}@r{]}
7379 Run the program backward until control reaches the start of a
7380 different source line; then stop it, and return control to @value{GDBN}.
7381
7382 Like the @code{step} command, @code{reverse-step} will only stop
7383 at the beginning of a source line. It ``un-executes'' the previously
7384 executed source line. If the previous source line included calls to
7385 debuggable functions, @code{reverse-step} will step (backward) into
7386 the called function, stopping at the beginning of the @emph{last}
7387 statement in the called function (typically a return statement).
7388
7389 Also, as with the @code{step} command, if non-debuggable functions are
7390 called, @code{reverse-step} will run thru them backward without stopping.
7391
7392 @kindex reverse-stepi
7393 @kindex rsi @r{(@code{reverse-stepi})}
7394 @item reverse-stepi @r{[}@var{count}@r{]}
7395 Reverse-execute one machine instruction. Note that the instruction
7396 to be reverse-executed is @emph{not} the one pointed to by the program
7397 counter, but the instruction executed prior to that one. For instance,
7398 if the last instruction was a jump, @code{reverse-stepi} will take you
7399 back from the destination of the jump to the jump instruction itself.
7400
7401 @kindex reverse-next
7402 @kindex rn @r{(@code{reverse-next})}
7403 @item reverse-next @r{[}@var{count}@r{]}
7404 Run backward to the beginning of the previous line executed in
7405 the current (innermost) stack frame. If the line contains function
7406 calls, they will be ``un-executed'' without stopping. Starting from
7407 the first line of a function, @code{reverse-next} will take you back
7408 to the caller of that function, @emph{before} the function was called,
7409 just as the normal @code{next} command would take you from the last
7410 line of a function back to its return to its caller
7411 @footnote{Unless the code is too heavily optimized.}.
7412
7413 @kindex reverse-nexti
7414 @kindex rni @r{(@code{reverse-nexti})}
7415 @item reverse-nexti @r{[}@var{count}@r{]}
7416 Like @code{nexti}, @code{reverse-nexti} executes a single instruction
7417 in reverse, except that called functions are ``un-executed'' atomically.
7418 That is, if the previously executed instruction was a return from
7419 another function, @code{reverse-nexti} will continue to execute
7420 in reverse until the call to that function (from the current stack
7421 frame) is reached.
7422
7423 @kindex reverse-finish
7424 @item reverse-finish
7425 Just as the @code{finish} command takes you to the point where the
7426 current function returns, @code{reverse-finish} takes you to the point
7427 where it was called. Instead of ending up at the end of the current
7428 function invocation, you end up at the beginning.
7429
7430 @kindex set exec-direction
7431 @item set exec-direction
7432 Set the direction of target execution.
7433 @item set exec-direction reverse
7434 @cindex execute forward or backward in time
7435 @value{GDBN} will perform all execution commands in reverse, until the
7436 exec-direction mode is changed to ``forward''. Affected commands include
7437 @code{step, stepi, next, nexti, continue, and finish}. The @code{return}
7438 command cannot be used in reverse mode.
7439 @item set exec-direction forward
7440 @value{GDBN} will perform all execution commands in the normal fashion.
7441 This is the default.
7442 @end table
7443
7444
7445 @node Process Record and Replay
7446 @chapter Recording Inferior's Execution and Replaying It
7447 @cindex process record and replay
7448 @cindex recording inferior's execution and replaying it
7449
7450 On some platforms, @value{GDBN} provides a special @dfn{process record
7451 and replay} target that can record a log of the process execution, and
7452 replay it later with both forward and reverse execution commands.
7453
7454 @cindex replay mode
7455 When this target is in use, if the execution log includes the record
7456 for the next instruction, @value{GDBN} will debug in @dfn{replay
7457 mode}. In the replay mode, the inferior does not really execute code
7458 instructions. Instead, all the events that normally happen during
7459 code execution are taken from the execution log. While code is not
7460 really executed in replay mode, the values of registers (including the
7461 program counter register) and the memory of the inferior are still
7462 changed as they normally would. Their contents are taken from the
7463 execution log.
7464
7465 @cindex record mode
7466 If the record for the next instruction is not in the execution log,
7467 @value{GDBN} will debug in @dfn{record mode}. In this mode, the
7468 inferior executes normally, and @value{GDBN} records the execution log
7469 for future replay.
7470
7471 The process record and replay target supports reverse execution
7472 (@pxref{Reverse Execution}), even if the platform on which the
7473 inferior runs does not. However, the reverse execution is limited in
7474 this case by the range of the instructions recorded in the execution
7475 log. In other words, reverse execution on platforms that don't
7476 support it directly can only be done in the replay mode.
7477
7478 When debugging in the reverse direction, @value{GDBN} will work in
7479 replay mode as long as the execution log includes the record for the
7480 previous instruction; otherwise, it will work in record mode, if the
7481 platform supports reverse execution, or stop if not.
7482
7483 Currently, process record and replay is supported on ARM, Aarch64,
7484 Moxie, PowerPC, PowerPC64, S/390, and x86 (i386/amd64) running
7485 GNU/Linux. Process record and replay can be used both when native
7486 debugging, and when remote debugging via @code{gdbserver}.
7487
7488 For architecture environments that support process record and replay,
7489 @value{GDBN} provides the following commands:
7490
7491 @table @code
7492 @kindex target record
7493 @kindex target record-full
7494 @kindex target record-btrace
7495 @kindex record
7496 @kindex record full
7497 @kindex record btrace
7498 @kindex record btrace bts
7499 @kindex record btrace pt
7500 @kindex record bts
7501 @kindex record pt
7502 @kindex rec
7503 @kindex rec full
7504 @kindex rec btrace
7505 @kindex rec btrace bts
7506 @kindex rec btrace pt
7507 @kindex rec bts
7508 @kindex rec pt
7509 @item record @var{method}
7510 This command starts the process record and replay target. The
7511 recording method can be specified as parameter. Without a parameter
7512 the command uses the @code{full} recording method. The following
7513 recording methods are available:
7514
7515 @table @code
7516 @item full
7517 Full record/replay recording using @value{GDBN}'s software record and
7518 replay implementation. This method allows replaying and reverse
7519 execution.
7520
7521 @item btrace @var{format}
7522 Hardware-supported instruction recording, supported on Intel
7523 processors. This method does not record data. Further, the data is
7524 collected in a ring buffer so old data will be overwritten when the
7525 buffer is full. It allows limited reverse execution. Variables and
7526 registers are not available during reverse execution. In remote
7527 debugging, recording continues on disconnect. Recorded data can be
7528 inspected after reconnecting. The recording may be stopped using
7529 @code{record stop}.
7530
7531 The recording format can be specified as parameter. Without a parameter
7532 the command chooses the recording format. The following recording
7533 formats are available:
7534
7535 @table @code
7536 @item bts
7537 @cindex branch trace store
7538 Use the @dfn{Branch Trace Store} (@acronym{BTS}) recording format. In
7539 this format, the processor stores a from/to record for each executed
7540 branch in the btrace ring buffer.
7541
7542 @item pt
7543 @cindex Intel Processor Trace
7544 Use the @dfn{Intel Processor Trace} recording format. In this
7545 format, the processor stores the execution trace in a compressed form
7546 that is afterwards decoded by @value{GDBN}.
7547
7548 The trace can be recorded with very low overhead. The compressed
7549 trace format also allows small trace buffers to already contain a big
7550 number of instructions compared to @acronym{BTS}.
7551
7552 Decoding the recorded execution trace, on the other hand, is more
7553 expensive than decoding @acronym{BTS} trace. This is mostly due to the
7554 increased number of instructions to process. You should increase the
7555 buffer-size with care.
7556 @end table
7557
7558 Not all recording formats may be available on all processors.
7559 @end table
7560
7561 The process record and replay target can only debug a process that is
7562 already running. Therefore, you need first to start the process with
7563 the @kbd{run} or @kbd{start} commands, and then start the recording
7564 with the @kbd{record @var{method}} command.
7565
7566 @cindex displaced stepping, and process record and replay
7567 Displaced stepping (@pxref{Maintenance Commands,, displaced stepping})
7568 will be automatically disabled when process record and replay target
7569 is started. That's because the process record and replay target
7570 doesn't support displaced stepping.
7571
7572 @cindex non-stop mode, and process record and replay
7573 @cindex asynchronous execution, and process record and replay
7574 If the inferior is in the non-stop mode (@pxref{Non-Stop Mode}) or in
7575 the asynchronous execution mode (@pxref{Background Execution}), not
7576 all recording methods are available. The @code{full} recording method
7577 does not support these two modes.
7578
7579 @kindex record stop
7580 @kindex rec s
7581 @item record stop
7582 Stop the process record and replay target. When process record and
7583 replay target stops, the entire execution log will be deleted and the
7584 inferior will either be terminated, or will remain in its final state.
7585
7586 When you stop the process record and replay target in record mode (at
7587 the end of the execution log), the inferior will be stopped at the
7588 next instruction that would have been recorded. In other words, if
7589 you record for a while and then stop recording, the inferior process
7590 will be left in the same state as if the recording never happened.
7591
7592 On the other hand, if the process record and replay target is stopped
7593 while in replay mode (that is, not at the end of the execution log,
7594 but at some earlier point), the inferior process will become ``live''
7595 at that earlier state, and it will then be possible to continue the
7596 usual ``live'' debugging of the process from that state.
7597
7598 When the inferior process exits, or @value{GDBN} detaches from it,
7599 process record and replay target will automatically stop itself.
7600
7601 @kindex record goto
7602 @item record goto
7603 Go to a specific location in the execution log. There are several
7604 ways to specify the location to go to:
7605
7606 @table @code
7607 @item record goto begin
7608 @itemx record goto start
7609 Go to the beginning of the execution log.
7610
7611 @item record goto end
7612 Go to the end of the execution log.
7613
7614 @item record goto @var{n}
7615 Go to instruction number @var{n} in the execution log.
7616 @end table
7617
7618 @kindex record save
7619 @item record save @var{filename}
7620 Save the execution log to a file @file{@var{filename}}.
7621 Default filename is @file{gdb_record.@var{process_id}}, where
7622 @var{process_id} is the process ID of the inferior.
7623
7624 This command may not be available for all recording methods.
7625
7626 @kindex record restore
7627 @item record restore @var{filename}
7628 Restore the execution log from a file @file{@var{filename}}.
7629 File must have been created with @code{record save}.
7630
7631 @kindex set record full
7632 @item set record full insn-number-max @var{limit}
7633 @itemx set record full insn-number-max unlimited
7634 Set the limit of instructions to be recorded for the @code{full}
7635 recording method. Default value is 200000.
7636
7637 If @var{limit} is a positive number, then @value{GDBN} will start
7638 deleting instructions from the log once the number of the record
7639 instructions becomes greater than @var{limit}. For every new recorded
7640 instruction, @value{GDBN} will delete the earliest recorded
7641 instruction to keep the number of recorded instructions at the limit.
7642 (Since deleting recorded instructions loses information, @value{GDBN}
7643 lets you control what happens when the limit is reached, by means of
7644 the @code{stop-at-limit} option, described below.)
7645
7646 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will never
7647 delete recorded instructions from the execution log. The number of
7648 recorded instructions is limited only by the available memory.
7649
7650 @kindex show record full
7651 @item show record full insn-number-max
7652 Show the limit of instructions to be recorded with the @code{full}
7653 recording method.
7654
7655 @item set record full stop-at-limit
7656 Control the behavior of the @code{full} recording method when the
7657 number of recorded instructions reaches the limit. If ON (the
7658 default), @value{GDBN} will stop when the limit is reached for the
7659 first time and ask you whether you want to stop the inferior or
7660 continue running it and recording the execution log. If you decide
7661 to continue recording, each new recorded instruction will cause the
7662 oldest one to be deleted.
7663
7664 If this option is OFF, @value{GDBN} will automatically delete the
7665 oldest record to make room for each new one, without asking.
7666
7667 @item show record full stop-at-limit
7668 Show the current setting of @code{stop-at-limit}.
7669
7670 @item set record full memory-query
7671 Control the behavior when @value{GDBN} is unable to record memory
7672 changes caused by an instruction for the @code{full} recording method.
7673 If ON, @value{GDBN} will query whether to stop the inferior in that
7674 case.
7675
7676 If this option is OFF (the default), @value{GDBN} will automatically
7677 ignore the effect of such instructions on memory. Later, when
7678 @value{GDBN} replays this execution log, it will mark the log of this
7679 instruction as not accessible, and it will not affect the replay
7680 results.
7681
7682 @item show record full memory-query
7683 Show the current setting of @code{memory-query}.
7684
7685 @kindex set record btrace
7686 The @code{btrace} record target does not trace data. As a
7687 convenience, when replaying, @value{GDBN} reads read-only memory off
7688 the live program directly, assuming that the addresses of the
7689 read-only areas don't change. This for example makes it possible to
7690 disassemble code while replaying, but not to print variables.
7691 In some cases, being able to inspect variables might be useful.
7692 You can use the following command for that:
7693
7694 @item set record btrace replay-memory-access
7695 Control the behavior of the @code{btrace} recording method when
7696 accessing memory during replay. If @code{read-only} (the default),
7697 @value{GDBN} will only allow accesses to read-only memory.
7698 If @code{read-write}, @value{GDBN} will allow accesses to read-only
7699 and to read-write memory. Beware that the accessed memory corresponds
7700 to the live target and not necessarily to the current replay
7701 position.
7702
7703 @item set record btrace cpu @var{identifier}
7704 Set the processor to be used for enabling workarounds for processor
7705 errata when decoding the trace.
7706
7707 Processor errata are defects in processor operation, caused by its
7708 design or manufacture. They can cause a trace not to match the
7709 specification. This, in turn, may cause trace decode to fail.
7710 @value{GDBN} can detect erroneous trace packets and correct them, thus
7711 avoiding the decoding failures. These corrections are known as
7712 @dfn{errata workarounds}, and are enabled based on the processor on
7713 which the trace was recorded.
7714
7715 By default, @value{GDBN} attempts to detect the processor
7716 automatically, and apply the necessary workarounds for it. However,
7717 you may need to specify the processor if @value{GDBN} does not yet
7718 support it. This command allows you to do that, and also allows to
7719 disable the workarounds.
7720
7721 The argument @var{identifier} identifies the @sc{cpu} and is of the
7722 form: @code{@var{vendor}:@var{processor identifier}}. In addition,
7723 there are two special identifiers, @code{none} and @code{auto}
7724 (default).
7725
7726 The following vendor identifiers and corresponding processor
7727 identifiers are currently supported:
7728
7729 @multitable @columnfractions .1 .9
7730
7731 @item @code{intel}
7732 @tab @var{family}/@var{model}[/@var{stepping}]
7733
7734 @end multitable
7735
7736 On GNU/Linux systems, the processor @var{family}, @var{model}, and
7737 @var{stepping} can be obtained from @code{/proc/cpuinfo}.
7738
7739 If @var{identifier} is @code{auto}, enable errata workarounds for the
7740 processor on which the trace was recorded. If @var{identifier} is
7741 @code{none}, errata workarounds are disabled.
7742
7743 For example, when using an old @value{GDBN} on a new system, decode
7744 may fail because @value{GDBN} does not support the new processor. It
7745 often suffices to specify an older processor that @value{GDBN}
7746 supports.
7747
7748 @smallexample
7749 (gdb) info record
7750 Active record target: record-btrace
7751 Recording format: Intel Processor Trace.
7752 Buffer size: 16kB.
7753 Failed to configure the Intel Processor Trace decoder: unknown cpu.
7754 (gdb) set record btrace cpu intel:6/158
7755 (gdb) info record
7756 Active record target: record-btrace
7757 Recording format: Intel Processor Trace.
7758 Buffer size: 16kB.
7759 Recorded 84872 instructions in 3189 functions (0 gaps) for thread 1 (...).
7760 @end smallexample
7761
7762 @kindex show record btrace
7763 @item show record btrace replay-memory-access
7764 Show the current setting of @code{replay-memory-access}.
7765
7766 @item show record btrace cpu
7767 Show the processor to be used for enabling trace decode errata
7768 workarounds.
7769
7770 @kindex set record btrace bts
7771 @item set record btrace bts buffer-size @var{size}
7772 @itemx set record btrace bts buffer-size unlimited
7773 Set the requested ring buffer size for branch tracing in @acronym{BTS}
7774 format. Default is 64KB.
7775
7776 If @var{size} is a positive number, then @value{GDBN} will try to
7777 allocate a buffer of at least @var{size} bytes for each new thread
7778 that uses the btrace recording method and the @acronym{BTS} format.
7779 The actually obtained buffer size may differ from the requested
7780 @var{size}. Use the @code{info record} command to see the actual
7781 buffer size for each thread that uses the btrace recording method and
7782 the @acronym{BTS} format.
7783
7784 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7785 allocate a buffer of 4MB.
7786
7787 Bigger buffers mean longer traces. On the other hand, @value{GDBN} will
7788 also need longer to process the branch trace data before it can be used.
7789
7790 @item show record btrace bts buffer-size @var{size}
7791 Show the current setting of the requested ring buffer size for branch
7792 tracing in @acronym{BTS} format.
7793
7794 @kindex set record btrace pt
7795 @item set record btrace pt buffer-size @var{size}
7796 @itemx set record btrace pt buffer-size unlimited
7797 Set the requested ring buffer size for branch tracing in Intel
7798 Processor Trace format. Default is 16KB.
7799
7800 If @var{size} is a positive number, then @value{GDBN} will try to
7801 allocate a buffer of at least @var{size} bytes for each new thread
7802 that uses the btrace recording method and the Intel Processor Trace
7803 format. The actually obtained buffer size may differ from the
7804 requested @var{size}. Use the @code{info record} command to see the
7805 actual buffer size for each thread.
7806
7807 If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7808 allocate a buffer of 4MB.
7809
7810 Bigger buffers mean longer traces. On the other hand, @value{GDBN} will
7811 also need longer to process the branch trace data before it can be used.
7812
7813 @item show record btrace pt buffer-size @var{size}
7814 Show the current setting of the requested ring buffer size for branch
7815 tracing in Intel Processor Trace format.
7816
7817 @kindex info record
7818 @item info record
7819 Show various statistics about the recording depending on the recording
7820 method:
7821
7822 @table @code
7823 @item full
7824 For the @code{full} recording method, it shows the state of process
7825 record and its in-memory execution log buffer, including:
7826
7827 @itemize @bullet
7828 @item
7829 Whether in record mode or replay mode.
7830 @item
7831 Lowest recorded instruction number (counting from when the current execution log started recording instructions).
7832 @item
7833 Highest recorded instruction number.
7834 @item
7835 Current instruction about to be replayed (if in replay mode).
7836 @item
7837 Number of instructions contained in the execution log.
7838 @item
7839 Maximum number of instructions that may be contained in the execution log.
7840 @end itemize
7841
7842 @item btrace
7843 For the @code{btrace} recording method, it shows:
7844
7845 @itemize @bullet
7846 @item
7847 Recording format.
7848 @item
7849 Number of instructions that have been recorded.
7850 @item
7851 Number of blocks of sequential control-flow formed by the recorded
7852 instructions.
7853 @item
7854 Whether in record mode or replay mode.
7855 @end itemize
7856
7857 For the @code{bts} recording format, it also shows:
7858 @itemize @bullet
7859 @item
7860 Size of the perf ring buffer.
7861 @end itemize
7862
7863 For the @code{pt} recording format, it also shows:
7864 @itemize @bullet
7865 @item
7866 Size of the perf ring buffer.
7867 @end itemize
7868 @end table
7869
7870 @kindex record delete
7871 @kindex rec del
7872 @item record delete
7873 When record target runs in replay mode (``in the past''), delete the
7874 subsequent execution log and begin to record a new execution log starting
7875 from the current address. This means you will abandon the previously
7876 recorded ``future'' and begin recording a new ``future''.
7877
7878 @kindex record instruction-history
7879 @kindex rec instruction-history
7880 @item record instruction-history
7881 Disassembles instructions from the recorded execution log. By
7882 default, ten instructions are disassembled. This can be changed using
7883 the @code{set record instruction-history-size} command. Instructions
7884 are printed in execution order.
7885
7886 It can also print mixed source+disassembly if you specify the the
7887 @code{/m} or @code{/s} modifier, and print the raw instructions in hex
7888 as well as in symbolic form by specifying the @code{/r} modifier.
7889
7890 The current position marker is printed for the instruction at the
7891 current program counter value. This instruction can appear multiple
7892 times in the trace and the current position marker will be printed
7893 every time. To omit the current position marker, specify the
7894 @code{/p} modifier.
7895
7896 To better align the printed instructions when the trace contains
7897 instructions from more than one function, the function name may be
7898 omitted by specifying the @code{/f} modifier.
7899
7900 Speculatively executed instructions are prefixed with @samp{?}. This
7901 feature is not available for all recording formats.
7902
7903 There are several ways to specify what part of the execution log to
7904 disassemble:
7905
7906 @table @code
7907 @item record instruction-history @var{insn}
7908 Disassembles ten instructions starting from instruction number
7909 @var{insn}.
7910
7911 @item record instruction-history @var{insn}, +/-@var{n}
7912 Disassembles @var{n} instructions around instruction number
7913 @var{insn}. If @var{n} is preceded with @code{+}, disassembles
7914 @var{n} instructions after instruction number @var{insn}. If
7915 @var{n} is preceded with @code{-}, disassembles @var{n}
7916 instructions before instruction number @var{insn}.
7917
7918 @item record instruction-history
7919 Disassembles ten more instructions after the last disassembly.
7920
7921 @item record instruction-history -
7922 Disassembles ten more instructions before the last disassembly.
7923
7924 @item record instruction-history @var{begin}, @var{end}
7925 Disassembles instructions beginning with instruction number
7926 @var{begin} until instruction number @var{end}. The instruction
7927 number @var{end} is included.
7928 @end table
7929
7930 This command may not be available for all recording methods.
7931
7932 @kindex set record
7933 @item set record instruction-history-size @var{size}
7934 @itemx set record instruction-history-size unlimited
7935 Define how many instructions to disassemble in the @code{record
7936 instruction-history} command. The default value is 10.
7937 A @var{size} of @code{unlimited} means unlimited instructions.
7938
7939 @kindex show record
7940 @item show record instruction-history-size
7941 Show how many instructions to disassemble in the @code{record
7942 instruction-history} command.
7943
7944 @kindex record function-call-history
7945 @kindex rec function-call-history
7946 @item record function-call-history
7947 Prints the execution history at function granularity. For each sequence
7948 of instructions that belong to the same function, it prints the name of
7949 that function, the source lines for this instruction sequence (if the
7950 @code{/l} modifier is specified), and the instructions numbers that form
7951 the sequence (if the @code{/i} modifier is specified). The function names
7952 are indented to reflect the call stack depth if the @code{/c} modifier is
7953 specified. The @code{/l}, @code{/i}, and @code{/c} modifiers can be given
7954 together.
7955
7956 @smallexample
7957 (@value{GDBP}) @b{list 1, 10}
7958 1 void foo (void)
7959 2 @{
7960 3 @}
7961 4
7962 5 void bar (void)
7963 6 @{
7964 7 ...
7965 8 foo ();
7966 9 ...
7967 10 @}
7968 (@value{GDBP}) @b{record function-call-history /ilc}
7969 1 bar inst 1,4 at foo.c:6,8
7970 2 foo inst 5,10 at foo.c:2,3
7971 3 bar inst 11,13 at foo.c:9,10
7972 @end smallexample
7973
7974 By default, ten functions are printed. This can be changed using the
7975 @code{set record function-call-history-size} command. Functions are
7976 printed in execution order. There are several ways to specify what
7977 to print:
7978
7979 @table @code
7980 @item record function-call-history @var{func}
7981 Prints ten functions starting from function number @var{func}.
7982
7983 @item record function-call-history @var{func}, +/-@var{n}
7984 Prints @var{n} functions around function number @var{func}. If
7985 @var{n} is preceded with @code{+}, prints @var{n} functions after
7986 function number @var{func}. If @var{n} is preceded with @code{-},
7987 prints @var{n} functions before function number @var{func}.
7988
7989 @item record function-call-history
7990 Prints ten more functions after the last ten-function print.
7991
7992 @item record function-call-history -
7993 Prints ten more functions before the last ten-function print.
7994
7995 @item record function-call-history @var{begin}, @var{end}
7996 Prints functions beginning with function number @var{begin} until
7997 function number @var{end}. The function number @var{end} is included.
7998 @end table
7999
8000 This command may not be available for all recording methods.
8001
8002 @item set record function-call-history-size @var{size}
8003 @itemx set record function-call-history-size unlimited
8004 Define how many functions to print in the
8005 @code{record function-call-history} command. The default value is 10.
8006 A size of @code{unlimited} means unlimited functions.
8007
8008 @item show record function-call-history-size
8009 Show how many functions to print in the
8010 @code{record function-call-history} command.
8011 @end table
8012
8013
8014 @node Stack
8015 @chapter Examining the Stack
8016
8017 When your program has stopped, the first thing you need to know is where it
8018 stopped and how it got there.
8019
8020 @cindex call stack
8021 Each time your program performs a function call, information about the call
8022 is generated.
8023 That information includes the location of the call in your program,
8024 the arguments of the call,
8025 and the local variables of the function being called.
8026 The information is saved in a block of data called a @dfn{stack frame}.
8027 The stack frames are allocated in a region of memory called the @dfn{call
8028 stack}.
8029
8030 When your program stops, the @value{GDBN} commands for examining the
8031 stack allow you to see all of this information.
8032
8033 @cindex selected frame
8034 One of the stack frames is @dfn{selected} by @value{GDBN} and many
8035 @value{GDBN} commands refer implicitly to the selected frame. In
8036 particular, whenever you ask @value{GDBN} for the value of a variable in
8037 your program, the value is found in the selected frame. There are
8038 special @value{GDBN} commands to select whichever frame you are
8039 interested in. @xref{Selection, ,Selecting a Frame}.
8040
8041 When your program stops, @value{GDBN} automatically selects the
8042 currently executing frame and describes it briefly, similar to the
8043 @code{frame} command (@pxref{Frame Info, ,Information about a Frame}).
8044
8045 @menu
8046 * Frames:: Stack frames
8047 * Backtrace:: Backtraces
8048 * Selection:: Selecting a frame
8049 * Frame Info:: Information on a frame
8050 * Frame Apply:: Applying a command to several frames
8051 * Frame Filter Management:: Managing frame filters
8052
8053 @end menu
8054
8055 @node Frames
8056 @section Stack Frames
8057
8058 @cindex frame, definition
8059 @cindex stack frame
8060 The call stack is divided up into contiguous pieces called @dfn{stack
8061 frames}, or @dfn{frames} for short; each frame is the data associated
8062 with one call to one function. The frame contains the arguments given
8063 to the function, the function's local variables, and the address at
8064 which the function is executing.
8065
8066 @cindex initial frame
8067 @cindex outermost frame
8068 @cindex innermost frame
8069 When your program is started, the stack has only one frame, that of the
8070 function @code{main}. This is called the @dfn{initial} frame or the
8071 @dfn{outermost} frame. Each time a function is called, a new frame is
8072 made. Each time a function returns, the frame for that function invocation
8073 is eliminated. If a function is recursive, there can be many frames for
8074 the same function. The frame for the function in which execution is
8075 actually occurring is called the @dfn{innermost} frame. This is the most
8076 recently created of all the stack frames that still exist.
8077
8078 @cindex frame pointer
8079 Inside your program, stack frames are identified by their addresses. A
8080 stack frame consists of many bytes, each of which has its own address; each
8081 kind of computer has a convention for choosing one byte whose
8082 address serves as the address of the frame. Usually this address is kept
8083 in a register called the @dfn{frame pointer register}
8084 (@pxref{Registers, $fp}) while execution is going on in that frame.
8085
8086 @cindex frame level
8087 @cindex frame number
8088 @value{GDBN} labels each existing stack frame with a @dfn{level}, a
8089 number that is zero for the innermost frame, one for the frame that
8090 called it, and so on upward. These level numbers give you a way of
8091 designating stack frames in @value{GDBN} commands. The terms
8092 @dfn{frame number} and @dfn{frame level} can be used interchangeably to
8093 describe this number.
8094
8095 @c The -fomit-frame-pointer below perennially causes hbox overflow
8096 @c underflow problems.
8097 @cindex frameless execution
8098 Some compilers provide a way to compile functions so that they operate
8099 without stack frames. (For example, the @value{NGCC} option
8100 @smallexample
8101 @samp{-fomit-frame-pointer}
8102 @end smallexample
8103 generates functions without a frame.)
8104 This is occasionally done with heavily used library functions to save
8105 the frame setup time. @value{GDBN} has limited facilities for dealing
8106 with these function invocations. If the innermost function invocation
8107 has no stack frame, @value{GDBN} nevertheless regards it as though
8108 it had a separate frame, which is numbered zero as usual, allowing
8109 correct tracing of the function call chain. However, @value{GDBN} has
8110 no provision for frameless functions elsewhere in the stack.
8111
8112 @node Backtrace
8113 @section Backtraces
8114
8115 @cindex traceback
8116 @cindex call stack traces
8117 A backtrace is a summary of how your program got where it is. It shows one
8118 line per frame, for many frames, starting with the currently executing
8119 frame (frame zero), followed by its caller (frame one), and on up the
8120 stack.
8121
8122 @anchor{backtrace-command}
8123 @kindex backtrace
8124 @kindex bt @r{(@code{backtrace})}
8125 To print a backtrace of the entire stack, use the @code{backtrace}
8126 command, or its alias @code{bt}. This command will print one line per
8127 frame for frames in the stack. By default, all stack frames are
8128 printed. You can stop the backtrace at any time by typing the system
8129 interrupt character, normally @kbd{Ctrl-c}.
8130
8131 @table @code
8132 @item backtrace [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8133 @itemx bt [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8134 Print the backtrace of the entire stack.
8135
8136 The optional @var{count} can be one of the following:
8137
8138 @table @code
8139 @item @var{n}
8140 @itemx @var{n}
8141 Print only the innermost @var{n} frames, where @var{n} is a positive
8142 number.
8143
8144 @item -@var{n}
8145 @itemx -@var{n}
8146 Print only the outermost @var{n} frames, where @var{n} is a positive
8147 number.
8148 @end table
8149
8150 Options:
8151
8152 @table @code
8153 @item -full
8154 Print the values of the local variables also. This can be combined
8155 with the optional @var{count} to limit the number of frames shown.
8156
8157 @item -no-filters
8158 Do not run Python frame filters on this backtrace. @xref{Frame
8159 Filter API}, for more information. Additionally use @ref{disable
8160 frame-filter all} to turn off all frame filters. This is only
8161 relevant when @value{GDBN} has been configured with @code{Python}
8162 support.
8163
8164 @item -hide
8165 A Python frame filter might decide to ``elide'' some frames. Normally
8166 such elided frames are still printed, but they are indented relative
8167 to the filtered frames that cause them to be elided. The @code{-hide}
8168 option causes elided frames to not be printed at all.
8169 @end table
8170
8171 The @code{backtrace} command also supports a number of options that
8172 allow overriding relevant global print settings as set by @code{set
8173 backtrace} and @code{set print} subcommands:
8174
8175 @table @code
8176 @item -past-main [@code{on}|@code{off}]
8177 Set whether backtraces should continue past @code{main}. Related setting:
8178 @ref{set backtrace past-main}.
8179
8180 @item -past-entry [@code{on}|@code{off}]
8181 Set whether backtraces should continue past the entry point of a program.
8182 Related setting: @ref{set backtrace past-entry}.
8183
8184 @item -entry-values @code{no}|@code{only}|@code{preferred}|@code{if-needed}|@code{both}|@code{compact}|@code{default}
8185 Set printing of function arguments at function entry.
8186 Related setting: @ref{set print entry-values}.
8187
8188 @item -frame-arguments @code{all}|@code{scalars}|@code{none}
8189 Set printing of non-scalar frame arguments.
8190 Related setting: @ref{set print frame-arguments}.
8191
8192 @item -raw-frame-arguments [@code{on}|@code{off}]
8193 Set whether to print frame arguments in raw form.
8194 Related setting: @ref{set print raw-frame-arguments}.
8195
8196 @item -frame-info @code{auto}|@code{source-line}|@code{location}|@code{source-and-location}|@code{location-and-address}|@code{short-location}
8197 Set printing of frame information.
8198 Related setting: @ref{set print frame-info}.
8199 @end table
8200
8201 The optional @var{qualifier} is maintained for backward compatibility.
8202 It can be one of the following:
8203
8204 @table @code
8205 @item full
8206 Equivalent to the @code{-full} option.
8207
8208 @item no-filters
8209 Equivalent to the @code{-no-filters} option.
8210
8211 @item hide
8212 Equivalent to the @code{-hide} option.
8213 @end table
8214
8215 @end table
8216
8217 @kindex where
8218 @kindex info stack
8219 The names @code{where} and @code{info stack} (abbreviated @code{info s})
8220 are additional aliases for @code{backtrace}.
8221
8222 @cindex multiple threads, backtrace
8223 In a multi-threaded program, @value{GDBN} by default shows the
8224 backtrace only for the current thread. To display the backtrace for
8225 several or all of the threads, use the command @code{thread apply}
8226 (@pxref{Threads, thread apply}). For example, if you type @kbd{thread
8227 apply all backtrace}, @value{GDBN} will display the backtrace for all
8228 the threads; this is handy when you debug a core dump of a
8229 multi-threaded program.
8230
8231 Each line in the backtrace shows the frame number and the function name.
8232 The program counter value is also shown---unless you use @code{set
8233 print address off}. The backtrace also shows the source file name and
8234 line number, as well as the arguments to the function. The program
8235 counter value is omitted if it is at the beginning of the code for that
8236 line number.
8237
8238 Here is an example of a backtrace. It was made with the command
8239 @samp{bt 3}, so it shows the innermost three frames.
8240
8241 @smallexample
8242 @group
8243 #0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
8244 at builtin.c:993
8245 #1 0x6e38 in expand_macro (sym=0x2b600, data=...) at macro.c:242
8246 #2 0x6840 in expand_token (obs=0x0, t=177664, td=0xf7fffb08)
8247 at macro.c:71
8248 (More stack frames follow...)
8249 @end group
8250 @end smallexample
8251
8252 @noindent
8253 The display for frame zero does not begin with a program counter
8254 value, indicating that your program has stopped at the beginning of the
8255 code for line @code{993} of @code{builtin.c}.
8256
8257 @noindent
8258 The value of parameter @code{data} in frame 1 has been replaced by
8259 @code{@dots{}}. By default, @value{GDBN} prints the value of a parameter
8260 only if it is a scalar (integer, pointer, enumeration, etc). See command
8261 @kbd{set print frame-arguments} in @ref{Print Settings} for more details
8262 on how to configure the way function parameter values are printed.
8263 The command @kbd{set print frame-info} (@pxref{Print Settings}) controls
8264 what frame information is printed.
8265
8266 @cindex optimized out, in backtrace
8267 @cindex function call arguments, optimized out
8268 If your program was compiled with optimizations, some compilers will
8269 optimize away arguments passed to functions if those arguments are
8270 never used after the call. Such optimizations generate code that
8271 passes arguments through registers, but doesn't store those arguments
8272 in the stack frame. @value{GDBN} has no way of displaying such
8273 arguments in stack frames other than the innermost one. Here's what
8274 such a backtrace might look like:
8275
8276 @smallexample
8277 @group
8278 #0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
8279 at builtin.c:993
8280 #1 0x6e38 in expand_macro (sym=<optimized out>) at macro.c:242
8281 #2 0x6840 in expand_token (obs=0x0, t=<optimized out>, td=0xf7fffb08)
8282 at macro.c:71
8283 (More stack frames follow...)
8284 @end group
8285 @end smallexample
8286
8287 @noindent
8288 The values of arguments that were not saved in their stack frames are
8289 shown as @samp{<optimized out>}.
8290
8291 If you need to display the values of such optimized-out arguments,
8292 either deduce that from other variables whose values depend on the one
8293 you are interested in, or recompile without optimizations.
8294
8295 @cindex backtrace beyond @code{main} function
8296 @cindex program entry point
8297 @cindex startup code, and backtrace
8298 Most programs have a standard user entry point---a place where system
8299 libraries and startup code transition into user code. For C this is
8300 @code{main}@footnote{
8301 Note that embedded programs (the so-called ``free-standing''
8302 environment) are not required to have a @code{main} function as the
8303 entry point. They could even have multiple entry points.}.
8304 When @value{GDBN} finds the entry function in a backtrace
8305 it will terminate the backtrace, to avoid tracing into highly
8306 system-specific (and generally uninteresting) code.
8307
8308 If you need to examine the startup code, or limit the number of levels
8309 in a backtrace, you can change this behavior:
8310
8311 @table @code
8312 @item set backtrace past-main
8313 @itemx set backtrace past-main on
8314 @anchor{set backtrace past-main}
8315 @kindex set backtrace
8316 Backtraces will continue past the user entry point.
8317
8318 @item set backtrace past-main off
8319 Backtraces will stop when they encounter the user entry point. This is the
8320 default.
8321
8322 @item show backtrace past-main
8323 @kindex show backtrace
8324 Display the current user entry point backtrace policy.
8325
8326 @item set backtrace past-entry
8327 @itemx set backtrace past-entry on
8328 @anchor{set backtrace past-entry}
8329 Backtraces will continue past the internal entry point of an application.
8330 This entry point is encoded by the linker when the application is built,
8331 and is likely before the user entry point @code{main} (or equivalent) is called.
8332
8333 @item set backtrace past-entry off
8334 Backtraces will stop when they encounter the internal entry point of an
8335 application. This is the default.
8336
8337 @item show backtrace past-entry
8338 Display the current internal entry point backtrace policy.
8339
8340 @item set backtrace limit @var{n}
8341 @itemx set backtrace limit 0
8342 @itemx set backtrace limit unlimited
8343 @anchor{set backtrace limit}
8344 @cindex backtrace limit
8345 Limit the backtrace to @var{n} levels. A value of @code{unlimited}
8346 or zero means unlimited levels.
8347
8348 @item show backtrace limit
8349 Display the current limit on backtrace levels.
8350 @end table
8351
8352 You can control how file names are displayed.
8353
8354 @table @code
8355 @item set filename-display
8356 @itemx set filename-display relative
8357 @cindex filename-display
8358 Display file names relative to the compilation directory. This is the default.
8359
8360 @item set filename-display basename
8361 Display only basename of a filename.
8362
8363 @item set filename-display absolute
8364 Display an absolute filename.
8365
8366 @item show filename-display
8367 Show the current way to display filenames.
8368 @end table
8369
8370 @node Selection
8371 @section Selecting a Frame
8372
8373 Most commands for examining the stack and other data in your program work on
8374 whichever stack frame is selected at the moment. Here are the commands for
8375 selecting a stack frame; all of them finish by printing a brief description
8376 of the stack frame just selected.
8377
8378 @table @code
8379 @kindex frame@r{, selecting}
8380 @kindex f @r{(@code{frame})}
8381 @item frame @r{[} @var{frame-selection-spec} @r{]}
8382 @item f @r{[} @var{frame-selection-spec} @r{]}
8383 The @command{frame} command allows different stack frames to be
8384 selected. The @var{frame-selection-spec} can be any of the following:
8385
8386 @table @code
8387 @kindex frame level
8388 @item @var{num}
8389 @item level @var{num}
8390 Select frame level @var{num}. Recall that frame zero is the innermost
8391 (currently executing) frame, frame one is the frame that called the
8392 innermost one, and so on. The highest level frame is usually the one
8393 for @code{main}.
8394
8395 As this is the most common method of navigating the frame stack, the
8396 string @command{level} can be omitted. For example, the following two
8397 commands are equivalent:
8398
8399 @smallexample
8400 (@value{GDBP}) frame 3
8401 (@value{GDBP}) frame level 3
8402 @end smallexample
8403
8404 @kindex frame address
8405 @item address @var{stack-address}
8406 Select the frame with stack address @var{stack-address}. The
8407 @var{stack-address} for a frame can be seen in the output of
8408 @command{info frame}, for example:
8409
8410 @smallexample
8411 (gdb) info frame
8412 Stack level 1, frame at 0x7fffffffda30:
8413 rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
8414 tail call frame, caller of frame at 0x7fffffffda30
8415 source language c++.
8416 Arglist at unknown address.
8417 Locals at unknown address, Previous frame's sp is 0x7fffffffda30
8418 @end smallexample
8419
8420 The @var{stack-address} for this frame is @code{0x7fffffffda30} as
8421 indicated by the line:
8422
8423 @smallexample
8424 Stack level 1, frame at 0x7fffffffda30:
8425 @end smallexample
8426
8427 @kindex frame function
8428 @item function @var{function-name}
8429 Select the stack frame for function @var{function-name}. If there are
8430 multiple stack frames for function @var{function-name} then the inner
8431 most stack frame is selected.
8432
8433 @kindex frame view
8434 @item view @var{stack-address} @r{[} @var{pc-addr} @r{]}
8435 View a frame that is not part of @value{GDBN}'s backtrace. The frame
8436 viewed has stack address @var{stack-addr}, and optionally, a program
8437 counter address of @var{pc-addr}.
8438
8439 This is useful mainly if the chaining of stack frames has been
8440 damaged by a bug, making it impossible for @value{GDBN} to assign
8441 numbers properly to all frames. In addition, this can be useful
8442 when your program has multiple stacks and switches between them.
8443
8444 When viewing a frame outside the current backtrace using
8445 @command{frame view} then you can always return to the original
8446 stack using one of the previous stack frame selection instructions,
8447 for example @command{frame level 0}.
8448
8449 @end table
8450
8451 @kindex up
8452 @item up @var{n}
8453 Move @var{n} frames up the stack; @var{n} defaults to 1. For positive
8454 numbers @var{n}, this advances toward the outermost frame, to higher
8455 frame numbers, to frames that have existed longer.
8456
8457 @kindex down
8458 @kindex do @r{(@code{down})}
8459 @item down @var{n}
8460 Move @var{n} frames down the stack; @var{n} defaults to 1. For
8461 positive numbers @var{n}, this advances toward the innermost frame, to
8462 lower frame numbers, to frames that were created more recently.
8463 You may abbreviate @code{down} as @code{do}.
8464 @end table
8465
8466 All of these commands end by printing two lines of output describing the
8467 frame. The first line shows the frame number, the function name, the
8468 arguments, and the source file and line number of execution in that
8469 frame. The second line shows the text of that source line.
8470
8471 @need 1000
8472 For example:
8473
8474 @smallexample
8475 @group
8476 (@value{GDBP}) up
8477 #1 0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc)
8478 at env.c:10
8479 10 read_input_file (argv[i]);
8480 @end group
8481 @end smallexample
8482
8483 After such a printout, the @code{list} command with no arguments
8484 prints ten lines centered on the point of execution in the frame.
8485 You can also edit the program at the point of execution with your favorite
8486 editing program by typing @code{edit}.
8487 @xref{List, ,Printing Source Lines},
8488 for details.
8489
8490 @table @code
8491 @kindex select-frame
8492 @item select-frame @r{[} @var{frame-selection-spec} @r{]}
8493 The @code{select-frame} command is a variant of @code{frame} that does
8494 not display the new frame after selecting it. This command is
8495 intended primarily for use in @value{GDBN} command scripts, where the
8496 output might be unnecessary and distracting. The
8497 @var{frame-selection-spec} is as for the @command{frame} command
8498 described in @ref{Selection, ,Selecting a Frame}.
8499
8500 @kindex down-silently
8501 @kindex up-silently
8502 @item up-silently @var{n}
8503 @itemx down-silently @var{n}
8504 These two commands are variants of @code{up} and @code{down},
8505 respectively; they differ in that they do their work silently, without
8506 causing display of the new frame. They are intended primarily for use
8507 in @value{GDBN} command scripts, where the output might be unnecessary and
8508 distracting.
8509 @end table
8510
8511 @node Frame Info
8512 @section Information About a Frame
8513
8514 There are several other commands to print information about the selected
8515 stack frame.
8516
8517 @table @code
8518 @item frame
8519 @itemx f
8520 When used without any argument, this command does not change which
8521 frame is selected, but prints a brief description of the currently
8522 selected stack frame. It can be abbreviated @code{f}. With an
8523 argument, this command is used to select a stack frame.
8524 @xref{Selection, ,Selecting a Frame}.
8525
8526 @kindex info frame
8527 @kindex info f @r{(@code{info frame})}
8528 @item info frame
8529 @itemx info f
8530 This command prints a verbose description of the selected stack frame,
8531 including:
8532
8533 @itemize @bullet
8534 @item
8535 the address of the frame
8536 @item
8537 the address of the next frame down (called by this frame)
8538 @item
8539 the address of the next frame up (caller of this frame)
8540 @item
8541 the language in which the source code corresponding to this frame is written
8542 @item
8543 the address of the frame's arguments
8544 @item
8545 the address of the frame's local variables
8546 @item
8547 the program counter saved in it (the address of execution in the caller frame)
8548 @item
8549 which registers were saved in the frame
8550 @end itemize
8551
8552 @noindent The verbose description is useful when
8553 something has gone wrong that has made the stack format fail to fit
8554 the usual conventions.
8555
8556 @item info frame @r{[} @var{frame-selection-spec} @r{]}
8557 @itemx info f @r{[} @var{frame-selection-spec} @r{]}
8558 Print a verbose description of the frame selected by
8559 @var{frame-selection-spec}. The @var{frame-selection-spec} is the
8560 same as for the @command{frame} command (@pxref{Selection, ,Selecting
8561 a Frame}). The selected frame remains unchanged by this command.
8562
8563 @kindex info args
8564 @item info args [-q]
8565 Print the arguments of the selected frame, each on a separate line.
8566
8567 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8568 printing header information and messages explaining why no argument
8569 have been printed.
8570
8571 @item info args [-q] [-t @var{type_regexp}] [@var{regexp}]
8572 Like @kbd{info args}, but only print the arguments selected
8573 with the provided regexp(s).
8574
8575 If @var{regexp} is provided, print only the arguments whose names
8576 match the regular expression @var{regexp}.
8577
8578 If @var{type_regexp} is provided, print only the arguments whose
8579 types, as printed by the @code{whatis} command, match
8580 the regular expression @var{type_regexp}.
8581 If @var{type_regexp} contains space(s), it should be enclosed in
8582 quote characters. If needed, use backslash to escape the meaning
8583 of special characters or quotes.
8584
8585 If both @var{regexp} and @var{type_regexp} are provided, an argument
8586 is printed only if its name matches @var{regexp} and its type matches
8587 @var{type_regexp}.
8588
8589 @item info locals [-q]
8590 @kindex info locals
8591 Print the local variables of the selected frame, each on a separate
8592 line. These are all variables (declared either static or automatic)
8593 accessible at the point of execution of the selected frame.
8594
8595 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8596 printing header information and messages explaining why no local variables
8597 have been printed.
8598
8599 @item info locals [-q] [-t @var{type_regexp}] [@var{regexp}]
8600 Like @kbd{info locals}, but only print the local variables selected
8601 with the provided regexp(s).
8602
8603 If @var{regexp} is provided, print only the local variables whose names
8604 match the regular expression @var{regexp}.
8605
8606 If @var{type_regexp} is provided, print only the local variables whose
8607 types, as printed by the @code{whatis} command, match
8608 the regular expression @var{type_regexp}.
8609 If @var{type_regexp} contains space(s), it should be enclosed in
8610 quote characters. If needed, use backslash to escape the meaning
8611 of special characters or quotes.
8612
8613 If both @var{regexp} and @var{type_regexp} are provided, a local variable
8614 is printed only if its name matches @var{regexp} and its type matches
8615 @var{type_regexp}.
8616
8617 The command @kbd{info locals -q -t @var{type_regexp}} can usefully be
8618 combined with the commands @kbd{frame apply} and @kbd{thread apply}.
8619 For example, your program might use Resource Acquisition Is
8620 Initialization types (RAII) such as @code{lock_something_t}: each
8621 local variable of type @code{lock_something_t} automatically places a
8622 lock that is destroyed when the variable goes out of scope. You can
8623 then list all acquired locks in your program by doing
8624 @smallexample
8625 thread apply all -s frame apply all -s info locals -q -t lock_something_t
8626 @end smallexample
8627 @noindent
8628 or the equivalent shorter form
8629 @smallexample
8630 tfaas i lo -q -t lock_something_t
8631 @end smallexample
8632
8633 @end table
8634
8635 @node Frame Apply
8636 @section Applying a Command to Several Frames.
8637 @kindex frame apply
8638 @cindex apply command to several frames
8639 @table @code
8640 @item frame apply [all | @var{count} | @var{-count} | level @var{level}@dots{}] [@var{option}]@dots{} @var{command}
8641 The @code{frame apply} command allows you to apply the named
8642 @var{command} to one or more frames.
8643
8644 @table @code
8645 @item @code{all}
8646 Specify @code{all} to apply @var{command} to all frames.
8647
8648 @item @var{count}
8649 Use @var{count} to apply @var{command} to the innermost @var{count}
8650 frames, where @var{count} is a positive number.
8651
8652 @item @var{-count}
8653 Use @var{-count} to apply @var{command} to the outermost @var{count}
8654 frames, where @var{count} is a positive number.
8655
8656 @item @code{level}
8657 Use @code{level} to apply @var{command} to the set of frames identified
8658 by the @var{level} list. @var{level} is a frame level or a range of frame
8659 levels as @var{level1}-@var{level2}. The frame level is the number shown
8660 in the first field of the @samp{backtrace} command output.
8661 E.g., @samp{2-4 6-8 3} indicates to apply @var{command} for the frames
8662 at levels 2, 3, 4, 6, 7, 8, and then again on frame at level 3.
8663
8664 @end table
8665
8666 Note that the frames on which @code{frame apply} applies a command are
8667 also influenced by the @code{set backtrace} settings such as @code{set
8668 backtrace past-main} and @code{set backtrace limit N}.
8669 @xref{Backtrace,,Backtraces}.
8670
8671 The @code{frame apply} command also supports a number of options that
8672 allow overriding relevant @code{set backtrace} settings:
8673
8674 @table @code
8675 @item -past-main [@code{on}|@code{off}]
8676 Whether backtraces should continue past @code{main}.
8677 Related setting: @ref{set backtrace past-main}.
8678
8679 @item -past-entry [@code{on}|@code{off}]
8680 Whether backtraces should continue past the entry point of a program.
8681 Related setting: @ref{set backtrace past-entry}.
8682 @end table
8683
8684 By default, @value{GDBN} displays some frame information before the
8685 output produced by @var{command}, and an error raised during the
8686 execution of a @var{command} will abort @code{frame apply}. The
8687 following options can be used to fine-tune these behaviors:
8688
8689 @table @code
8690 @item -c
8691 The flag @code{-c}, which stands for @samp{continue}, causes any
8692 errors in @var{command} to be displayed, and the execution of
8693 @code{frame apply} then continues.
8694 @item -s
8695 The flag @code{-s}, which stands for @samp{silent}, causes any errors
8696 or empty output produced by a @var{command} to be silently ignored.
8697 That is, the execution continues, but the frame information and errors
8698 are not printed.
8699 @item -q
8700 The flag @code{-q} (@samp{quiet}) disables printing the frame
8701 information.
8702 @end table
8703
8704 The following example shows how the flags @code{-c} and @code{-s} are
8705 working when applying the command @code{p j} to all frames, where
8706 variable @code{j} can only be successfully printed in the outermost
8707 @code{#1 main} frame.
8708
8709 @smallexample
8710 @group
8711 (gdb) frame apply all p j
8712 #0 some_function (i=5) at fun.c:4
8713 No symbol "j" in current context.
8714 (gdb) frame apply all -c p j
8715 #0 some_function (i=5) at fun.c:4
8716 No symbol "j" in current context.
8717 #1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8718 $1 = 5
8719 (gdb) frame apply all -s p j
8720 #1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8721 $2 = 5
8722 (gdb)
8723 @end group
8724 @end smallexample
8725
8726 By default, @samp{frame apply}, prints the frame location
8727 information before the command output:
8728
8729 @smallexample
8730 @group
8731 (gdb) frame apply all p $sp
8732 #0 some_function (i=5) at fun.c:4
8733 $4 = (void *) 0xffffd1e0
8734 #1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8735 $5 = (void *) 0xffffd1f0
8736 (gdb)
8737 @end group
8738 @end smallexample
8739
8740 If the flag @code{-q} is given, no frame information is printed:
8741 @smallexample
8742 @group
8743 (gdb) frame apply all -q p $sp
8744 $12 = (void *) 0xffffd1e0
8745 $13 = (void *) 0xffffd1f0
8746 (gdb)
8747 @end group
8748 @end smallexample
8749
8750 @end table
8751
8752 @table @code
8753
8754 @kindex faas
8755 @cindex apply a command to all frames (ignoring errors and empty output)
8756 @item faas @var{command}
8757 Shortcut for @code{frame apply all -s @var{command}}.
8758 Applies @var{command} on all frames, ignoring errors and empty output.
8759
8760 It can for example be used to print a local variable or a function
8761 argument without knowing the frame where this variable or argument
8762 is, using:
8763 @smallexample
8764 (@value{GDBP}) faas p some_local_var_i_do_not_remember_where_it_is
8765 @end smallexample
8766
8767 The @code{faas} command accepts the same options as the @code{frame
8768 apply} command. @xref{Frame Apply,,frame apply}.
8769
8770 Note that the command @code{tfaas @var{command}} applies @var{command}
8771 on all frames of all threads. See @xref{Threads,,Threads}.
8772 @end table
8773
8774
8775 @node Frame Filter Management
8776 @section Management of Frame Filters.
8777 @cindex managing frame filters
8778
8779 Frame filters are Python based utilities to manage and decorate the
8780 output of frames. @xref{Frame Filter API}, for further information.
8781
8782 Managing frame filters is performed by several commands available
8783 within @value{GDBN}, detailed here.
8784
8785 @table @code
8786 @kindex info frame-filter
8787 @item info frame-filter
8788 Print a list of installed frame filters from all dictionaries, showing
8789 their name, priority and enabled status.
8790
8791 @kindex disable frame-filter
8792 @anchor{disable frame-filter all}
8793 @item disable frame-filter @var{filter-dictionary} @var{filter-name}
8794 Disable a frame filter in the dictionary matching
8795 @var{filter-dictionary} and @var{filter-name}. The
8796 @var{filter-dictionary} may be @code{all}, @code{global},
8797 @code{progspace}, or the name of the object file where the frame filter
8798 dictionary resides. When @code{all} is specified, all frame filters
8799 across all dictionaries are disabled. The @var{filter-name} is the name
8800 of the frame filter and is used when @code{all} is not the option for
8801 @var{filter-dictionary}. A disabled frame-filter is not deleted, it
8802 may be enabled again later.
8803
8804 @kindex enable frame-filter
8805 @item enable frame-filter @var{filter-dictionary} @var{filter-name}
8806 Enable a frame filter in the dictionary matching
8807 @var{filter-dictionary} and @var{filter-name}. The
8808 @var{filter-dictionary} may be @code{all}, @code{global},
8809 @code{progspace} or the name of the object file where the frame filter
8810 dictionary resides. When @code{all} is specified, all frame filters across
8811 all dictionaries are enabled. The @var{filter-name} is the name of the frame
8812 filter and is used when @code{all} is not the option for
8813 @var{filter-dictionary}.
8814
8815 Example:
8816
8817 @smallexample
8818 (gdb) info frame-filter
8819
8820 global frame-filters:
8821 Priority Enabled Name
8822 1000 No PrimaryFunctionFilter
8823 100 Yes Reverse
8824
8825 progspace /build/test frame-filters:
8826 Priority Enabled Name
8827 100 Yes ProgspaceFilter
8828
8829 objfile /build/test frame-filters:
8830 Priority Enabled Name
8831 999 Yes BuildProgramFilter
8832
8833 (gdb) disable frame-filter /build/test BuildProgramFilter
8834 (gdb) info frame-filter
8835
8836 global frame-filters:
8837 Priority Enabled Name
8838 1000 No PrimaryFunctionFilter
8839 100 Yes Reverse
8840
8841 progspace /build/test frame-filters:
8842 Priority Enabled Name
8843 100 Yes ProgspaceFilter
8844
8845 objfile /build/test frame-filters:
8846 Priority Enabled Name
8847 999 No BuildProgramFilter
8848
8849 (gdb) enable frame-filter global PrimaryFunctionFilter
8850 (gdb) info frame-filter
8851
8852 global frame-filters:
8853 Priority Enabled Name
8854 1000 Yes PrimaryFunctionFilter
8855 100 Yes Reverse
8856
8857 progspace /build/test frame-filters:
8858 Priority Enabled Name
8859 100 Yes ProgspaceFilter
8860
8861 objfile /build/test frame-filters:
8862 Priority Enabled Name
8863 999 No BuildProgramFilter
8864 @end smallexample
8865
8866 @kindex set frame-filter priority
8867 @item set frame-filter priority @var{filter-dictionary} @var{filter-name} @var{priority}
8868 Set the @var{priority} of a frame filter in the dictionary matching
8869 @var{filter-dictionary}, and the frame filter name matching
8870 @var{filter-name}. The @var{filter-dictionary} may be @code{global},
8871 @code{progspace} or the name of the object file where the frame filter
8872 dictionary resides. The @var{priority} is an integer.
8873
8874 @kindex show frame-filter priority
8875 @item show frame-filter priority @var{filter-dictionary} @var{filter-name}
8876 Show the @var{priority} of a frame filter in the dictionary matching
8877 @var{filter-dictionary}, and the frame filter name matching
8878 @var{filter-name}. The @var{filter-dictionary} may be @code{global},
8879 @code{progspace} or the name of the object file where the frame filter
8880 dictionary resides.
8881
8882 Example:
8883
8884 @smallexample
8885 (gdb) info frame-filter
8886
8887 global frame-filters:
8888 Priority Enabled Name
8889 1000 Yes PrimaryFunctionFilter
8890 100 Yes Reverse
8891
8892 progspace /build/test frame-filters:
8893 Priority Enabled Name
8894 100 Yes ProgspaceFilter
8895
8896 objfile /build/test frame-filters:
8897 Priority Enabled Name
8898 999 No BuildProgramFilter
8899
8900 (gdb) set frame-filter priority global Reverse 50
8901 (gdb) info frame-filter
8902
8903 global frame-filters:
8904 Priority Enabled Name
8905 1000 Yes PrimaryFunctionFilter
8906 50 Yes Reverse
8907
8908 progspace /build/test frame-filters:
8909 Priority Enabled Name
8910 100 Yes ProgspaceFilter
8911
8912 objfile /build/test frame-filters:
8913 Priority Enabled Name
8914 999 No BuildProgramFilter
8915 @end smallexample
8916 @end table
8917
8918 @node Source
8919 @chapter Examining Source Files
8920
8921 @value{GDBN} can print parts of your program's source, since the debugging
8922 information recorded in the program tells @value{GDBN} what source files were
8923 used to build it. When your program stops, @value{GDBN} spontaneously prints
8924 the line where it stopped. Likewise, when you select a stack frame
8925 (@pxref{Selection, ,Selecting a Frame}), @value{GDBN} prints the line where
8926 execution in that frame has stopped. You can print other portions of
8927 source files by explicit command.
8928
8929 If you use @value{GDBN} through its @sc{gnu} Emacs interface, you may
8930 prefer to use Emacs facilities to view source; see @ref{Emacs, ,Using
8931 @value{GDBN} under @sc{gnu} Emacs}.
8932
8933 @menu
8934 * List:: Printing source lines
8935 * Specify Location:: How to specify code locations
8936 * Edit:: Editing source files
8937 * Search:: Searching source files
8938 * Source Path:: Specifying source directories
8939 * Machine Code:: Source and machine code
8940 * Disable Reading Source:: Disable Reading Source Code
8941 @end menu
8942
8943 @node List
8944 @section Printing Source Lines
8945
8946 @kindex list
8947 @kindex l @r{(@code{list})}
8948 To print lines from a source file, use the @code{list} command
8949 (abbreviated @code{l}). By default, ten lines are printed.
8950 There are several ways to specify what part of the file you want to
8951 print; see @ref{Specify Location}, for the full list.
8952
8953 Here are the forms of the @code{list} command most commonly used:
8954
8955 @table @code
8956 @item list @var{linenum}
8957 Print lines centered around line number @var{linenum} in the
8958 current source file.
8959
8960 @item list @var{function}
8961 Print lines centered around the beginning of function
8962 @var{function}.
8963
8964 @item list
8965 Print more lines. If the last lines printed were printed with a
8966 @code{list} command, this prints lines following the last lines
8967 printed; however, if the last line printed was a solitary line printed
8968 as part of displaying a stack frame (@pxref{Stack, ,Examining the
8969 Stack}), this prints lines centered around that line.
8970
8971 @item list -
8972 Print lines just before the lines last printed.
8973 @end table
8974
8975 @cindex @code{list}, how many lines to display
8976 By default, @value{GDBN} prints ten source lines with any of these forms of
8977 the @code{list} command. You can change this using @code{set listsize}:
8978
8979 @table @code
8980 @kindex set listsize
8981 @item set listsize @var{count}
8982 @itemx set listsize unlimited
8983 Make the @code{list} command display @var{count} source lines (unless
8984 the @code{list} argument explicitly specifies some other number).
8985 Setting @var{count} to @code{unlimited} or 0 means there's no limit.
8986
8987 @kindex show listsize
8988 @item show listsize
8989 Display the number of lines that @code{list} prints.
8990 @end table
8991
8992 Repeating a @code{list} command with @key{RET} discards the argument,
8993 so it is equivalent to typing just @code{list}. This is more useful
8994 than listing the same lines again. An exception is made for an
8995 argument of @samp{-}; that argument is preserved in repetition so that
8996 each repetition moves up in the source file.
8997
8998 In general, the @code{list} command expects you to supply zero, one or two
8999 @dfn{locations}. Locations specify source lines; there are several ways
9000 of writing them (@pxref{Specify Location}), but the effect is always
9001 to specify some source line.
9002
9003 Here is a complete description of the possible arguments for @code{list}:
9004
9005 @table @code
9006 @item list @var{location}
9007 Print lines centered around the line specified by @var{location}.
9008
9009 @item list @var{first},@var{last}
9010 Print lines from @var{first} to @var{last}. Both arguments are
9011 locations. When a @code{list} command has two locations, and the
9012 source file of the second location is omitted, this refers to
9013 the same source file as the first location.
9014
9015 @item list ,@var{last}
9016 Print lines ending with @var{last}.
9017
9018 @item list @var{first},
9019 Print lines starting with @var{first}.
9020
9021 @item list +
9022 Print lines just after the lines last printed.
9023
9024 @item list -
9025 Print lines just before the lines last printed.
9026
9027 @item list
9028 As described in the preceding table.
9029 @end table
9030
9031 @node Specify Location
9032 @section Specifying a Location
9033 @cindex specifying location
9034 @cindex location
9035 @cindex source location
9036
9037 Several @value{GDBN} commands accept arguments that specify a location
9038 of your program's code. Since @value{GDBN} is a source-level
9039 debugger, a location usually specifies some line in the source code.
9040 Locations may be specified using three different formats:
9041 linespec locations, explicit locations, or address locations.
9042
9043 @menu
9044 * Linespec Locations:: Linespec locations
9045 * Explicit Locations:: Explicit locations
9046 * Address Locations:: Address locations
9047 @end menu
9048
9049 @node Linespec Locations
9050 @subsection Linespec Locations
9051 @cindex linespec locations
9052
9053 A @dfn{linespec} is a colon-separated list of source location parameters such
9054 as file name, function name, etc. Here are all the different ways of
9055 specifying a linespec:
9056
9057 @table @code
9058 @item @var{linenum}
9059 Specifies the line number @var{linenum} of the current source file.
9060
9061 @item -@var{offset}
9062 @itemx +@var{offset}
9063 Specifies the line @var{offset} lines before or after the @dfn{current
9064 line}. For the @code{list} command, the current line is the last one
9065 printed; for the breakpoint commands, this is the line at which
9066 execution stopped in the currently selected @dfn{stack frame}
9067 (@pxref{Frames, ,Frames}, for a description of stack frames.) When
9068 used as the second of the two linespecs in a @code{list} command,
9069 this specifies the line @var{offset} lines up or down from the first
9070 linespec.
9071
9072 @item @var{filename}:@var{linenum}
9073 Specifies the line @var{linenum} in the source file @var{filename}.
9074 If @var{filename} is a relative file name, then it will match any
9075 source file name with the same trailing components. For example, if
9076 @var{filename} is @samp{gcc/expr.c}, then it will match source file
9077 name of @file{/build/trunk/gcc/expr.c}, but not
9078 @file{/build/trunk/libcpp/expr.c} or @file{/build/trunk/gcc/x-expr.c}.
9079
9080 @item @var{function}
9081 Specifies the line that begins the body of the function @var{function}.
9082 For example, in C, this is the line with the open brace.
9083
9084 By default, in C@t{++} and Ada, @var{function} is interpreted as
9085 specifying all functions named @var{function} in all scopes. For
9086 C@t{++}, this means in all namespaces and classes. For Ada, this
9087 means in all packages.
9088
9089 For example, assuming a program with C@t{++} symbols named
9090 @code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9091 func}} and @w{@kbd{break B::func}} set a breakpoint on both symbols.
9092
9093 Commands that accept a linespec let you override this with the
9094 @code{-qualified} option. For example, @w{@kbd{break -qualified
9095 func}} sets a breakpoint on a free-function named @code{func} ignoring
9096 any C@t{++} class methods and namespace functions called @code{func}.
9097
9098 @xref{Explicit Locations}.
9099
9100 @item @var{function}:@var{label}
9101 Specifies the line where @var{label} appears in @var{function}.
9102
9103 @item @var{filename}:@var{function}
9104 Specifies the line that begins the body of the function @var{function}
9105 in the file @var{filename}. You only need the file name with a
9106 function name to avoid ambiguity when there are identically named
9107 functions in different source files.
9108
9109 @item @var{label}
9110 Specifies the line at which the label named @var{label} appears
9111 in the function corresponding to the currently selected stack frame.
9112 If there is no current selected stack frame (for instance, if the inferior
9113 is not running), then @value{GDBN} will not search for a label.
9114
9115 @cindex breakpoint at static probe point
9116 @item -pstap|-probe-stap @r{[}@var{objfile}:@r{[}@var{provider}:@r{]}@r{]}@var{name}
9117 The @sc{gnu}/Linux tool @code{SystemTap} provides a way for
9118 applications to embed static probes. @xref{Static Probe Points}, for more
9119 information on finding and using static probes. This form of linespec
9120 specifies the location of such a static probe.
9121
9122 If @var{objfile} is given, only probes coming from that shared library
9123 or executable matching @var{objfile} as a regular expression are considered.
9124 If @var{provider} is given, then only probes from that provider are considered.
9125 If several probes match the spec, @value{GDBN} will insert a breakpoint at
9126 each one of those probes.
9127 @end table
9128
9129 @node Explicit Locations
9130 @subsection Explicit Locations
9131 @cindex explicit locations
9132
9133 @dfn{Explicit locations} allow the user to directly specify the source
9134 location's parameters using option-value pairs.
9135
9136 Explicit locations are useful when several functions, labels, or
9137 file names have the same name (base name for files) in the program's
9138 sources. In these cases, explicit locations point to the source
9139 line you meant more accurately and unambiguously. Also, using
9140 explicit locations might be faster in large programs.
9141
9142 For example, the linespec @samp{foo:bar} may refer to a function @code{bar}
9143 defined in the file named @file{foo} or the label @code{bar} in a function
9144 named @code{foo}. @value{GDBN} must search either the file system or
9145 the symbol table to know.
9146
9147 The list of valid explicit location options is summarized in the
9148 following table:
9149
9150 @table @code
9151 @item -source @var{filename}
9152 The value specifies the source file name. To differentiate between
9153 files with the same base name, prepend as many directories as is necessary
9154 to uniquely identify the desired file, e.g., @file{foo/bar/baz.c}. Otherwise
9155 @value{GDBN} will use the first file it finds with the given base
9156 name. This option requires the use of either @code{-function} or @code{-line}.
9157
9158 @item -function @var{function}
9159 The value specifies the name of a function. Operations
9160 on function locations unmodified by other options (such as @code{-label}
9161 or @code{-line}) refer to the line that begins the body of the function.
9162 In C, for example, this is the line with the open brace.
9163
9164 By default, in C@t{++} and Ada, @var{function} is interpreted as
9165 specifying all functions named @var{function} in all scopes. For
9166 C@t{++}, this means in all namespaces and classes. For Ada, this
9167 means in all packages.
9168
9169 For example, assuming a program with C@t{++} symbols named
9170 @code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9171 -function func}} and @w{@kbd{break -function B::func}} set a
9172 breakpoint on both symbols.
9173
9174 You can use the @kbd{-qualified} flag to override this (see below).
9175
9176 @item -qualified
9177
9178 This flag makes @value{GDBN} interpret a function name specified with
9179 @kbd{-function} as a complete fully-qualified name.
9180
9181 For example, assuming a C@t{++} program with symbols named
9182 @code{A::B::func} and @code{B::func}, the @w{@kbd{break -qualified
9183 -function B::func}} command sets a breakpoint on @code{B::func}, only.
9184
9185 (Note: the @kbd{-qualified} option can precede a linespec as well
9186 (@pxref{Linespec Locations}), so the particular example above could be
9187 simplified as @w{@kbd{break -qualified B::func}}.)
9188
9189 @item -label @var{label}
9190 The value specifies the name of a label. When the function
9191 name is not specified, the label is searched in the function of the currently
9192 selected stack frame.
9193
9194 @item -line @var{number}
9195 The value specifies a line offset for the location. The offset may either
9196 be absolute (@code{-line 3}) or relative (@code{-line +3}), depending on
9197 the command. When specified without any other options, the line offset is
9198 relative to the current line.
9199 @end table
9200
9201 Explicit location options may be abbreviated by omitting any non-unique
9202 trailing characters from the option name, e.g., @w{@kbd{break -s main.c -li 3}}.
9203
9204 @node Address Locations
9205 @subsection Address Locations
9206 @cindex address locations
9207
9208 @dfn{Address locations} indicate a specific program address. They have
9209 the generalized form *@var{address}.
9210
9211 For line-oriented commands, such as @code{list} and @code{edit}, this
9212 specifies a source line that contains @var{address}. For @code{break} and
9213 other breakpoint-oriented commands, this can be used to set breakpoints in
9214 parts of your program which do not have debugging information or
9215 source files.
9216
9217 Here @var{address} may be any expression valid in the current working
9218 language (@pxref{Languages, working language}) that specifies a code
9219 address. In addition, as a convenience, @value{GDBN} extends the
9220 semantics of expressions used in locations to cover several situations
9221 that frequently occur during debugging. Here are the various forms
9222 of @var{address}:
9223
9224 @table @code
9225 @item @var{expression}
9226 Any expression valid in the current working language.
9227
9228 @item @var{funcaddr}
9229 An address of a function or procedure derived from its name. In C,
9230 C@t{++}, Objective-C, Fortran, minimal, and assembly, this is
9231 simply the function's name @var{function} (and actually a special case
9232 of a valid expression). In Pascal and Modula-2, this is
9233 @code{&@var{function}}. In Ada, this is @code{@var{function}'Address}
9234 (although the Pascal form also works).
9235
9236 This form specifies the address of the function's first instruction,
9237 before the stack frame and arguments have been set up.
9238
9239 @item '@var{filename}':@var{funcaddr}
9240 Like @var{funcaddr} above, but also specifies the name of the source
9241 file explicitly. This is useful if the name of the function does not
9242 specify the function unambiguously, e.g., if there are several
9243 functions with identical names in different source files.
9244 @end table
9245
9246 @node Edit
9247 @section Editing Source Files
9248 @cindex editing source files
9249
9250 @kindex edit
9251 @kindex e @r{(@code{edit})}
9252 To edit the lines in a source file, use the @code{edit} command.
9253 The editing program of your choice
9254 is invoked with the current line set to
9255 the active line in the program.
9256 Alternatively, there are several ways to specify what part of the file you
9257 want to print if you want to see other parts of the program:
9258
9259 @table @code
9260 @item edit @var{location}
9261 Edit the source file specified by @code{location}. Editing starts at
9262 that @var{location}, e.g., at the specified source line of the
9263 specified file. @xref{Specify Location}, for all the possible forms
9264 of the @var{location} argument; here are the forms of the @code{edit}
9265 command most commonly used:
9266
9267 @table @code
9268 @item edit @var{number}
9269 Edit the current source file with @var{number} as the active line number.
9270
9271 @item edit @var{function}
9272 Edit the file containing @var{function} at the beginning of its definition.
9273 @end table
9274
9275 @end table
9276
9277 @subsection Choosing your Editor
9278 You can customize @value{GDBN} to use any editor you want
9279 @footnote{
9280 The only restriction is that your editor (say @code{ex}), recognizes the
9281 following command-line syntax:
9282 @smallexample
9283 ex +@var{number} file
9284 @end smallexample
9285 The optional numeric value +@var{number} specifies the number of the line in
9286 the file where to start editing.}.
9287 By default, it is @file{@value{EDITOR}}, but you can change this
9288 by setting the environment variable @env{EDITOR} before using
9289 @value{GDBN}. For example, to configure @value{GDBN} to use the
9290 @code{vi} editor, you could use these commands with the @code{sh} shell:
9291 @smallexample
9292 EDITOR=/usr/bin/vi
9293 export EDITOR
9294 gdb @dots{}
9295 @end smallexample
9296 or in the @code{csh} shell,
9297 @smallexample
9298 setenv EDITOR /usr/bin/vi
9299 gdb @dots{}
9300 @end smallexample
9301
9302 @node Search
9303 @section Searching Source Files
9304 @cindex searching source files
9305
9306 There are two commands for searching through the current source file for a
9307 regular expression.
9308
9309 @table @code
9310 @kindex search
9311 @kindex forward-search
9312 @kindex fo @r{(@code{forward-search})}
9313 @item forward-search @var{regexp}
9314 @itemx search @var{regexp}
9315 The command @samp{forward-search @var{regexp}} checks each line,
9316 starting with the one following the last line listed, for a match for
9317 @var{regexp}. It lists the line that is found. You can use the
9318 synonym @samp{search @var{regexp}} or abbreviate the command name as
9319 @code{fo}.
9320
9321 @kindex reverse-search
9322 @item reverse-search @var{regexp}
9323 The command @samp{reverse-search @var{regexp}} checks each line, starting
9324 with the one before the last line listed and going backward, for a match
9325 for @var{regexp}. It lists the line that is found. You can abbreviate
9326 this command as @code{rev}.
9327 @end table
9328
9329 @node Source Path
9330 @section Specifying Source Directories
9331
9332 @cindex source path
9333 @cindex directories for source files
9334 Executable programs sometimes do not record the directories of the source
9335 files from which they were compiled, just the names. Even when they do,
9336 the directories could be moved between the compilation and your debugging
9337 session. @value{GDBN} has a list of directories to search for source files;
9338 this is called the @dfn{source path}. Each time @value{GDBN} wants a source file,
9339 it tries all the directories in the list, in the order they are present
9340 in the list, until it finds a file with the desired name.
9341
9342 For example, suppose an executable references the file
9343 @file{/usr/src/foo-1.0/lib/foo.c}, does not record a compilation
9344 directory, and the @dfn{source path} is @file{/mnt/cross}.
9345 @value{GDBN} would look for the source file in the following
9346 locations:
9347
9348 @enumerate
9349
9350 @item @file{/usr/src/foo-1.0/lib/foo.c}
9351 @item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9352 @item @file{/mnt/cross/foo.c}
9353
9354 @end enumerate
9355
9356 If the source file is not present at any of the above locations then
9357 an error is printed. @value{GDBN} does not look up the parts of the
9358 source file name, such as @file{/mnt/cross/src/foo-1.0/lib/foo.c}.
9359 Likewise, the subdirectories of the source path are not searched: if
9360 the source path is @file{/mnt/cross}, and the binary refers to
9361 @file{foo.c}, @value{GDBN} would not find it under
9362 @file{/mnt/cross/usr/src/foo-1.0/lib}.
9363
9364 Plain file names, relative file names with leading directories, file
9365 names containing dots, etc.@: are all treated as described above,
9366 except that non-absolute file names are not looked up literally. If
9367 the @dfn{source path} is @file{/mnt/cross}, the source file is
9368 recorded as @file{../lib/foo.c}, and no compilation directory is
9369 recorded, then @value{GDBN} will search in the following locations:
9370
9371 @enumerate
9372
9373 @item @file{/mnt/cross/../lib/foo.c}
9374 @item @file{/mnt/cross/foo.c}
9375
9376 @end enumerate
9377
9378 @kindex cdir
9379 @kindex cwd
9380 @vindex $cdir@r{, convenience variable}
9381 @vindex $cwd@r{, convenience variable}
9382 @cindex compilation directory
9383 @cindex current directory
9384 @cindex working directory
9385 @cindex directory, current
9386 @cindex directory, compilation
9387 The @dfn{source path} will always include two special entries
9388 @samp{$cdir} and @samp{$cwd}, these refer to the compilation directory
9389 (if one is recorded) and the current working directory respectively.
9390
9391 @samp{$cdir} causes @value{GDBN} to search within the compilation
9392 directory, if one is recorded in the debug information. If no
9393 compilation directory is recorded in the debug information then
9394 @samp{$cdir} is ignored.
9395
9396 @samp{$cwd} is not the same as @samp{.}---the former tracks the
9397 current working directory as it changes during your @value{GDBN}
9398 session, while the latter is immediately expanded to the current
9399 directory at the time you add an entry to the source path.
9400
9401 If a compilation directory is recorded in the debug information, and
9402 @value{GDBN} has not found the source file after the first search
9403 using @dfn{source path}, then @value{GDBN} will combine the
9404 compilation directory and the filename, and then search for the source
9405 file again using the @dfn{source path}.
9406
9407 For example, if the executable records the source file as
9408 @file{/usr/src/foo-1.0/lib/foo.c}, the compilation directory is
9409 recorded as @file{/project/build}, and the @dfn{source path} is
9410 @file{/mnt/cross:$cdir:$cwd} while the current working directory of
9411 the @value{GDBN} session is @file{/home/user}, then @value{GDBN} will
9412 search for the source file in the following locations:
9413
9414 @enumerate
9415
9416 @item @file{/usr/src/foo-1.0/lib/foo.c}
9417 @item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9418 @item @file{/project/build/usr/src/foo-1.0/lib/foo.c}
9419 @item @file{/home/user/usr/src/foo-1.0/lib/foo.c}
9420 @item @file{/mnt/cross/project/build/usr/src/foo-1.0/lib/foo.c}
9421 @item @file{/project/build/project/build/usr/src/foo-1.0/lib/foo.c}
9422 @item @file{/home/user/project/build/usr/src/foo-1.0/lib/foo.c}
9423 @item @file{/mnt/cross/foo.c}
9424 @item @file{/project/build/foo.c}
9425 @item @file{/home/user/foo.c}
9426
9427 @end enumerate
9428
9429 If the file name in the previous example had been recorded in the
9430 executable as a relative path rather than an absolute path, then the
9431 first look up would not have occurred, but all of the remaining steps
9432 would be similar.
9433
9434 When searching for source files on MS-DOS and MS-Windows, where
9435 absolute paths start with a drive letter (e.g.@:
9436 @file{C:/project/foo.c}), @value{GDBN} will remove the drive letter
9437 from the file name before appending it to a search directory from
9438 @dfn{source path}; for instance if the executable references the
9439 source file @file{C:/project/foo.c} and @dfn{source path} is set to
9440 @file{D:/mnt/cross}, then @value{GDBN} will search in the following
9441 locations for the source file:
9442
9443 @enumerate
9444
9445 @item @file{C:/project/foo.c}
9446 @item @file{D:/mnt/cross/project/foo.c}
9447 @item @file{D:/mnt/cross/foo.c}
9448
9449 @end enumerate
9450
9451 Note that the executable search path is @emph{not} used to locate the
9452 source files.
9453
9454 Whenever you reset or rearrange the source path, @value{GDBN} clears out
9455 any information it has cached about where source files are found and where
9456 each line is in the file.
9457
9458 @kindex directory
9459 @kindex dir
9460 When you start @value{GDBN}, its source path includes only @samp{$cdir}
9461 and @samp{$cwd}, in that order.
9462 To add other directories, use the @code{directory} command.
9463
9464 The search path is used to find both program source files and @value{GDBN}
9465 script files (read using the @samp{-command} option and @samp{source} command).
9466
9467 In addition to the source path, @value{GDBN} provides a set of commands
9468 that manage a list of source path substitution rules. A @dfn{substitution
9469 rule} specifies how to rewrite source directories stored in the program's
9470 debug information in case the sources were moved to a different
9471 directory between compilation and debugging. A rule is made of
9472 two strings, the first specifying what needs to be rewritten in
9473 the path, and the second specifying how it should be rewritten.
9474 In @ref{set substitute-path}, we name these two parts @var{from} and
9475 @var{to} respectively. @value{GDBN} does a simple string replacement
9476 of @var{from} with @var{to} at the start of the directory part of the
9477 source file name, and uses that result instead of the original file
9478 name to look up the sources.
9479
9480 Using the previous example, suppose the @file{foo-1.0} tree has been
9481 moved from @file{/usr/src} to @file{/mnt/cross}, then you can tell
9482 @value{GDBN} to replace @file{/usr/src} in all source path names with
9483 @file{/mnt/cross}. The first lookup will then be
9484 @file{/mnt/cross/foo-1.0/lib/foo.c} in place of the original location
9485 of @file{/usr/src/foo-1.0/lib/foo.c}. To define a source path
9486 substitution rule, use the @code{set substitute-path} command
9487 (@pxref{set substitute-path}).
9488
9489 To avoid unexpected substitution results, a rule is applied only if the
9490 @var{from} part of the directory name ends at a directory separator.
9491 For instance, a rule substituting @file{/usr/source} into
9492 @file{/mnt/cross} will be applied to @file{/usr/source/foo-1.0} but
9493 not to @file{/usr/sourceware/foo-2.0}. And because the substitution
9494 is applied only at the beginning of the directory name, this rule will
9495 not be applied to @file{/root/usr/source/baz.c} either.
9496
9497 In many cases, you can achieve the same result using the @code{directory}
9498 command. However, @code{set substitute-path} can be more efficient in
9499 the case where the sources are organized in a complex tree with multiple
9500 subdirectories. With the @code{directory} command, you need to add each
9501 subdirectory of your project. If you moved the entire tree while
9502 preserving its internal organization, then @code{set substitute-path}
9503 allows you to direct the debugger to all the sources with one single
9504 command.
9505
9506 @code{set substitute-path} is also more than just a shortcut command.
9507 The source path is only used if the file at the original location no
9508 longer exists. On the other hand, @code{set substitute-path} modifies
9509 the debugger behavior to look at the rewritten location instead. So, if
9510 for any reason a source file that is not relevant to your executable is
9511 located at the original location, a substitution rule is the only
9512 method available to point @value{GDBN} at the new location.
9513
9514 @cindex @samp{--with-relocated-sources}
9515 @cindex default source path substitution
9516 You can configure a default source path substitution rule by
9517 configuring @value{GDBN} with the
9518 @samp{--with-relocated-sources=@var{dir}} option. The @var{dir}
9519 should be the name of a directory under @value{GDBN}'s configured
9520 prefix (set with @samp{--prefix} or @samp{--exec-prefix}), and
9521 directory names in debug information under @var{dir} will be adjusted
9522 automatically if the installed @value{GDBN} is moved to a new
9523 location. This is useful if @value{GDBN}, libraries or executables
9524 with debug information and corresponding source code are being moved
9525 together.
9526
9527 @table @code
9528 @item directory @var{dirname} @dots{}
9529 @item dir @var{dirname} @dots{}
9530 Add directory @var{dirname} to the front of the source path. Several
9531 directory names may be given to this command, separated by @samp{:}
9532 (@samp{;} on MS-DOS and MS-Windows, where @samp{:} usually appears as
9533 part of absolute file names) or
9534 whitespace. You may specify a directory that is already in the source
9535 path; this moves it forward, so @value{GDBN} searches it sooner.
9536
9537 The special strings @samp{$cdir} (to refer to the compilation
9538 directory, if one is recorded), and @samp{$cwd} (to refer to the
9539 current working directory) can also be included in the list of
9540 directories @var{dirname}. Though these will already be in the source
9541 path they will be moved forward in the list so @value{GDBN} searches
9542 them sooner.
9543
9544 @item directory
9545 Reset the source path to its default value (@samp{$cdir:$cwd} on Unix systems). This requires confirmation.
9546
9547 @c RET-repeat for @code{directory} is explicitly disabled, but since
9548 @c repeating it would be a no-op we do not say that. (thanks to RMS)
9549
9550 @item set directories @var{path-list}
9551 @kindex set directories
9552 Set the source path to @var{path-list}.
9553 @samp{$cdir:$cwd} are added if missing.
9554
9555 @item show directories
9556 @kindex show directories
9557 Print the source path: show which directories it contains.
9558
9559 @anchor{set substitute-path}
9560 @item set substitute-path @var{from} @var{to}
9561 @kindex set substitute-path
9562 Define a source path substitution rule, and add it at the end of the
9563 current list of existing substitution rules. If a rule with the same
9564 @var{from} was already defined, then the old rule is also deleted.
9565
9566 For example, if the file @file{/foo/bar/baz.c} was moved to
9567 @file{/mnt/cross/baz.c}, then the command
9568
9569 @smallexample
9570 (@value{GDBP}) set substitute-path /foo/bar /mnt/cross
9571 @end smallexample
9572
9573 @noindent
9574 will tell @value{GDBN} to replace @samp{/foo/bar} with
9575 @samp{/mnt/cross}, which will allow @value{GDBN} to find the file
9576 @file{baz.c} even though it was moved.
9577
9578 In the case when more than one substitution rule have been defined,
9579 the rules are evaluated one by one in the order where they have been
9580 defined. The first one matching, if any, is selected to perform
9581 the substitution.
9582
9583 For instance, if we had entered the following commands:
9584
9585 @smallexample
9586 (@value{GDBP}) set substitute-path /usr/src/include /mnt/include
9587 (@value{GDBP}) set substitute-path /usr/src /mnt/src
9588 @end smallexample
9589
9590 @noindent
9591 @value{GDBN} would then rewrite @file{/usr/src/include/defs.h} into
9592 @file{/mnt/include/defs.h} by using the first rule. However, it would
9593 use the second rule to rewrite @file{/usr/src/lib/foo.c} into
9594 @file{/mnt/src/lib/foo.c}.
9595
9596
9597 @item unset substitute-path [path]
9598 @kindex unset substitute-path
9599 If a path is specified, search the current list of substitution rules
9600 for a rule that would rewrite that path. Delete that rule if found.
9601 A warning is emitted by the debugger if no rule could be found.
9602
9603 If no path is specified, then all substitution rules are deleted.
9604
9605 @item show substitute-path [path]
9606 @kindex show substitute-path
9607 If a path is specified, then print the source path substitution rule
9608 which would rewrite that path, if any.
9609
9610 If no path is specified, then print all existing source path substitution
9611 rules.
9612
9613 @end table
9614
9615 If your source path is cluttered with directories that are no longer of
9616 interest, @value{GDBN} may sometimes cause confusion by finding the wrong
9617 versions of source. You can correct the situation as follows:
9618
9619 @enumerate
9620 @item
9621 Use @code{directory} with no argument to reset the source path to its default value.
9622
9623 @item
9624 Use @code{directory} with suitable arguments to reinstall the
9625 directories you want in the source path. You can add all the
9626 directories in one command.
9627 @end enumerate
9628
9629 @node Machine Code
9630 @section Source and Machine Code
9631 @cindex source line and its code address
9632
9633 You can use the command @code{info line} to map source lines to program
9634 addresses (and vice versa), and the command @code{disassemble} to display
9635 a range of addresses as machine instructions. You can use the command
9636 @code{set disassemble-next-line} to set whether to disassemble next
9637 source line when execution stops. When run under @sc{gnu} Emacs
9638 mode, the @code{info line} command causes the arrow to point to the
9639 line specified. Also, @code{info line} prints addresses in symbolic form as
9640 well as hex.
9641
9642 @table @code
9643 @kindex info line
9644 @item info line
9645 @itemx info line @var{location}
9646 Print the starting and ending addresses of the compiled code for
9647 source line @var{location}. You can specify source lines in any of
9648 the ways documented in @ref{Specify Location}. With no @var{location}
9649 information about the current source line is printed.
9650 @end table
9651
9652 For example, we can use @code{info line} to discover the location of
9653 the object code for the first line of function
9654 @code{m4_changequote}:
9655
9656 @smallexample
9657 (@value{GDBP}) info line m4_changequote
9658 Line 895 of "builtin.c" starts at pc 0x634c <m4_changequote> and \
9659 ends at 0x6350 <m4_changequote+4>.
9660 @end smallexample
9661
9662 @noindent
9663 @cindex code address and its source line
9664 We can also inquire (using @code{*@var{addr}} as the form for
9665 @var{location}) what source line covers a particular address:
9666 @smallexample
9667 (@value{GDBP}) info line *0x63ff
9668 Line 926 of "builtin.c" starts at pc 0x63e4 <m4_changequote+152> and \
9669 ends at 0x6404 <m4_changequote+184>.
9670 @end smallexample
9671
9672 @cindex @code{$_} and @code{info line}
9673 @cindex @code{x} command, default address
9674 @kindex x@r{(examine), and} info line
9675 After @code{info line}, the default address for the @code{x} command
9676 is changed to the starting address of the line, so that @samp{x/i} is
9677 sufficient to begin examining the machine code (@pxref{Memory,
9678 ,Examining Memory}). Also, this address is saved as the value of the
9679 convenience variable @code{$_} (@pxref{Convenience Vars, ,Convenience
9680 Variables}).
9681
9682 @cindex info line, repeated calls
9683 After @code{info line}, using @code{info line} again without
9684 specifying a location will display information about the next source
9685 line.
9686
9687 @table @code
9688 @kindex disassemble
9689 @cindex assembly instructions
9690 @cindex instructions, assembly
9691 @cindex machine instructions
9692 @cindex listing machine instructions
9693 @item disassemble
9694 @itemx disassemble /m
9695 @itemx disassemble /s
9696 @itemx disassemble /r
9697 This specialized command dumps a range of memory as machine
9698 instructions. It can also print mixed source+disassembly by specifying
9699 the @code{/m} or @code{/s} modifier and print the raw instructions in hex
9700 as well as in symbolic form by specifying the @code{/r} modifier.
9701 The default memory range is the function surrounding the
9702 program counter of the selected frame. A single argument to this
9703 command is a program counter value; @value{GDBN} dumps the function
9704 surrounding this value. When two arguments are given, they should
9705 be separated by a comma, possibly surrounded by whitespace. The
9706 arguments specify a range of addresses to dump, in one of two forms:
9707
9708 @table @code
9709 @item @var{start},@var{end}
9710 the addresses from @var{start} (inclusive) to @var{end} (exclusive)
9711 @item @var{start},+@var{length}
9712 the addresses from @var{start} (inclusive) to
9713 @code{@var{start}+@var{length}} (exclusive).
9714 @end table
9715
9716 @noindent
9717 When 2 arguments are specified, the name of the function is also
9718 printed (since there could be several functions in the given range).
9719
9720 The argument(s) can be any expression yielding a numeric value, such as
9721 @samp{0x32c4}, @samp{&main+10} or @samp{$pc - 8}.
9722
9723 If the range of memory being disassembled contains current program counter,
9724 the instruction at that location is shown with a @code{=>} marker.
9725 @end table
9726
9727 The following example shows the disassembly of a range of addresses of
9728 HP PA-RISC 2.0 code:
9729
9730 @smallexample
9731 (@value{GDBP}) disas 0x32c4, 0x32e4
9732 Dump of assembler code from 0x32c4 to 0x32e4:
9733 0x32c4 <main+204>: addil 0,dp
9734 0x32c8 <main+208>: ldw 0x22c(sr0,r1),r26
9735 0x32cc <main+212>: ldil 0x3000,r31
9736 0x32d0 <main+216>: ble 0x3f8(sr4,r31)
9737 0x32d4 <main+220>: ldo 0(r31),rp
9738 0x32d8 <main+224>: addil -0x800,dp
9739 0x32dc <main+228>: ldo 0x588(r1),r26
9740 0x32e0 <main+232>: ldil 0x3000,r31
9741 End of assembler dump.
9742 @end smallexample
9743
9744 Here is an example showing mixed source+assembly for Intel x86
9745 with @code{/m} or @code{/s}, when the program is stopped just after
9746 function prologue in a non-optimized function with no inline code.
9747
9748 @smallexample
9749 (@value{GDBP}) disas /m main
9750 Dump of assembler code for function main:
9751 5 @{
9752 0x08048330 <+0>: push %ebp
9753 0x08048331 <+1>: mov %esp,%ebp
9754 0x08048333 <+3>: sub $0x8,%esp
9755 0x08048336 <+6>: and $0xfffffff0,%esp
9756 0x08048339 <+9>: sub $0x10,%esp
9757
9758 6 printf ("Hello.\n");
9759 => 0x0804833c <+12>: movl $0x8048440,(%esp)
9760 0x08048343 <+19>: call 0x8048284 <puts@@plt>
9761
9762 7 return 0;
9763 8 @}
9764 0x08048348 <+24>: mov $0x0,%eax
9765 0x0804834d <+29>: leave
9766 0x0804834e <+30>: ret
9767
9768 End of assembler dump.
9769 @end smallexample
9770
9771 The @code{/m} option is deprecated as its output is not useful when
9772 there is either inlined code or re-ordered code.
9773 The @code{/s} option is the preferred choice.
9774 Here is an example for AMD x86-64 showing the difference between
9775 @code{/m} output and @code{/s} output.
9776 This example has one inline function defined in a header file,
9777 and the code is compiled with @samp{-O2} optimization.
9778 Note how the @code{/m} output is missing the disassembly of
9779 several instructions that are present in the @code{/s} output.
9780
9781 @file{foo.h}:
9782
9783 @smallexample
9784 int
9785 foo (int a)
9786 @{
9787 if (a < 0)
9788 return a * 2;
9789 if (a == 0)
9790 return 1;
9791 return a + 10;
9792 @}
9793 @end smallexample
9794
9795 @file{foo.c}:
9796
9797 @smallexample
9798 #include "foo.h"
9799 volatile int x, y;
9800 int
9801 main ()
9802 @{
9803 x = foo (y);
9804 return 0;
9805 @}
9806 @end smallexample
9807
9808 @smallexample
9809 (@value{GDBP}) disas /m main
9810 Dump of assembler code for function main:
9811 5 @{
9812
9813 6 x = foo (y);
9814 0x0000000000400400 <+0>: mov 0x200c2e(%rip),%eax # 0x601034 <y>
9815 0x0000000000400417 <+23>: mov %eax,0x200c13(%rip) # 0x601030 <x>
9816
9817 7 return 0;
9818 8 @}
9819 0x000000000040041d <+29>: xor %eax,%eax
9820 0x000000000040041f <+31>: retq
9821 0x0000000000400420 <+32>: add %eax,%eax
9822 0x0000000000400422 <+34>: jmp 0x400417 <main+23>
9823
9824 End of assembler dump.
9825 (@value{GDBP}) disas /s main
9826 Dump of assembler code for function main:
9827 foo.c:
9828 5 @{
9829 6 x = foo (y);
9830 0x0000000000400400 <+0>: mov 0x200c2e(%rip),%eax # 0x601034 <y>
9831
9832 foo.h:
9833 4 if (a < 0)
9834 0x0000000000400406 <+6>: test %eax,%eax
9835 0x0000000000400408 <+8>: js 0x400420 <main+32>
9836
9837 6 if (a == 0)
9838 7 return 1;
9839 8 return a + 10;
9840 0x000000000040040a <+10>: lea 0xa(%rax),%edx
9841 0x000000000040040d <+13>: test %eax,%eax
9842 0x000000000040040f <+15>: mov $0x1,%eax
9843 0x0000000000400414 <+20>: cmovne %edx,%eax
9844
9845 foo.c:
9846 6 x = foo (y);
9847 0x0000000000400417 <+23>: mov %eax,0x200c13(%rip) # 0x601030 <x>
9848
9849 7 return 0;
9850 8 @}
9851 0x000000000040041d <+29>: xor %eax,%eax
9852 0x000000000040041f <+31>: retq
9853
9854 foo.h:
9855 5 return a * 2;
9856 0x0000000000400420 <+32>: add %eax,%eax
9857 0x0000000000400422 <+34>: jmp 0x400417 <main+23>
9858 End of assembler dump.
9859 @end smallexample
9860
9861 Here is another example showing raw instructions in hex for AMD x86-64,
9862
9863 @smallexample
9864 (gdb) disas /r 0x400281,+10
9865 Dump of assembler code from 0x400281 to 0x40028b:
9866 0x0000000000400281: 38 36 cmp %dh,(%rsi)
9867 0x0000000000400283: 2d 36 34 2e 73 sub $0x732e3436,%eax
9868 0x0000000000400288: 6f outsl %ds:(%rsi),(%dx)
9869 0x0000000000400289: 2e 32 00 xor %cs:(%rax),%al
9870 End of assembler dump.
9871 @end smallexample
9872
9873 Addresses cannot be specified as a location (@pxref{Specify Location}).
9874 So, for example, if you want to disassemble function @code{bar}
9875 in file @file{foo.c}, you must type @samp{disassemble 'foo.c'::bar}
9876 and not @samp{disassemble foo.c:bar}.
9877
9878 Some architectures have more than one commonly-used set of instruction
9879 mnemonics or other syntax.
9880
9881 For programs that were dynamically linked and use shared libraries,
9882 instructions that call functions or branch to locations in the shared
9883 libraries might show a seemingly bogus location---it's actually a
9884 location of the relocation table. On some architectures, @value{GDBN}
9885 might be able to resolve these to actual function names.
9886
9887 @table @code
9888 @kindex set disassembler-options
9889 @cindex disassembler options
9890 @item set disassembler-options @var{option1}[,@var{option2}@dots{}]
9891 This command controls the passing of target specific information to
9892 the disassembler. For a list of valid options, please refer to the
9893 @code{-M}/@code{--disassembler-options} section of the @samp{objdump}
9894 manual and/or the output of @kbd{objdump --help}
9895 (@pxref{objdump,,objdump,binutils,The GNU Binary Utilities}).
9896 The default value is the empty string.
9897
9898 If it is necessary to specify more than one disassembler option, then
9899 multiple options can be placed together into a comma separated list.
9900 Currently this command is only supported on targets ARC, ARM, MIPS,
9901 PowerPC and S/390.
9902
9903 @kindex show disassembler-options
9904 @item show disassembler-options
9905 Show the current setting of the disassembler options.
9906 @end table
9907
9908 @table @code
9909 @kindex set disassembly-flavor
9910 @cindex Intel disassembly flavor
9911 @cindex AT&T disassembly flavor
9912 @item set disassembly-flavor @var{instruction-set}
9913 Select the instruction set to use when disassembling the
9914 program via the @code{disassemble} or @code{x/i} commands.
9915
9916 Currently this command is only defined for the Intel x86 family. You
9917 can set @var{instruction-set} to either @code{intel} or @code{att}.
9918 The default is @code{att}, the AT&T flavor used by default by Unix
9919 assemblers for x86-based targets.
9920
9921 @kindex show disassembly-flavor
9922 @item show disassembly-flavor
9923 Show the current setting of the disassembly flavor.
9924 @end table
9925
9926 @table @code
9927 @kindex set disassemble-next-line
9928 @kindex show disassemble-next-line
9929 @item set disassemble-next-line
9930 @itemx show disassemble-next-line
9931 Control whether or not @value{GDBN} will disassemble the next source
9932 line or instruction when execution stops. If ON, @value{GDBN} will
9933 display disassembly of the next source line when execution of the
9934 program being debugged stops. This is @emph{in addition} to
9935 displaying the source line itself, which @value{GDBN} always does if
9936 possible. If the next source line cannot be displayed for some reason
9937 (e.g., if @value{GDBN} cannot find the source file, or there's no line
9938 info in the debug info), @value{GDBN} will display disassembly of the
9939 next @emph{instruction} instead of showing the next source line. If
9940 AUTO, @value{GDBN} will display disassembly of next instruction only
9941 if the source line cannot be displayed. This setting causes
9942 @value{GDBN} to display some feedback when you step through a function
9943 with no line info or whose source file is unavailable. The default is
9944 OFF, which means never display the disassembly of the next line or
9945 instruction.
9946 @end table
9947
9948 @node Disable Reading Source
9949 @section Disable Reading Source Code
9950 @cindex source code, disable access
9951
9952 In some cases it can be desirable to prevent @value{GDBN} from
9953 accessing source code files. One case where this might be desirable
9954 is if the source code files are located over a slow network
9955 connection.
9956
9957 The following command can be used to control whether @value{GDBN}
9958 should access source code files or not:
9959
9960 @table @code
9961 @kindex set source open
9962 @kindex show source open
9963 @item set source open @r{[}on@r{|}off@r{]}
9964 @itemx show source open
9965 When this option is @code{on}, which is the default, @value{GDBN} will
9966 access source code files when needed, for example to print source
9967 lines when @value{GDBN} stops, or in response to the @code{list}
9968 command.
9969
9970 When this option is @code{off}, @value{GDBN} will not access source
9971 code files.
9972 @end table
9973
9974 @node Data
9975 @chapter Examining Data
9976
9977 @cindex printing data
9978 @cindex examining data
9979 @kindex print
9980 @kindex inspect
9981 The usual way to examine data in your program is with the @code{print}
9982 command (abbreviated @code{p}), or its synonym @code{inspect}. It
9983 evaluates and prints the value of an expression of the language your
9984 program is written in (@pxref{Languages, ,Using @value{GDBN} with
9985 Different Languages}). It may also print the expression using a
9986 Python-based pretty-printer (@pxref{Pretty Printing}).
9987
9988 @table @code
9989 @item print [[@var{options}] --] @var{expr}
9990 @itemx print [[@var{options}] --] /@var{f} @var{expr}
9991 @var{expr} is an expression (in the source language). By default the
9992 value of @var{expr} is printed in a format appropriate to its data type;
9993 you can choose a different format by specifying @samp{/@var{f}}, where
9994 @var{f} is a letter specifying the format; see @ref{Output Formats,,Output
9995 Formats}.
9996
9997 @anchor{print options}
9998 The @code{print} command supports a number of options that allow
9999 overriding relevant global print settings as set by @code{set print}
10000 subcommands:
10001
10002 @table @code
10003 @item -address [@code{on}|@code{off}]
10004 Set printing of addresses.
10005 Related setting: @ref{set print address}.
10006
10007 @item -array [@code{on}|@code{off}]
10008 Pretty formatting of arrays.
10009 Related setting: @ref{set print array}.
10010
10011 @item -array-indexes [@code{on}|@code{off}]
10012 Set printing of array indexes.
10013 Related setting: @ref{set print array-indexes}.
10014
10015 @item -elements @var{number-of-elements}|@code{unlimited}
10016 Set limit on string chars or array elements to print. The value
10017 @code{unlimited} causes there to be no limit. Related setting:
10018 @ref{set print elements}.
10019
10020 @item -max-depth @var{depth}|@code{unlimited}
10021 Set the threshold after which nested structures are replaced with
10022 ellipsis. Related setting: @ref{set print max-depth}.
10023
10024 @item -memory-tag-violations [@code{on}|@code{off}]
10025 Set printing of additional information about memory tag violations.
10026 @xref{set print memory-tag-violations}.
10027
10028 @item -null-stop [@code{on}|@code{off}]
10029 Set printing of char arrays to stop at first null char. Related
10030 setting: @ref{set print null-stop}.
10031
10032 @item -object [@code{on}|@code{off}]
10033 Set printing C@t{++} virtual function tables. Related setting:
10034 @ref{set print object}.
10035
10036 @item -pretty [@code{on}|@code{off}]
10037 Set pretty formatting of structures. Related setting: @ref{set print
10038 pretty}.
10039
10040 @item -raw-values [@code{on}|@code{off}]
10041 Set whether to print values in raw form, bypassing any
10042 pretty-printers for that value. Related setting: @ref{set print
10043 raw-values}.
10044
10045 @item -repeats @var{number-of-repeats}|@code{unlimited}
10046 Set threshold for repeated print elements. @code{unlimited} causes
10047 all elements to be individually printed. Related setting: @ref{set
10048 print repeats}.
10049
10050 @item -static-members [@code{on}|@code{off}]
10051 Set printing C@t{++} static members. Related setting: @ref{set print
10052 static-members}.
10053
10054 @item -symbol [@code{on}|@code{off}]
10055 Set printing of symbol names when printing pointers. Related setting:
10056 @ref{set print symbol}.
10057
10058 @item -union [@code{on}|@code{off}]
10059 Set printing of unions interior to structures. Related setting:
10060 @ref{set print union}.
10061
10062 @item -vtbl [@code{on}|@code{off}]
10063 Set printing of C++ virtual function tables. Related setting:
10064 @ref{set print vtbl}.
10065 @end table
10066
10067 Because the @code{print} command accepts arbitrary expressions which
10068 may look like options (including abbreviations), if you specify any
10069 command option, then you must use a double dash (@code{--}) to mark
10070 the end of option processing.
10071
10072 For example, this prints the value of the @code{-p} expression:
10073
10074 @smallexample
10075 (@value{GDBP}) print -p
10076 @end smallexample
10077
10078 While this repeats the last value in the value history (see below)
10079 with the @code{-pretty} option in effect:
10080
10081 @smallexample
10082 (@value{GDBP}) print -p --
10083 @end smallexample
10084
10085 Here is an example including both on option and an expression:
10086
10087 @smallexample
10088 @group
10089 (@value{GDBP}) print -pretty -- *myptr
10090 $1 = @{
10091 next = 0x0,
10092 flags = @{
10093 sweet = 1,
10094 sour = 1
10095 @},
10096 meat = 0x54 "Pork"
10097 @}
10098 @end group
10099 @end smallexample
10100
10101 @item print [@var{options}]
10102 @itemx print [@var{options}] /@var{f}
10103 @cindex reprint the last value
10104 If you omit @var{expr}, @value{GDBN} displays the last value again (from the
10105 @dfn{value history}; @pxref{Value History, ,Value History}). This allows you to
10106 conveniently inspect the same value in an alternative format.
10107 @end table
10108
10109 If the architecture supports memory tagging, the @code{print} command will
10110 display pointer/memory tag mismatches if what is being printed is a pointer
10111 or reference type. @xref{Memory Tagging}.
10112
10113 A more low-level way of examining data is with the @code{x} command.
10114 It examines data in memory at a specified address and prints it in a
10115 specified format. @xref{Memory, ,Examining Memory}.
10116
10117 If you are interested in information about types, or about how the
10118 fields of a struct or a class are declared, use the @code{ptype @var{exp}}
10119 command rather than @code{print}. @xref{Symbols, ,Examining the Symbol
10120 Table}.
10121
10122 @cindex exploring hierarchical data structures
10123 @kindex explore
10124 Another way of examining values of expressions and type information is
10125 through the Python extension command @code{explore} (available only if
10126 the @value{GDBN} build is configured with @code{--with-python}). It
10127 offers an interactive way to start at the highest level (or, the most
10128 abstract level) of the data type of an expression (or, the data type
10129 itself) and explore all the way down to leaf scalar values/fields
10130 embedded in the higher level data types.
10131
10132 @table @code
10133 @item explore @var{arg}
10134 @var{arg} is either an expression (in the source language), or a type
10135 visible in the current context of the program being debugged.
10136 @end table
10137
10138 The working of the @code{explore} command can be illustrated with an
10139 example. If a data type @code{struct ComplexStruct} is defined in your
10140 C program as
10141
10142 @smallexample
10143 struct SimpleStruct
10144 @{
10145 int i;
10146 double d;
10147 @};
10148
10149 struct ComplexStruct
10150 @{
10151 struct SimpleStruct *ss_p;
10152 int arr[10];
10153 @};
10154 @end smallexample
10155
10156 @noindent
10157 followed by variable declarations as
10158
10159 @smallexample
10160 struct SimpleStruct ss = @{ 10, 1.11 @};
10161 struct ComplexStruct cs = @{ &ss, @{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 @} @};
10162 @end smallexample
10163
10164 @noindent
10165 then, the value of the variable @code{cs} can be explored using the
10166 @code{explore} command as follows.
10167
10168 @smallexample
10169 (gdb) explore cs
10170 The value of `cs' is a struct/class of type `struct ComplexStruct' with
10171 the following fields:
10172
10173 ss_p = <Enter 0 to explore this field of type `struct SimpleStruct *'>
10174 arr = <Enter 1 to explore this field of type `int [10]'>
10175
10176 Enter the field number of choice:
10177 @end smallexample
10178
10179 @noindent
10180 Since the fields of @code{cs} are not scalar values, you are being
10181 prompted to chose the field you want to explore. Let's say you choose
10182 the field @code{ss_p} by entering @code{0}. Then, since this field is a
10183 pointer, you will be asked if it is pointing to a single value. From
10184 the declaration of @code{cs} above, it is indeed pointing to a single
10185 value, hence you enter @code{y}. If you enter @code{n}, then you will
10186 be asked if it were pointing to an array of values, in which case this
10187 field will be explored as if it were an array.
10188
10189 @smallexample
10190 `cs.ss_p' is a pointer to a value of type `struct SimpleStruct'
10191 Continue exploring it as a pointer to a single value [y/n]: y
10192 The value of `*(cs.ss_p)' is a struct/class of type `struct
10193 SimpleStruct' with the following fields:
10194
10195 i = 10 .. (Value of type `int')
10196 d = 1.1100000000000001 .. (Value of type `double')
10197
10198 Press enter to return to parent value:
10199 @end smallexample
10200
10201 @noindent
10202 If the field @code{arr} of @code{cs} was chosen for exploration by
10203 entering @code{1} earlier, then since it is as array, you will be
10204 prompted to enter the index of the element in the array that you want
10205 to explore.
10206
10207 @smallexample
10208 `cs.arr' is an array of `int'.
10209 Enter the index of the element you want to explore in `cs.arr': 5
10210
10211 `(cs.arr)[5]' is a scalar value of type `int'.
10212
10213 (cs.arr)[5] = 4
10214
10215 Press enter to return to parent value:
10216 @end smallexample
10217
10218 In general, at any stage of exploration, you can go deeper towards the
10219 leaf values by responding to the prompts appropriately, or hit the
10220 return key to return to the enclosing data structure (the @i{higher}
10221 level data structure).
10222
10223 Similar to exploring values, you can use the @code{explore} command to
10224 explore types. Instead of specifying a value (which is typically a
10225 variable name or an expression valid in the current context of the
10226 program being debugged), you specify a type name. If you consider the
10227 same example as above, your can explore the type
10228 @code{struct ComplexStruct} by passing the argument
10229 @code{struct ComplexStruct} to the @code{explore} command.
10230
10231 @smallexample
10232 (gdb) explore struct ComplexStruct
10233 @end smallexample
10234
10235 @noindent
10236 By responding to the prompts appropriately in the subsequent interactive
10237 session, you can explore the type @code{struct ComplexStruct} in a
10238 manner similar to how the value @code{cs} was explored in the above
10239 example.
10240
10241 The @code{explore} command also has two sub-commands,
10242 @code{explore value} and @code{explore type}. The former sub-command is
10243 a way to explicitly specify that value exploration of the argument is
10244 being invoked, while the latter is a way to explicitly specify that type
10245 exploration of the argument is being invoked.
10246
10247 @table @code
10248 @item explore value @var{expr}
10249 @cindex explore value
10250 This sub-command of @code{explore} explores the value of the
10251 expression @var{expr} (if @var{expr} is an expression valid in the
10252 current context of the program being debugged). The behavior of this
10253 command is identical to that of the behavior of the @code{explore}
10254 command being passed the argument @var{expr}.
10255
10256 @item explore type @var{arg}
10257 @cindex explore type
10258 This sub-command of @code{explore} explores the type of @var{arg} (if
10259 @var{arg} is a type visible in the current context of program being
10260 debugged), or the type of the value/expression @var{arg} (if @var{arg}
10261 is an expression valid in the current context of the program being
10262 debugged). If @var{arg} is a type, then the behavior of this command is
10263 identical to that of the @code{explore} command being passed the
10264 argument @var{arg}. If @var{arg} is an expression, then the behavior of
10265 this command will be identical to that of the @code{explore} command
10266 being passed the type of @var{arg} as the argument.
10267 @end table
10268
10269 @menu
10270 * Expressions:: Expressions
10271 * Ambiguous Expressions:: Ambiguous Expressions
10272 * Variables:: Program variables
10273 * Arrays:: Artificial arrays
10274 * Output Formats:: Output formats
10275 * Memory:: Examining memory
10276 * Memory Tagging:: Memory Tagging
10277 * Auto Display:: Automatic display
10278 * Print Settings:: Print settings
10279 * Pretty Printing:: Python pretty printing
10280 * Value History:: Value history
10281 * Convenience Vars:: Convenience variables
10282 * Convenience Funs:: Convenience functions
10283 * Registers:: Registers
10284 * Floating Point Hardware:: Floating point hardware
10285 * Vector Unit:: Vector Unit
10286 * OS Information:: Auxiliary data provided by operating system
10287 * Memory Region Attributes:: Memory region attributes
10288 * Dump/Restore Files:: Copy between memory and a file
10289 * Core File Generation:: Cause a program dump its core
10290 * Character Sets:: Debugging programs that use a different
10291 character set than GDB does
10292 * Caching Target Data:: Data caching for targets
10293 * Searching Memory:: Searching memory for a sequence of bytes
10294 * Value Sizes:: Managing memory allocated for values
10295 @end menu
10296
10297 @node Expressions
10298 @section Expressions
10299
10300 @cindex expressions
10301 @code{print} and many other @value{GDBN} commands accept an expression and
10302 compute its value. Any kind of constant, variable or operator defined
10303 by the programming language you are using is valid in an expression in
10304 @value{GDBN}. This includes conditional expressions, function calls,
10305 casts, and string constants. It also includes preprocessor macros, if
10306 you compiled your program to include this information; see
10307 @ref{Compilation}.
10308
10309 @cindex arrays in expressions
10310 @value{GDBN} supports array constants in expressions input by
10311 the user. The syntax is @{@var{element}, @var{element}@dots{}@}. For example,
10312 you can use the command @code{print @{1, 2, 3@}} to create an array
10313 of three integers. If you pass an array to a function or assign it
10314 to a program variable, @value{GDBN} copies the array to memory that
10315 is @code{malloc}ed in the target program.
10316
10317 Because C is so widespread, most of the expressions shown in examples in
10318 this manual are in C. @xref{Languages, , Using @value{GDBN} with Different
10319 Languages}, for information on how to use expressions in other
10320 languages.
10321
10322 In this section, we discuss operators that you can use in @value{GDBN}
10323 expressions regardless of your programming language.
10324
10325 @cindex casts, in expressions
10326 Casts are supported in all languages, not just in C, because it is so
10327 useful to cast a number into a pointer in order to examine a structure
10328 at that address in memory.
10329 @c FIXME: casts supported---Mod2 true?
10330
10331 @value{GDBN} supports these operators, in addition to those common
10332 to programming languages:
10333
10334 @table @code
10335 @item @@
10336 @samp{@@} is a binary operator for treating parts of memory as arrays.
10337 @xref{Arrays, ,Artificial Arrays}, for more information.
10338
10339 @item ::
10340 @samp{::} allows you to specify a variable in terms of the file or
10341 function where it is defined. @xref{Variables, ,Program Variables}.
10342
10343 @cindex @{@var{type}@}
10344 @cindex type casting memory
10345 @cindex memory, viewing as typed object
10346 @cindex casts, to view memory
10347 @item @{@var{type}@} @var{addr}
10348 Refers to an object of type @var{type} stored at address @var{addr} in
10349 memory. The address @var{addr} may be any expression whose value is
10350 an integer or pointer (but parentheses are required around binary
10351 operators, just as in a cast). This construct is allowed regardless
10352 of what kind of data is normally supposed to reside at @var{addr}.
10353 @end table
10354
10355 @node Ambiguous Expressions
10356 @section Ambiguous Expressions
10357 @cindex ambiguous expressions
10358
10359 Expressions can sometimes contain some ambiguous elements. For instance,
10360 some programming languages (notably Ada, C@t{++} and Objective-C) permit
10361 a single function name to be defined several times, for application in
10362 different contexts. This is called @dfn{overloading}. Another example
10363 involving Ada is generics. A @dfn{generic package} is similar to C@t{++}
10364 templates and is typically instantiated several times, resulting in
10365 the same function name being defined in different contexts.
10366
10367 In some cases and depending on the language, it is possible to adjust
10368 the expression to remove the ambiguity. For instance in C@t{++}, you
10369 can specify the signature of the function you want to break on, as in
10370 @kbd{break @var{function}(@var{types})}. In Ada, using the fully
10371 qualified name of your function often makes the expression unambiguous
10372 as well.
10373
10374 When an ambiguity that needs to be resolved is detected, the debugger
10375 has the capability to display a menu of numbered choices for each
10376 possibility, and then waits for the selection with the prompt @samp{>}.
10377 The first option is always @samp{[0] cancel}, and typing @kbd{0 @key{RET}}
10378 aborts the current command. If the command in which the expression was
10379 used allows more than one choice to be selected, the next option in the
10380 menu is @samp{[1] all}, and typing @kbd{1 @key{RET}} selects all possible
10381 choices.
10382
10383 For example, the following session excerpt shows an attempt to set a
10384 breakpoint at the overloaded symbol @code{String::after}.
10385 We choose three particular definitions of that function name:
10386
10387 @c FIXME! This is likely to change to show arg type lists, at least
10388 @smallexample
10389 @group
10390 (@value{GDBP}) b String::after
10391 [0] cancel
10392 [1] all
10393 [2] file:String.cc; line number:867
10394 [3] file:String.cc; line number:860
10395 [4] file:String.cc; line number:875
10396 [5] file:String.cc; line number:853
10397 [6] file:String.cc; line number:846
10398 [7] file:String.cc; line number:735
10399 > 2 4 6
10400 Breakpoint 1 at 0xb26c: file String.cc, line 867.
10401 Breakpoint 2 at 0xb344: file String.cc, line 875.
10402 Breakpoint 3 at 0xafcc: file String.cc, line 846.
10403 Multiple breakpoints were set.
10404 Use the "delete" command to delete unwanted
10405 breakpoints.
10406 (@value{GDBP})
10407 @end group
10408 @end smallexample
10409
10410 @table @code
10411 @kindex set multiple-symbols
10412 @item set multiple-symbols @var{mode}
10413 @cindex multiple-symbols menu
10414
10415 This option allows you to adjust the debugger behavior when an expression
10416 is ambiguous.
10417
10418 By default, @var{mode} is set to @code{all}. If the command with which
10419 the expression is used allows more than one choice, then @value{GDBN}
10420 automatically selects all possible choices. For instance, inserting
10421 a breakpoint on a function using an ambiguous name results in a breakpoint
10422 inserted on each possible match. However, if a unique choice must be made,
10423 then @value{GDBN} uses the menu to help you disambiguate the expression.
10424 For instance, printing the address of an overloaded function will result
10425 in the use of the menu.
10426
10427 When @var{mode} is set to @code{ask}, the debugger always uses the menu
10428 when an ambiguity is detected.
10429
10430 Finally, when @var{mode} is set to @code{cancel}, the debugger reports
10431 an error due to the ambiguity and the command is aborted.
10432
10433 @kindex show multiple-symbols
10434 @item show multiple-symbols
10435 Show the current value of the @code{multiple-symbols} setting.
10436 @end table
10437
10438 @node Variables
10439 @section Program Variables
10440
10441 The most common kind of expression to use is the name of a variable
10442 in your program.
10443
10444 Variables in expressions are understood in the selected stack frame
10445 (@pxref{Selection, ,Selecting a Frame}); they must be either:
10446
10447 @itemize @bullet
10448 @item
10449 global (or file-static)
10450 @end itemize
10451
10452 @noindent or
10453
10454 @itemize @bullet
10455 @item
10456 visible according to the scope rules of the
10457 programming language from the point of execution in that frame
10458 @end itemize
10459
10460 @noindent This means that in the function
10461
10462 @smallexample
10463 foo (a)
10464 int a;
10465 @{
10466 bar (a);
10467 @{
10468 int b = test ();
10469 bar (b);
10470 @}
10471 @}
10472 @end smallexample
10473
10474 @noindent
10475 you can examine and use the variable @code{a} whenever your program is
10476 executing within the function @code{foo}, but you can only use or
10477 examine the variable @code{b} while your program is executing inside
10478 the block where @code{b} is declared.
10479
10480 @cindex variable name conflict
10481 There is an exception: you can refer to a variable or function whose
10482 scope is a single source file even if the current execution point is not
10483 in this file. But it is possible to have more than one such variable or
10484 function with the same name (in different source files). If that
10485 happens, referring to that name has unpredictable effects. If you wish,
10486 you can specify a static variable in a particular function or file by
10487 using the colon-colon (@code{::}) notation:
10488
10489 @cindex colon-colon, context for variables/functions
10490 @ifnotinfo
10491 @c info cannot cope with a :: index entry, but why deprive hard copy readers?
10492 @cindex @code{::}, context for variables/functions
10493 @end ifnotinfo
10494 @smallexample
10495 @var{file}::@var{variable}
10496 @var{function}::@var{variable}
10497 @end smallexample
10498
10499 @noindent
10500 Here @var{file} or @var{function} is the name of the context for the
10501 static @var{variable}. In the case of file names, you can use quotes to
10502 make sure @value{GDBN} parses the file name as a single word---for example,
10503 to print a global value of @code{x} defined in @file{f2.c}:
10504
10505 @smallexample
10506 (@value{GDBP}) p 'f2.c'::x
10507 @end smallexample
10508
10509 The @code{::} notation is normally used for referring to
10510 static variables, since you typically disambiguate uses of local variables
10511 in functions by selecting the appropriate frame and using the
10512 simple name of the variable. However, you may also use this notation
10513 to refer to local variables in frames enclosing the selected frame:
10514
10515 @smallexample
10516 void
10517 foo (int a)
10518 @{
10519 if (a < 10)
10520 bar (a);
10521 else
10522 process (a); /* Stop here */
10523 @}
10524
10525 int
10526 bar (int a)
10527 @{
10528 foo (a + 5);
10529 @}
10530 @end smallexample
10531
10532 @noindent
10533 For example, if there is a breakpoint at the commented line,
10534 here is what you might see
10535 when the program stops after executing the call @code{bar(0)}:
10536
10537 @smallexample
10538 (@value{GDBP}) p a
10539 $1 = 10
10540 (@value{GDBP}) p bar::a
10541 $2 = 5
10542 (@value{GDBP}) up 2
10543 #2 0x080483d0 in foo (a=5) at foobar.c:12
10544 (@value{GDBP}) p a
10545 $3 = 5
10546 (@value{GDBP}) p bar::a
10547 $4 = 0
10548 @end smallexample
10549
10550 @cindex C@t{++} scope resolution
10551 These uses of @samp{::} are very rarely in conflict with the very
10552 similar use of the same notation in C@t{++}. When they are in
10553 conflict, the C@t{++} meaning takes precedence; however, this can be
10554 overridden by quoting the file or function name with single quotes.
10555
10556 For example, suppose the program is stopped in a method of a class
10557 that has a field named @code{includefile}, and there is also an
10558 include file named @file{includefile} that defines a variable,
10559 @code{some_global}.
10560
10561 @smallexample
10562 (@value{GDBP}) p includefile
10563 $1 = 23
10564 (@value{GDBP}) p includefile::some_global
10565 A syntax error in expression, near `'.
10566 (@value{GDBP}) p 'includefile'::some_global
10567 $2 = 27
10568 @end smallexample
10569
10570 @cindex wrong values
10571 @cindex variable values, wrong
10572 @cindex function entry/exit, wrong values of variables
10573 @cindex optimized code, wrong values of variables
10574 @quotation
10575 @emph{Warning:} Occasionally, a local variable may appear to have the
10576 wrong value at certain points in a function---just after entry to a new
10577 scope, and just before exit.
10578 @end quotation
10579 You may see this problem when you are stepping by machine instructions.
10580 This is because, on most machines, it takes more than one instruction to
10581 set up a stack frame (including local variable definitions); if you are
10582 stepping by machine instructions, variables may appear to have the wrong
10583 values until the stack frame is completely built. On exit, it usually
10584 also takes more than one machine instruction to destroy a stack frame;
10585 after you begin stepping through that group of instructions, local
10586 variable definitions may be gone.
10587
10588 This may also happen when the compiler does significant optimizations.
10589 To be sure of always seeing accurate values, turn off all optimization
10590 when compiling.
10591
10592 @cindex ``No symbol "foo" in current context''
10593 Another possible effect of compiler optimizations is to optimize
10594 unused variables out of existence, or assign variables to registers (as
10595 opposed to memory addresses). Depending on the support for such cases
10596 offered by the debug info format used by the compiler, @value{GDBN}
10597 might not be able to display values for such local variables. If that
10598 happens, @value{GDBN} will print a message like this:
10599
10600 @smallexample
10601 No symbol "foo" in current context.
10602 @end smallexample
10603
10604 To solve such problems, either recompile without optimizations, or use a
10605 different debug info format, if the compiler supports several such
10606 formats. @xref{Compilation}, for more information on choosing compiler
10607 options. @xref{C, ,C and C@t{++}}, for more information about debug
10608 info formats that are best suited to C@t{++} programs.
10609
10610 If you ask to print an object whose contents are unknown to
10611 @value{GDBN}, e.g., because its data type is not completely specified
10612 by the debug information, @value{GDBN} will say @samp{<incomplete
10613 type>}. @xref{Symbols, incomplete type}, for more about this.
10614
10615 @cindex no debug info variables
10616 If you try to examine or use the value of a (global) variable for
10617 which @value{GDBN} has no type information, e.g., because the program
10618 includes no debug information, @value{GDBN} displays an error message.
10619 @xref{Symbols, unknown type}, for more about unknown types. If you
10620 cast the variable to its declared type, @value{GDBN} gets the
10621 variable's value using the cast-to type as the variable's type. For
10622 example, in a C program:
10623
10624 @smallexample
10625 (@value{GDBP}) p var
10626 'var' has unknown type; cast it to its declared type
10627 (@value{GDBP}) p (float) var
10628 $1 = 3.14
10629 @end smallexample
10630
10631 If you append @kbd{@@entry} string to a function parameter name you get its
10632 value at the time the function got called. If the value is not available an
10633 error message is printed. Entry values are available only with some compilers.
10634 Entry values are normally also printed at the function parameter list according
10635 to @ref{set print entry-values}.
10636
10637 @smallexample
10638 Breakpoint 1, d (i=30) at gdb.base/entry-value.c:29
10639 29 i++;
10640 (gdb) next
10641 30 e (i);
10642 (gdb) print i
10643 $1 = 31
10644 (gdb) print i@@entry
10645 $2 = 30
10646 @end smallexample
10647
10648 Strings are identified as arrays of @code{char} values without specified
10649 signedness. Arrays of either @code{signed char} or @code{unsigned char} get
10650 printed as arrays of 1 byte sized integers. @code{-fsigned-char} or
10651 @code{-funsigned-char} @value{NGCC} options have no effect as @value{GDBN}
10652 defines literal string type @code{"char"} as @code{char} without a sign.
10653 For program code
10654
10655 @smallexample
10656 char var0[] = "A";
10657 signed char var1[] = "A";
10658 @end smallexample
10659
10660 You get during debugging
10661 @smallexample
10662 (gdb) print var0
10663 $1 = "A"
10664 (gdb) print var1
10665 $2 = @{65 'A', 0 '\0'@}
10666 @end smallexample
10667
10668 @node Arrays
10669 @section Artificial Arrays
10670
10671 @cindex artificial array
10672 @cindex arrays
10673 @kindex @@@r{, referencing memory as an array}
10674 It is often useful to print out several successive objects of the
10675 same type in memory; a section of an array, or an array of
10676 dynamically determined size for which only a pointer exists in the
10677 program.
10678
10679 You can do this by referring to a contiguous span of memory as an
10680 @dfn{artificial array}, using the binary operator @samp{@@}. The left
10681 operand of @samp{@@} should be the first element of the desired array
10682 and be an individual object. The right operand should be the desired length
10683 of the array. The result is an array value whose elements are all of
10684 the type of the left argument. The first element is actually the left
10685 argument; the second element comes from bytes of memory immediately
10686 following those that hold the first element, and so on. Here is an
10687 example. If a program says
10688
10689 @smallexample
10690 int *array = (int *) malloc (len * sizeof (int));
10691 @end smallexample
10692
10693 @noindent
10694 you can print the contents of @code{array} with
10695
10696 @smallexample
10697 p *array@@len
10698 @end smallexample
10699
10700 The left operand of @samp{@@} must reside in memory. Array values made
10701 with @samp{@@} in this way behave just like other arrays in terms of
10702 subscripting, and are coerced to pointers when used in expressions.
10703 Artificial arrays most often appear in expressions via the value history
10704 (@pxref{Value History, ,Value History}), after printing one out.
10705
10706 Another way to create an artificial array is to use a cast.
10707 This re-interprets a value as if it were an array.
10708 The value need not be in memory:
10709 @smallexample
10710 (@value{GDBP}) p/x (short[2])0x12345678
10711 $1 = @{0x1234, 0x5678@}
10712 @end smallexample
10713
10714 As a convenience, if you leave the array length out (as in
10715 @samp{(@var{type}[])@var{value}}) @value{GDBN} calculates the size to fill
10716 the value (as @samp{sizeof(@var{value})/sizeof(@var{type})}:
10717 @smallexample
10718 (@value{GDBP}) p/x (short[])0x12345678
10719 $2 = @{0x1234, 0x5678@}
10720 @end smallexample
10721
10722 Sometimes the artificial array mechanism is not quite enough; in
10723 moderately complex data structures, the elements of interest may not
10724 actually be adjacent---for example, if you are interested in the values
10725 of pointers in an array. One useful work-around in this situation is
10726 to use a convenience variable (@pxref{Convenience Vars, ,Convenience
10727 Variables}) as a counter in an expression that prints the first
10728 interesting value, and then repeat that expression via @key{RET}. For
10729 instance, suppose you have an array @code{dtab} of pointers to
10730 structures, and you are interested in the values of a field @code{fv}
10731 in each structure. Here is an example of what you might type:
10732
10733 @smallexample
10734 set $i = 0
10735 p dtab[$i++]->fv
10736 @key{RET}
10737 @key{RET}
10738 @dots{}
10739 @end smallexample
10740
10741 @node Output Formats
10742 @section Output Formats
10743
10744 @cindex formatted output
10745 @cindex output formats
10746 By default, @value{GDBN} prints a value according to its data type. Sometimes
10747 this is not what you want. For example, you might want to print a number
10748 in hex, or a pointer in decimal. Or you might want to view data in memory
10749 at a certain address as a character string or as an instruction. To do
10750 these things, specify an @dfn{output format} when you print a value.
10751
10752 The simplest use of output formats is to say how to print a value
10753 already computed. This is done by starting the arguments of the
10754 @code{print} command with a slash and a format letter. The format
10755 letters supported are:
10756
10757 @table @code
10758 @item x
10759 Print the binary representation of the value in hexadecimal.
10760
10761 @item d
10762 Print the binary representation of the value in decimal.
10763
10764 @item u
10765 Print the binary representation of the value as an decimal, as if it
10766 were unsigned.
10767
10768 @item o
10769 Print the binary representation of the value in octal.
10770
10771 @item t
10772 Print the binary representation of the value in binary. The letter
10773 @samp{t} stands for ``two''. @footnote{@samp{b} cannot be used
10774 because these format letters are also used with the @code{x} command,
10775 where @samp{b} stands for ``byte''; see @ref{Memory,,Examining
10776 Memory}.}
10777
10778 @item a
10779 @cindex unknown address, locating
10780 @cindex locate address
10781 Print as an address, both absolute in hexadecimal and as an offset from
10782 the nearest preceding symbol. You can use this format used to discover
10783 where (in what function) an unknown address is located:
10784
10785 @smallexample
10786 (@value{GDBP}) p/a 0x54320
10787 $3 = 0x54320 <_initialize_vx+396>
10788 @end smallexample
10789
10790 @noindent
10791 The command @code{info symbol 0x54320} yields similar results.
10792 @xref{Symbols, info symbol}.
10793
10794 @item c
10795 Cast the value to an integer (unlike other formats, this does not just
10796 reinterpret the underlying bits) and print it as a character constant.
10797 This prints both the numerical value and its character representation.
10798 The character representation is replaced with the octal escape
10799 @samp{\nnn} for characters outside the 7-bit @sc{ascii} range.
10800
10801 Without this format, @value{GDBN} displays @code{char},
10802 @w{@code{unsigned char}}, and @w{@code{signed char}} data as character
10803 constants. Single-byte members of vectors are displayed as integer
10804 data.
10805
10806 @item f
10807 Regard the bits of the value as a floating point number and print
10808 using typical floating point syntax.
10809
10810 @item s
10811 @cindex printing strings
10812 @cindex printing byte arrays
10813 Regard as a string, if possible. With this format, pointers to single-byte
10814 data are displayed as null-terminated strings and arrays of single-byte data
10815 are displayed as fixed-length strings. Other values are displayed in their
10816 natural types.
10817
10818 Without this format, @value{GDBN} displays pointers to and arrays of
10819 @code{char}, @w{@code{unsigned char}}, and @w{@code{signed char}} as
10820 strings. Single-byte members of a vector are displayed as an integer
10821 array.
10822
10823 @item z
10824 Like @samp{x} formatting, the value is treated as an integer and
10825 printed as hexadecimal, but leading zeros are printed to pad the value
10826 to the size of the integer type.
10827
10828 @item r
10829 @cindex raw printing
10830 Print using the @samp{raw} formatting. By default, @value{GDBN} will
10831 use a Python-based pretty-printer, if one is available (@pxref{Pretty
10832 Printing}). This typically results in a higher-level display of the
10833 value's contents. The @samp{r} format bypasses any Python
10834 pretty-printer which might exist.
10835 @end table
10836
10837 For example, to print the program counter in hex (@pxref{Registers}), type
10838
10839 @smallexample
10840 p/x $pc
10841 @end smallexample
10842
10843 @noindent
10844 Note that no space is required before the slash; this is because command
10845 names in @value{GDBN} cannot contain a slash.
10846
10847 To reprint the last value in the value history with a different format,
10848 you can use the @code{print} command with just a format and no
10849 expression. For example, @samp{p/x} reprints the last value in hex.
10850
10851 @node Memory
10852 @section Examining Memory
10853
10854 You can use the command @code{x} (for ``examine'') to examine memory in
10855 any of several formats, independently of your program's data types.
10856
10857 @cindex examining memory
10858 @table @code
10859 @kindex x @r{(examine memory)}
10860 @item x/@var{nfu} @var{addr}
10861 @itemx x @var{addr}
10862 @itemx x
10863 Use the @code{x} command to examine memory.
10864 @end table
10865
10866 @var{n}, @var{f}, and @var{u} are all optional parameters that specify how
10867 much memory to display and how to format it; @var{addr} is an
10868 expression giving the address where you want to start displaying memory.
10869 If you use defaults for @var{nfu}, you need not type the slash @samp{/}.
10870 Several commands set convenient defaults for @var{addr}.
10871
10872 @table @r
10873 @item @var{n}, the repeat count
10874 The repeat count is a decimal integer; the default is 1. It specifies
10875 how much memory (counting by units @var{u}) to display. If a negative
10876 number is specified, memory is examined backward from @var{addr}.
10877 @c This really is **decimal**; unaffected by 'set radix' as of GDB
10878 @c 4.1.2.
10879
10880 @item @var{f}, the display format
10881 The display format is one of the formats used by @code{print}
10882 (@samp{x}, @samp{d}, @samp{u}, @samp{o}, @samp{t}, @samp{a}, @samp{c},
10883 @samp{f}, @samp{s}), @samp{i} (for machine instructions) and
10884 @samp{m} (for displaying memory tags).
10885 The default is @samp{x} (hexadecimal) initially. The default changes
10886 each time you use either @code{x} or @code{print}.
10887
10888 @item @var{u}, the unit size
10889 The unit size is any of
10890
10891 @table @code
10892 @item b
10893 Bytes.
10894 @item h
10895 Halfwords (two bytes).
10896 @item w
10897 Words (four bytes). This is the initial default.
10898 @item g
10899 Giant words (eight bytes).
10900 @end table
10901
10902 Each time you specify a unit size with @code{x}, that size becomes the
10903 default unit the next time you use @code{x}. For the @samp{i} format,
10904 the unit size is ignored and is normally not written. For the @samp{s} format,
10905 the unit size defaults to @samp{b}, unless it is explicitly given.
10906 Use @kbd{x /hs} to display 16-bit char strings and @kbd{x /ws} to display
10907 32-bit strings. The next use of @kbd{x /s} will again display 8-bit strings.
10908 Note that the results depend on the programming language of the
10909 current compilation unit. If the language is C, the @samp{s}
10910 modifier will use the UTF-16 encoding while @samp{w} will use
10911 UTF-32. The encoding is set by the programming language and cannot
10912 be altered.
10913
10914 @item @var{addr}, starting display address
10915 @var{addr} is the address where you want @value{GDBN} to begin displaying
10916 memory. The expression need not have a pointer value (though it may);
10917 it is always interpreted as an integer address of a byte of memory.
10918 @xref{Expressions, ,Expressions}, for more information on expressions. The default for
10919 @var{addr} is usually just after the last address examined---but several
10920 other commands also set the default address: @code{info breakpoints} (to
10921 the address of the last breakpoint listed), @code{info line} (to the
10922 starting address of a line), and @code{print} (if you use it to display
10923 a value from memory).
10924 @end table
10925
10926 For example, @samp{x/3uh 0x54320} is a request to display three halfwords
10927 (@code{h}) of memory, formatted as unsigned decimal integers (@samp{u}),
10928 starting at address @code{0x54320}. @samp{x/4xw $sp} prints the four
10929 words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
10930 @pxref{Registers, ,Registers}) in hexadecimal (@samp{x}).
10931
10932 You can also specify a negative repeat count to examine memory backward
10933 from the given address. For example, @samp{x/-3uh 0x54320} prints three
10934 halfwords (@code{h}) at @code{0x5431a}, @code{0x5431c}, and @code{0x5431e}.
10935
10936 Since the letters indicating unit sizes are all distinct from the
10937 letters specifying output formats, you do not have to remember whether
10938 unit size or format comes first; either order works. The output
10939 specifications @samp{4xw} and @samp{4wx} mean exactly the same thing.
10940 (However, the count @var{n} must come first; @samp{wx4} does not work.)
10941
10942 Even though the unit size @var{u} is ignored for the formats @samp{s}
10943 and @samp{i}, you might still want to use a count @var{n}; for example,
10944 @samp{3i} specifies that you want to see three machine instructions,
10945 including any operands. For convenience, especially when used with
10946 the @code{display} command, the @samp{i} format also prints branch delay
10947 slot instructions, if any, beyond the count specified, which immediately
10948 follow the last instruction that is within the count. The command
10949 @code{disassemble} gives an alternative way of inspecting machine
10950 instructions; see @ref{Machine Code,,Source and Machine Code}.
10951
10952 If a negative repeat count is specified for the formats @samp{s} or @samp{i},
10953 the command displays null-terminated strings or instructions before the given
10954 address as many as the absolute value of the given number. For the @samp{i}
10955 format, we use line number information in the debug info to accurately locate
10956 instruction boundaries while disassembling backward. If line info is not
10957 available, the command stops examining memory with an error message.
10958
10959 All the defaults for the arguments to @code{x} are designed to make it
10960 easy to continue scanning memory with minimal specifications each time
10961 you use @code{x}. For example, after you have inspected three machine
10962 instructions with @samp{x/3i @var{addr}}, you can inspect the next seven
10963 with just @samp{x/7}. If you use @key{RET} to repeat the @code{x} command,
10964 the repeat count @var{n} is used again; the other arguments default as
10965 for successive uses of @code{x}.
10966
10967 When examining machine instructions, the instruction at current program
10968 counter is shown with a @code{=>} marker. For example:
10969
10970 @smallexample
10971 (@value{GDBP}) x/5i $pc-6
10972 0x804837f <main+11>: mov %esp,%ebp
10973 0x8048381 <main+13>: push %ecx
10974 0x8048382 <main+14>: sub $0x4,%esp
10975 => 0x8048385 <main+17>: movl $0x8048460,(%esp)
10976 0x804838c <main+24>: call 0x80482d4 <puts@@plt>
10977 @end smallexample
10978
10979 If the architecture supports memory tagging, the tags can be displayed by
10980 using @samp{m}. @xref{Memory Tagging}.
10981
10982 The information will be displayed once per granule size
10983 (the amount of bytes a particular memory tag covers). For example, AArch64
10984 has a granule size of 16 bytes, so it will display a tag every 16 bytes.
10985
10986 Due to the way @value{GDBN} prints information with the @code{x} command (not
10987 aligned to a particular boundary), the tag information will refer to the
10988 initial address displayed on a particular line. If a memory tag boundary
10989 is crossed in the middle of a line displayed by the @code{x} command, it
10990 will be displayed on the next line.
10991
10992 The @samp{m} format doesn't affect any other specified formats that were
10993 passed to the @code{x} command.
10994
10995 @cindex @code{$_}, @code{$__}, and value history
10996 The addresses and contents printed by the @code{x} command are not saved
10997 in the value history because there is often too much of them and they
10998 would get in the way. Instead, @value{GDBN} makes these values available for
10999 subsequent use in expressions as values of the convenience variables
11000 @code{$_} and @code{$__}. After an @code{x} command, the last address
11001 examined is available for use in expressions in the convenience variable
11002 @code{$_}. The contents of that address, as examined, are available in
11003 the convenience variable @code{$__}.
11004
11005 If the @code{x} command has a repeat count, the address and contents saved
11006 are from the last memory unit printed; this is not the same as the last
11007 address printed if several units were printed on the last line of output.
11008
11009 @anchor{addressable memory unit}
11010 @cindex addressable memory unit
11011 Most targets have an addressable memory unit size of 8 bits. This means
11012 that to each memory address are associated 8 bits of data. Some
11013 targets, however, have other addressable memory unit sizes.
11014 Within @value{GDBN} and this document, the term
11015 @dfn{addressable memory unit} (or @dfn{memory unit} for short) is used
11016 when explicitly referring to a chunk of data of that size. The word
11017 @dfn{byte} is used to refer to a chunk of data of 8 bits, regardless of
11018 the addressable memory unit size of the target. For most systems,
11019 addressable memory unit is a synonym of byte.
11020
11021 @cindex remote memory comparison
11022 @cindex target memory comparison
11023 @cindex verify remote memory image
11024 @cindex verify target memory image
11025 When you are debugging a program running on a remote target machine
11026 (@pxref{Remote Debugging}), you may wish to verify the program's image
11027 in the remote machine's memory against the executable file you
11028 downloaded to the target. Or, on any target, you may want to check
11029 whether the program has corrupted its own read-only sections. The
11030 @code{compare-sections} command is provided for such situations.
11031
11032 @table @code
11033 @kindex compare-sections
11034 @item compare-sections @r{[}@var{section-name}@r{|}@code{-r}@r{]}
11035 Compare the data of a loadable section @var{section-name} in the
11036 executable file of the program being debugged with the same section in
11037 the target machine's memory, and report any mismatches. With no
11038 arguments, compares all loadable sections. With an argument of
11039 @code{-r}, compares all loadable read-only sections.
11040
11041 Note: for remote targets, this command can be accelerated if the
11042 target supports computing the CRC checksum of a block of memory
11043 (@pxref{qCRC packet}).
11044 @end table
11045
11046 @node Memory Tagging
11047 @section Memory Tagging
11048
11049 Memory tagging is a memory protection technology that uses a pair of tags to
11050 validate memory accesses through pointers. The tags are integer values
11051 usually comprised of a few bits, depending on the architecture.
11052
11053 There are two types of tags that are used in this setup: logical and
11054 allocation. A logical tag is stored in the pointers themselves, usually at the
11055 higher bits of the pointers. An allocation tag is the tag associated
11056 with particular ranges of memory in the physical address space, against which
11057 the logical tags from pointers are compared.
11058
11059 The pointer tag (logical tag) must match the memory tag (allocation tag)
11060 for the memory access to be valid. If the logical tag does not match the
11061 allocation tag, that will raise a memory violation.
11062
11063 Allocation tags cover multiple contiguous bytes of physical memory. This
11064 range of bytes is called a memory tag granule and is architecture-specific.
11065 For example, AArch64 has a tag granule of 16 bytes, meaning each allocation
11066 tag spans 16 bytes of memory.
11067
11068 If the underlying architecture supports memory tagging, like AArch64 MTE
11069 or SPARC ADI do, @value{GDBN} can make use of it to validate pointers
11070 against memory allocation tags.
11071
11072 The @code{print} (@pxref{Data}) and @code{x} (@pxref{Memory}) commands will
11073 display tag information when appropriate, and a command prefix of
11074 @code{memory-tag} gives access to the various memory tagging commands.
11075
11076 The @code{memory-tag} commands are the following:
11077
11078 @table @code
11079 @kindex memory-tag print-logical-tag
11080 @item memory-tag print-logical-tag @var{pointer_expression}
11081 Print the logical tag stored in @var{pointer_expression}.
11082 @kindex memory-tag with-logical-tag
11083 @item memory-tag with-logical-tag @var{pointer_expression} @var{tag_bytes}
11084 Print the pointer given by @var{pointer_expression}, augmented with a logical
11085 tag of @var{tag_bytes}.
11086 @kindex memory-tag print-allocation-tag
11087 @item memory-tag print-allocation-tag @var{address_expression}
11088 Print the allocation tag associated with the memory address given by
11089 @var{address_expression}.
11090 @kindex memory-tag setatag
11091 @item memory-tag setatag @var{starting_address} @var{length} @var{tag_bytes}
11092 Set the allocation tag(s) for memory range @r{[}@var{starting_address},
11093 @var{starting_address} + @var{length}@r{)} to @var{tag_bytes}.
11094 @kindex memory-tag check
11095 @item memory-tag check @var{pointer_expression}
11096 Check if the logical tag in the pointer given by @var{pointer_expression}
11097 matches the allocation tag for the memory referenced by the pointer.
11098
11099 This essentially emulates the hardware validation that is done when tagged
11100 memory is accessed through a pointer, but does not cause a memory fault as
11101 it would during hardware validation.
11102
11103 It can be used to inspect potential memory tagging violations in the running
11104 process, before any faults get triggered.
11105 @end table
11106
11107 @node Auto Display
11108 @section Automatic Display
11109 @cindex automatic display
11110 @cindex display of expressions
11111
11112 If you find that you want to print the value of an expression frequently
11113 (to see how it changes), you might want to add it to the @dfn{automatic
11114 display list} so that @value{GDBN} prints its value each time your program stops.
11115 Each expression added to the list is given a number to identify it;
11116 to remove an expression from the list, you specify that number.
11117 The automatic display looks like this:
11118
11119 @smallexample
11120 2: foo = 38
11121 3: bar[5] = (struct hack *) 0x3804
11122 @end smallexample
11123
11124 @noindent
11125 This display shows item numbers, expressions and their current values. As with
11126 displays you request manually using @code{x} or @code{print}, you can
11127 specify the output format you prefer; in fact, @code{display} decides
11128 whether to use @code{print} or @code{x} depending your format
11129 specification---it uses @code{x} if you specify either the @samp{i}
11130 or @samp{s} format, or a unit size; otherwise it uses @code{print}.
11131
11132 @table @code
11133 @kindex display
11134 @item display @var{expr}
11135 Add the expression @var{expr} to the list of expressions to display
11136 each time your program stops. @xref{Expressions, ,Expressions}.
11137
11138 @code{display} does not repeat if you press @key{RET} again after using it.
11139
11140 @item display/@var{fmt} @var{expr}
11141 For @var{fmt} specifying only a display format and not a size or
11142 count, add the expression @var{expr} to the auto-display list but
11143 arrange to display it each time in the specified format @var{fmt}.
11144 @xref{Output Formats,,Output Formats}.
11145
11146 @item display/@var{fmt} @var{addr}
11147 For @var{fmt} @samp{i} or @samp{s}, or including a unit-size or a
11148 number of units, add the expression @var{addr} as a memory address to
11149 be examined each time your program stops. Examining means in effect
11150 doing @samp{x/@var{fmt} @var{addr}}. @xref{Memory, ,Examining Memory}.
11151 @end table
11152
11153 For example, @samp{display/i $pc} can be helpful, to see the machine
11154 instruction about to be executed each time execution stops (@samp{$pc}
11155 is a common name for the program counter; @pxref{Registers, ,Registers}).
11156
11157 @table @code
11158 @kindex delete display
11159 @kindex undisplay
11160 @item undisplay @var{dnums}@dots{}
11161 @itemx delete display @var{dnums}@dots{}
11162 Remove items from the list of expressions to display. Specify the
11163 numbers of the displays that you want affected with the command
11164 argument @var{dnums}. It can be a single display number, one of the
11165 numbers shown in the first field of the @samp{info display} display;
11166 or it could be a range of display numbers, as in @code{2-4}.
11167
11168 @code{undisplay} does not repeat if you press @key{RET} after using it.
11169 (Otherwise you would just get the error @samp{No display number @dots{}}.)
11170
11171 @kindex disable display
11172 @item disable display @var{dnums}@dots{}
11173 Disable the display of item numbers @var{dnums}. A disabled display
11174 item is not printed automatically, but is not forgotten. It may be
11175 enabled again later. Specify the numbers of the displays that you
11176 want affected with the command argument @var{dnums}. It can be a
11177 single display number, one of the numbers shown in the first field of
11178 the @samp{info display} display; or it could be a range of display
11179 numbers, as in @code{2-4}.
11180
11181 @kindex enable display
11182 @item enable display @var{dnums}@dots{}
11183 Enable display of item numbers @var{dnums}. It becomes effective once
11184 again in auto display of its expression, until you specify otherwise.
11185 Specify the numbers of the displays that you want affected with the
11186 command argument @var{dnums}. It can be a single display number, one
11187 of the numbers shown in the first field of the @samp{info display}
11188 display; or it could be a range of display numbers, as in @code{2-4}.
11189
11190 @item display
11191 Display the current values of the expressions on the list, just as is
11192 done when your program stops.
11193
11194 @kindex info display
11195 @item info display
11196 Print the list of expressions previously set up to display
11197 automatically, each one with its item number, but without showing the
11198 values. This includes disabled expressions, which are marked as such.
11199 It also includes expressions which would not be displayed right now
11200 because they refer to automatic variables not currently available.
11201 @end table
11202
11203 @cindex display disabled out of scope
11204 If a display expression refers to local variables, then it does not make
11205 sense outside the lexical context for which it was set up. Such an
11206 expression is disabled when execution enters a context where one of its
11207 variables is not defined. For example, if you give the command
11208 @code{display last_char} while inside a function with an argument
11209 @code{last_char}, @value{GDBN} displays this argument while your program
11210 continues to stop inside that function. When it stops elsewhere---where
11211 there is no variable @code{last_char}---the display is disabled
11212 automatically. The next time your program stops where @code{last_char}
11213 is meaningful, you can enable the display expression once again.
11214
11215 @node Print Settings
11216 @section Print Settings
11217
11218 @cindex format options
11219 @cindex print settings
11220 @value{GDBN} provides the following ways to control how arrays, structures,
11221 and symbols are printed.
11222
11223 @noindent
11224 These settings are useful for debugging programs in any language:
11225
11226 @table @code
11227 @kindex set print
11228 @anchor{set print address}
11229 @item set print address
11230 @itemx set print address on
11231 @cindex print/don't print memory addresses
11232 @value{GDBN} prints memory addresses showing the location of stack
11233 traces, structure values, pointer values, breakpoints, and so forth,
11234 even when it also displays the contents of those addresses. The default
11235 is @code{on}. For example, this is what a stack frame display looks like with
11236 @code{set print address on}:
11237
11238 @smallexample
11239 @group
11240 (@value{GDBP}) f
11241 #0 set_quotes (lq=0x34c78 "<<", rq=0x34c88 ">>")
11242 at input.c:530
11243 530 if (lquote != def_lquote)
11244 @end group
11245 @end smallexample
11246
11247 @item set print address off
11248 Do not print addresses when displaying their contents. For example,
11249 this is the same stack frame displayed with @code{set print address off}:
11250
11251 @smallexample
11252 @group
11253 (@value{GDBP}) set print addr off
11254 (@value{GDBP}) f
11255 #0 set_quotes (lq="<<", rq=">>") at input.c:530
11256 530 if (lquote != def_lquote)
11257 @end group
11258 @end smallexample
11259
11260 You can use @samp{set print address off} to eliminate all machine
11261 dependent displays from the @value{GDBN} interface. For example, with
11262 @code{print address off}, you should get the same text for backtraces on
11263 all machines---whether or not they involve pointer arguments.
11264
11265 @kindex show print
11266 @item show print address
11267 Show whether or not addresses are to be printed.
11268 @end table
11269
11270 When @value{GDBN} prints a symbolic address, it normally prints the
11271 closest earlier symbol plus an offset. If that symbol does not uniquely
11272 identify the address (for example, it is a name whose scope is a single
11273 source file), you may need to clarify. One way to do this is with
11274 @code{info line}, for example @samp{info line *0x4537}. Alternately,
11275 you can set @value{GDBN} to print the source file and line number when
11276 it prints a symbolic address:
11277
11278 @table @code
11279 @item set print symbol-filename on
11280 @cindex source file and line of a symbol
11281 @cindex symbol, source file and line
11282 Tell @value{GDBN} to print the source file name and line number of a
11283 symbol in the symbolic form of an address.
11284
11285 @item set print symbol-filename off
11286 Do not print source file name and line number of a symbol. This is the
11287 default.
11288
11289 @item show print symbol-filename
11290 Show whether or not @value{GDBN} will print the source file name and
11291 line number of a symbol in the symbolic form of an address.
11292 @end table
11293
11294 Another situation where it is helpful to show symbol filenames and line
11295 numbers is when disassembling code; @value{GDBN} shows you the line
11296 number and source file that corresponds to each instruction.
11297
11298 Also, you may wish to see the symbolic form only if the address being
11299 printed is reasonably close to the closest earlier symbol:
11300
11301 @table @code
11302 @item set print max-symbolic-offset @var{max-offset}
11303 @itemx set print max-symbolic-offset unlimited
11304 @cindex maximum value for offset of closest symbol
11305 Tell @value{GDBN} to only display the symbolic form of an address if the
11306 offset between the closest earlier symbol and the address is less than
11307 @var{max-offset}. The default is @code{unlimited}, which tells @value{GDBN}
11308 to always print the symbolic form of an address if any symbol precedes
11309 it. Zero is equivalent to @code{unlimited}.
11310
11311 @item show print max-symbolic-offset
11312 Ask how large the maximum offset is that @value{GDBN} prints in a
11313 symbolic address.
11314 @end table
11315
11316 @cindex wild pointer, interpreting
11317 @cindex pointer, finding referent
11318 If you have a pointer and you are not sure where it points, try
11319 @samp{set print symbol-filename on}. Then you can determine the name
11320 and source file location of the variable where it points, using
11321 @samp{p/a @var{pointer}}. This interprets the address in symbolic form.
11322 For example, here @value{GDBN} shows that a variable @code{ptt} points
11323 at another variable @code{t}, defined in @file{hi2.c}:
11324
11325 @smallexample
11326 (@value{GDBP}) set print symbol-filename on
11327 (@value{GDBP}) p/a ptt
11328 $4 = 0xe008 <t in hi2.c>
11329 @end smallexample
11330
11331 @quotation
11332 @emph{Warning:} For pointers that point to a local variable, @samp{p/a}
11333 does not show the symbol name and filename of the referent, even with
11334 the appropriate @code{set print} options turned on.
11335 @end quotation
11336
11337 You can also enable @samp{/a}-like formatting all the time using
11338 @samp{set print symbol on}:
11339
11340 @anchor{set print symbol}
11341 @table @code
11342 @item set print symbol on
11343 Tell @value{GDBN} to print the symbol corresponding to an address, if
11344 one exists.
11345
11346 @item set print symbol off
11347 Tell @value{GDBN} not to print the symbol corresponding to an
11348 address. In this mode, @value{GDBN} will still print the symbol
11349 corresponding to pointers to functions. This is the default.
11350
11351 @item show print symbol
11352 Show whether @value{GDBN} will display the symbol corresponding to an
11353 address.
11354 @end table
11355
11356 Other settings control how different kinds of objects are printed:
11357
11358 @table @code
11359 @anchor{set print array}
11360 @item set print array
11361 @itemx set print array on
11362 @cindex pretty print arrays
11363 Pretty print arrays. This format is more convenient to read,
11364 but uses more space. The default is off.
11365
11366 @item set print array off
11367 Return to compressed format for arrays.
11368
11369 @item show print array
11370 Show whether compressed or pretty format is selected for displaying
11371 arrays.
11372
11373 @cindex print array indexes
11374 @anchor{set print array-indexes}
11375 @item set print array-indexes
11376 @itemx set print array-indexes on
11377 Print the index of each element when displaying arrays. May be more
11378 convenient to locate a given element in the array or quickly find the
11379 index of a given element in that printed array. The default is off.
11380
11381 @item set print array-indexes off
11382 Stop printing element indexes when displaying arrays.
11383
11384 @item show print array-indexes
11385 Show whether the index of each element is printed when displaying
11386 arrays.
11387
11388 @anchor{set print elements}
11389 @item set print elements @var{number-of-elements}
11390 @itemx set print elements unlimited
11391 @cindex number of array elements to print
11392 @cindex limit on number of printed array elements
11393 Set a limit on how many elements of an array @value{GDBN} will print.
11394 If @value{GDBN} is printing a large array, it stops printing after it has
11395 printed the number of elements set by the @code{set print elements} command.
11396 This limit also applies to the display of strings.
11397 When @value{GDBN} starts, this limit is set to 200.
11398 Setting @var{number-of-elements} to @code{unlimited} or zero means
11399 that the number of elements to print is unlimited.
11400
11401 @item show print elements
11402 Display the number of elements of a large array that @value{GDBN} will print.
11403
11404 @anchor{set print frame-arguments}
11405 @item set print frame-arguments @var{value}
11406 @kindex set print frame-arguments
11407 @cindex printing frame argument values
11408 @cindex print all frame argument values
11409 @cindex print frame argument values for scalars only
11410 @cindex do not print frame arguments
11411 This command allows to control how the values of arguments are printed
11412 when the debugger prints a frame (@pxref{Frames}). The possible
11413 values are:
11414
11415 @table @code
11416 @item all
11417 The values of all arguments are printed.
11418
11419 @item scalars
11420 Print the value of an argument only if it is a scalar. The value of more
11421 complex arguments such as arrays, structures, unions, etc, is replaced
11422 by @code{@dots{}}. This is the default. Here is an example where
11423 only scalar arguments are shown:
11424
11425 @smallexample
11426 #1 0x08048361 in call_me (i=3, s=@dots{}, ss=0xbf8d508c, u=@dots{}, e=green)
11427 at frame-args.c:23
11428 @end smallexample
11429
11430 @item none
11431 None of the argument values are printed. Instead, the value of each argument
11432 is replaced by @code{@dots{}}. In this case, the example above now becomes:
11433
11434 @smallexample
11435 #1 0x08048361 in call_me (i=@dots{}, s=@dots{}, ss=@dots{}, u=@dots{}, e=@dots{})
11436 at frame-args.c:23
11437 @end smallexample
11438
11439 @item presence
11440 Only the presence of arguments is indicated by @code{@dots{}}.
11441 The @code{@dots{}} are not printed for function without any arguments.
11442 None of the argument names and values are printed.
11443 In this case, the example above now becomes:
11444
11445 @smallexample
11446 #1 0x08048361 in call_me (@dots{}) at frame-args.c:23
11447 @end smallexample
11448
11449 @end table
11450
11451 By default, only scalar arguments are printed. This command can be used
11452 to configure the debugger to print the value of all arguments, regardless
11453 of their type. However, it is often advantageous to not print the value
11454 of more complex parameters. For instance, it reduces the amount of
11455 information printed in each frame, making the backtrace more readable.
11456 Also, it improves performance when displaying Ada frames, because
11457 the computation of large arguments can sometimes be CPU-intensive,
11458 especially in large applications. Setting @code{print frame-arguments}
11459 to @code{scalars} (the default), @code{none} or @code{presence} avoids
11460 this computation, thus speeding up the display of each Ada frame.
11461
11462 @item show print frame-arguments
11463 Show how the value of arguments should be displayed when printing a frame.
11464
11465 @anchor{set print raw-frame-arguments}
11466 @item set print raw-frame-arguments on
11467 Print frame arguments in raw, non pretty-printed, form.
11468
11469 @item set print raw-frame-arguments off
11470 Print frame arguments in pretty-printed form, if there is a pretty-printer
11471 for the value (@pxref{Pretty Printing}),
11472 otherwise print the value in raw form.
11473 This is the default.
11474
11475 @item show print raw-frame-arguments
11476 Show whether to print frame arguments in raw form.
11477
11478 @anchor{set print entry-values}
11479 @item set print entry-values @var{value}
11480 @kindex set print entry-values
11481 Set printing of frame argument values at function entry. In some cases
11482 @value{GDBN} can determine the value of function argument which was passed by
11483 the function caller, even if the value was modified inside the called function
11484 and therefore is different. With optimized code, the current value could be
11485 unavailable, but the entry value may still be known.
11486
11487 The default value is @code{default} (see below for its description). Older
11488 @value{GDBN} behaved as with the setting @code{no}. Compilers not supporting
11489 this feature will behave in the @code{default} setting the same way as with the
11490 @code{no} setting.
11491
11492 This functionality is currently supported only by DWARF 2 debugging format and
11493 the compiler has to produce @samp{DW_TAG_call_site} tags. With
11494 @value{NGCC}, you need to specify @option{-O -g} during compilation, to get
11495 this information.
11496
11497 The @var{value} parameter can be one of the following:
11498
11499 @table @code
11500 @item no
11501 Print only actual parameter values, never print values from function entry
11502 point.
11503 @smallexample
11504 #0 equal (val=5)
11505 #0 different (val=6)
11506 #0 lost (val=<optimized out>)
11507 #0 born (val=10)
11508 #0 invalid (val=<optimized out>)
11509 @end smallexample
11510
11511 @item only
11512 Print only parameter values from function entry point. The actual parameter
11513 values are never printed.
11514 @smallexample
11515 #0 equal (val@@entry=5)
11516 #0 different (val@@entry=5)
11517 #0 lost (val@@entry=5)
11518 #0 born (val@@entry=<optimized out>)
11519 #0 invalid (val@@entry=<optimized out>)
11520 @end smallexample
11521
11522 @item preferred
11523 Print only parameter values from function entry point. If value from function
11524 entry point is not known while the actual value is known, print the actual
11525 value for such parameter.
11526 @smallexample
11527 #0 equal (val@@entry=5)
11528 #0 different (val@@entry=5)
11529 #0 lost (val@@entry=5)
11530 #0 born (val=10)
11531 #0 invalid (val@@entry=<optimized out>)
11532 @end smallexample
11533
11534 @item if-needed
11535 Print actual parameter values. If actual parameter value is not known while
11536 value from function entry point is known, print the entry point value for such
11537 parameter.
11538 @smallexample
11539 #0 equal (val=5)
11540 #0 different (val=6)
11541 #0 lost (val@@entry=5)
11542 #0 born (val=10)
11543 #0 invalid (val=<optimized out>)
11544 @end smallexample
11545
11546 @item both
11547 Always print both the actual parameter value and its value from function entry
11548 point, even if values of one or both are not available due to compiler
11549 optimizations.
11550 @smallexample
11551 #0 equal (val=5, val@@entry=5)
11552 #0 different (val=6, val@@entry=5)
11553 #0 lost (val=<optimized out>, val@@entry=5)
11554 #0 born (val=10, val@@entry=<optimized out>)
11555 #0 invalid (val=<optimized out>, val@@entry=<optimized out>)
11556 @end smallexample
11557
11558 @item compact
11559 Print the actual parameter value if it is known and also its value from
11560 function entry point if it is known. If neither is known, print for the actual
11561 value @code{<optimized out>}. If not in MI mode (@pxref{GDB/MI}) and if both
11562 values are known and identical, print the shortened
11563 @code{param=param@@entry=VALUE} notation.
11564 @smallexample
11565 #0 equal (val=val@@entry=5)
11566 #0 different (val=6, val@@entry=5)
11567 #0 lost (val@@entry=5)
11568 #0 born (val=10)
11569 #0 invalid (val=<optimized out>)
11570 @end smallexample
11571
11572 @item default
11573 Always print the actual parameter value. Print also its value from function
11574 entry point, but only if it is known. If not in MI mode (@pxref{GDB/MI}) and
11575 if both 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=<optimized out>, val@@entry=5)
11581 #0 born (val=10)
11582 #0 invalid (val=<optimized out>)
11583 @end smallexample
11584 @end table
11585
11586 For analysis messages on possible failures of frame argument values at function
11587 entry resolution see @ref{set debug entry-values}.
11588
11589 @item show print entry-values
11590 Show the method being used for printing of frame argument values at function
11591 entry.
11592
11593 @anchor{set print frame-info}
11594 @item set print frame-info @var{value}
11595 @kindex set print frame-info
11596 @cindex printing frame information
11597 @cindex frame information, printing
11598 This command allows to control the information printed when
11599 the debugger prints a frame. See @ref{Frames}, @ref{Backtrace},
11600 for a general explanation about frames and frame information.
11601 Note that some other settings (such as @code{set print frame-arguments}
11602 and @code{set print address}) are also influencing if and how some frame
11603 information is displayed. In particular, the frame program counter is never
11604 printed if @code{set print address} is off.
11605
11606 The possible values for @code{set print frame-info} are:
11607 @table @code
11608 @item short-location
11609 Print the frame level, the program counter (if not at the
11610 beginning of the location source line), the function, the function
11611 arguments.
11612 @item location
11613 Same as @code{short-location} but also print the source file and source line
11614 number.
11615 @item location-and-address
11616 Same as @code{location} but print the program counter even if located at the
11617 beginning of the location source line.
11618 @item source-line
11619 Print the program counter (if not at the beginning of the location
11620 source line), the line number and the source line.
11621 @item source-and-location
11622 Print what @code{location} and @code{source-line} are printing.
11623 @item auto
11624 The information printed for a frame is decided automatically
11625 by the @value{GDBN} command that prints a frame.
11626 For example, @code{frame} prints the information printed by
11627 @code{source-and-location} while @code{stepi} will switch between
11628 @code{source-line} and @code{source-and-location} depending on the program
11629 counter.
11630 The default value is @code{auto}.
11631 @end table
11632
11633 @anchor{set print repeats}
11634 @item set print repeats @var{number-of-repeats}
11635 @itemx set print repeats unlimited
11636 @cindex repeated array elements
11637 Set the threshold for suppressing display of repeated array
11638 elements. When the number of consecutive identical elements of an
11639 array exceeds the threshold, @value{GDBN} prints the string
11640 @code{"<repeats @var{n} times>"}, where @var{n} is the number of
11641 identical repetitions, instead of displaying the identical elements
11642 themselves. Setting the threshold to @code{unlimited} or zero will
11643 cause all elements to be individually printed. The default threshold
11644 is 10.
11645
11646 @item show print repeats
11647 Display the current threshold for printing repeated identical
11648 elements.
11649
11650 @anchor{set print max-depth}
11651 @item set print max-depth @var{depth}
11652 @item set print max-depth unlimited
11653 @cindex printing nested structures
11654 Set the threshold after which nested structures are replaced with
11655 ellipsis, this can make visualising deeply nested structures easier.
11656
11657 For example, given this C code
11658
11659 @smallexample
11660 typedef struct s1 @{ int a; @} s1;
11661 typedef struct s2 @{ s1 b; @} s2;
11662 typedef struct s3 @{ s2 c; @} s3;
11663 typedef struct s4 @{ s3 d; @} s4;
11664
11665 s4 var = @{ @{ @{ @{ 3 @} @} @} @};
11666 @end smallexample
11667
11668 The following table shows how different values of @var{depth} will
11669 effect how @code{var} is printed by @value{GDBN}:
11670
11671 @multitable @columnfractions .3 .7
11672 @headitem @var{depth} setting @tab Result of @samp{p var}
11673 @item unlimited
11674 @tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11675 @item @code{0}
11676 @tab @code{$1 = @{...@}}
11677 @item @code{1}
11678 @tab @code{$1 = @{d = @{...@}@}}
11679 @item @code{2}
11680 @tab @code{$1 = @{d = @{c = @{...@}@}@}}
11681 @item @code{3}
11682 @tab @code{$1 = @{d = @{c = @{b = @{...@}@}@}@}}
11683 @item @code{4}
11684 @tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11685 @end multitable
11686
11687 To see the contents of structures that have been hidden the user can
11688 either increase the print max-depth, or they can print the elements of
11689 the structure that are visible, for example
11690
11691 @smallexample
11692 (gdb) set print max-depth 2
11693 (gdb) p var
11694 $1 = @{d = @{c = @{...@}@}@}
11695 (gdb) p var.d
11696 $2 = @{c = @{b = @{...@}@}@}
11697 (gdb) p var.d.c
11698 $3 = @{b = @{a = 3@}@}
11699 @end smallexample
11700
11701 The pattern used to replace nested structures varies based on
11702 language, for most languages @code{@{...@}} is used, but Fortran uses
11703 @code{(...)}.
11704
11705 @item show print max-depth
11706 Display the current threshold after which nested structures are
11707 replaces with ellipsis.
11708
11709 @anchor{set print memory-tag-violations}
11710 @cindex printing memory tag violation information
11711 @item set print memory-tag-violations
11712 @itemx set print memory-tag-violations on
11713 Cause @value{GDBN} to display additional information about memory tag violations
11714 when printing pointers and addresses.
11715
11716 @item set print memory-tag-violations off
11717 Stop printing memory tag violation information.
11718
11719 @item show print memory-tag-violations
11720 Show whether memory tag violation information is displayed when printing
11721 pointers and addresses.
11722
11723 @anchor{set print null-stop}
11724 @item set print null-stop
11725 @cindex @sc{null} elements in arrays
11726 Cause @value{GDBN} to stop printing the characters of an array when the first
11727 @sc{null} is encountered. This is useful when large arrays actually
11728 contain only short strings.
11729 The default is off.
11730
11731 @item show print null-stop
11732 Show whether @value{GDBN} stops printing an array on the first
11733 @sc{null} character.
11734
11735 @anchor{set print pretty}
11736 @item set print pretty on
11737 @cindex print structures in indented form
11738 @cindex indentation in structure display
11739 Cause @value{GDBN} to print structures in an indented format with one member
11740 per line, like this:
11741
11742 @smallexample
11743 @group
11744 $1 = @{
11745 next = 0x0,
11746 flags = @{
11747 sweet = 1,
11748 sour = 1
11749 @},
11750 meat = 0x54 "Pork"
11751 @}
11752 @end group
11753 @end smallexample
11754
11755 @item set print pretty off
11756 Cause @value{GDBN} to print structures in a compact format, like this:
11757
11758 @smallexample
11759 @group
11760 $1 = @{next = 0x0, flags = @{sweet = 1, sour = 1@}, \
11761 meat = 0x54 "Pork"@}
11762 @end group
11763 @end smallexample
11764
11765 @noindent
11766 This is the default format.
11767
11768 @item show print pretty
11769 Show which format @value{GDBN} is using to print structures.
11770
11771 @anchor{set print raw-values}
11772 @item set print raw-values on
11773 Print values in raw form, without applying the pretty
11774 printers for the value.
11775
11776 @item set print raw-values off
11777 Print values in pretty-printed form, if there is a pretty-printer
11778 for the value (@pxref{Pretty Printing}),
11779 otherwise print the value in raw form.
11780
11781 The default setting is ``off''.
11782
11783 @item show print raw-values
11784 Show whether to print values in raw form.
11785
11786 @item set print sevenbit-strings on
11787 @cindex eight-bit characters in strings
11788 @cindex octal escapes in strings
11789 Print using only seven-bit characters; if this option is set,
11790 @value{GDBN} displays any eight-bit characters (in strings or
11791 character values) using the notation @code{\}@var{nnn}. This setting is
11792 best if you are working in English (@sc{ascii}) and you use the
11793 high-order bit of characters as a marker or ``meta'' bit.
11794
11795 @item set print sevenbit-strings off
11796 Print full eight-bit characters. This allows the use of more
11797 international character sets, and is the default.
11798
11799 @item show print sevenbit-strings
11800 Show whether or not @value{GDBN} is printing only seven-bit characters.
11801
11802 @anchor{set print union}
11803 @item set print union on
11804 @cindex unions in structures, printing
11805 Tell @value{GDBN} to print unions which are contained in structures
11806 and other unions. This is the default setting.
11807
11808 @item set print union off
11809 Tell @value{GDBN} not to print unions which are contained in
11810 structures and other unions. @value{GDBN} will print @code{"@{...@}"}
11811 instead.
11812
11813 @item show print union
11814 Ask @value{GDBN} whether or not it will print unions which are contained in
11815 structures and other unions.
11816
11817 For example, given the declarations
11818
11819 @smallexample
11820 typedef enum @{Tree, Bug@} Species;
11821 typedef enum @{Big_tree, Acorn, Seedling@} Tree_forms;
11822 typedef enum @{Caterpillar, Cocoon, Butterfly@}
11823 Bug_forms;
11824
11825 struct thing @{
11826 Species it;
11827 union @{
11828 Tree_forms tree;
11829 Bug_forms bug;
11830 @} form;
11831 @};
11832
11833 struct thing foo = @{Tree, @{Acorn@}@};
11834 @end smallexample
11835
11836 @noindent
11837 with @code{set print union on} in effect @samp{p foo} would print
11838
11839 @smallexample
11840 $1 = @{it = Tree, form = @{tree = Acorn, bug = Cocoon@}@}
11841 @end smallexample
11842
11843 @noindent
11844 and with @code{set print union off} in effect it would print
11845
11846 @smallexample
11847 $1 = @{it = Tree, form = @{...@}@}
11848 @end smallexample
11849
11850 @noindent
11851 @code{set print union} affects programs written in C-like languages
11852 and in Pascal.
11853 @end table
11854
11855 @need 1000
11856 @noindent
11857 These settings are of interest when debugging C@t{++} programs:
11858
11859 @table @code
11860 @cindex demangling C@t{++} names
11861 @item set print demangle
11862 @itemx set print demangle on
11863 Print C@t{++} names in their source form rather than in the encoded
11864 (``mangled'') form passed to the assembler and linker for type-safe
11865 linkage. The default is on.
11866
11867 @item show print demangle
11868 Show whether C@t{++} names are printed in mangled or demangled form.
11869
11870 @item set print asm-demangle
11871 @itemx set print asm-demangle on
11872 Print C@t{++} names in their source form rather than their mangled form, even
11873 in assembler code printouts such as instruction disassemblies.
11874 The default is off.
11875
11876 @item show print asm-demangle
11877 Show whether C@t{++} names in assembly listings are printed in mangled
11878 or demangled form.
11879
11880 @cindex C@t{++} symbol decoding style
11881 @cindex symbol decoding style, C@t{++}
11882 @kindex set demangle-style
11883 @item set demangle-style @var{style}
11884 Choose among several encoding schemes used by different compilers to represent
11885 C@t{++} names. If you omit @var{style}, you will see a list of possible
11886 formats. The default value is @var{auto}, which lets @value{GDBN} choose a
11887 decoding style by inspecting your program.
11888
11889 @item show demangle-style
11890 Display the encoding style currently in use for decoding C@t{++} symbols.
11891
11892 @anchor{set print object}
11893 @item set print object
11894 @itemx set print object on
11895 @cindex derived type of an object, printing
11896 @cindex display derived types
11897 When displaying a pointer to an object, identify the @emph{actual}
11898 (derived) type of the object rather than the @emph{declared} type, using
11899 the virtual function table. Note that the virtual function table is
11900 required---this feature can only work for objects that have run-time
11901 type identification; a single virtual method in the object's declared
11902 type is sufficient. Note that this setting is also taken into account when
11903 working with variable objects via MI (@pxref{GDB/MI}).
11904
11905 @item set print object off
11906 Display only the declared type of objects, without reference to the
11907 virtual function table. This is the default setting.
11908
11909 @item show print object
11910 Show whether actual, or declared, object types are displayed.
11911
11912 @anchor{set print static-members}
11913 @item set print static-members
11914 @itemx set print static-members on
11915 @cindex static members of C@t{++} objects
11916 Print static members when displaying a C@t{++} object. The default is on.
11917
11918 @item set print static-members off
11919 Do not print static members when displaying a C@t{++} object.
11920
11921 @item show print static-members
11922 Show whether C@t{++} static members are printed or not.
11923
11924 @item set print pascal_static-members
11925 @itemx set print pascal_static-members on
11926 @cindex static members of Pascal objects
11927 @cindex Pascal objects, static members display
11928 Print static members when displaying a Pascal object. The default is on.
11929
11930 @item set print pascal_static-members off
11931 Do not print static members when displaying a Pascal object.
11932
11933 @item show print pascal_static-members
11934 Show whether Pascal static members are printed or not.
11935
11936 @c These don't work with HP ANSI C++ yet.
11937 @anchor{set print vtbl}
11938 @item set print vtbl
11939 @itemx set print vtbl on
11940 @cindex pretty print C@t{++} virtual function tables
11941 @cindex virtual functions (C@t{++}) display
11942 @cindex VTBL display
11943 Pretty print C@t{++} virtual function tables. The default is off.
11944 (The @code{vtbl} commands do not work on programs compiled with the HP
11945 ANSI C@t{++} compiler (@code{aCC}).)
11946
11947 @item set print vtbl off
11948 Do not pretty print C@t{++} virtual function tables.
11949
11950 @item show print vtbl
11951 Show whether C@t{++} virtual function tables are pretty printed, or not.
11952 @end table
11953
11954 @node Pretty Printing
11955 @section Pretty Printing
11956
11957 @value{GDBN} provides a mechanism to allow pretty-printing of values using
11958 Python code. It greatly simplifies the display of complex objects. This
11959 mechanism works for both MI and the CLI.
11960
11961 @menu
11962 * Pretty-Printer Introduction:: Introduction to pretty-printers
11963 * Pretty-Printer Example:: An example pretty-printer
11964 * Pretty-Printer Commands:: Pretty-printer commands
11965 @end menu
11966
11967 @node Pretty-Printer Introduction
11968 @subsection Pretty-Printer Introduction
11969
11970 When @value{GDBN} prints a value, it first sees if there is a pretty-printer
11971 registered for the value. If there is then @value{GDBN} invokes the
11972 pretty-printer to print the value. Otherwise the value is printed normally.
11973
11974 Pretty-printers are normally named. This makes them easy to manage.
11975 The @samp{info pretty-printer} command will list all the installed
11976 pretty-printers with their names.
11977 If a pretty-printer can handle multiple data types, then its
11978 @dfn{subprinters} are the printers for the individual data types.
11979 Each such subprinter has its own name.
11980 The format of the name is @var{printer-name};@var{subprinter-name}.
11981
11982 Pretty-printers are installed by @dfn{registering} them with @value{GDBN}.
11983 Typically they are automatically loaded and registered when the corresponding
11984 debug information is loaded, thus making them available without having to
11985 do anything special.
11986
11987 There are three places where a pretty-printer can be registered.
11988
11989 @itemize @bullet
11990 @item
11991 Pretty-printers registered globally are available when debugging
11992 all inferiors.
11993
11994 @item
11995 Pretty-printers registered with a program space are available only
11996 when debugging that program.
11997 @xref{Progspaces In Python}, for more details on program spaces in Python.
11998
11999 @item
12000 Pretty-printers registered with an objfile are loaded and unloaded
12001 with the corresponding objfile (e.g., shared library).
12002 @xref{Objfiles In Python}, for more details on objfiles in Python.
12003 @end itemize
12004
12005 @xref{Selecting Pretty-Printers}, for further information on how
12006 pretty-printers are selected,
12007
12008 @xref{Writing a Pretty-Printer}, for implementing pretty printers
12009 for new types.
12010
12011 @node Pretty-Printer Example
12012 @subsection Pretty-Printer Example
12013
12014 Here is how a C@t{++} @code{std::string} looks without a pretty-printer:
12015
12016 @smallexample
12017 (@value{GDBP}) print s
12018 $1 = @{
12019 static npos = 4294967295,
12020 _M_dataplus = @{
12021 <std::allocator<char>> = @{
12022 <__gnu_cxx::new_allocator<char>> = @{
12023 <No data fields>@}, <No data fields>
12024 @},
12025 members of std::basic_string<char, std::char_traits<char>,
12026 std::allocator<char> >::_Alloc_hider:
12027 _M_p = 0x804a014 "abcd"
12028 @}
12029 @}
12030 @end smallexample
12031
12032 With a pretty-printer for @code{std::string} only the contents are printed:
12033
12034 @smallexample
12035 (@value{GDBP}) print s
12036 $2 = "abcd"
12037 @end smallexample
12038
12039 @node Pretty-Printer Commands
12040 @subsection Pretty-Printer Commands
12041 @cindex pretty-printer commands
12042
12043 @table @code
12044 @kindex info pretty-printer
12045 @item info pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12046 Print the list of installed pretty-printers.
12047 This includes disabled pretty-printers, which are marked as such.
12048
12049 @var{object-regexp} is a regular expression matching the objects
12050 whose pretty-printers to list.
12051 Objects can be @code{global}, the program space's file
12052 (@pxref{Progspaces In Python}),
12053 and the object files within that program space (@pxref{Objfiles In Python}).
12054 @xref{Selecting Pretty-Printers}, for details on how @value{GDBN}
12055 looks up a printer from these three objects.
12056
12057 @var{name-regexp} is a regular expression matching the name of the printers
12058 to list.
12059
12060 @kindex disable pretty-printer
12061 @item disable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12062 Disable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12063 A disabled pretty-printer is not forgotten, it may be enabled again later.
12064
12065 @kindex enable pretty-printer
12066 @item enable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12067 Enable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12068 @end table
12069
12070 Example:
12071
12072 Suppose we have three pretty-printers installed: one from library1.so
12073 named @code{foo} that prints objects of type @code{foo}, and
12074 another from library2.so named @code{bar} that prints two types of objects,
12075 @code{bar1} and @code{bar2}.
12076
12077 @smallexample
12078 (gdb) info pretty-printer
12079 library1.so:
12080 foo
12081 library2.so:
12082 bar
12083 bar1
12084 bar2
12085 (gdb) info pretty-printer library2
12086 library2.so:
12087 bar
12088 bar1
12089 bar2
12090 (gdb) disable pretty-printer library1
12091 1 printer disabled
12092 2 of 3 printers enabled
12093 (gdb) info pretty-printer
12094 library1.so:
12095 foo [disabled]
12096 library2.so:
12097 bar
12098 bar1
12099 bar2
12100 (gdb) disable pretty-printer library2 bar;bar1
12101 1 printer disabled
12102 1 of 3 printers enabled
12103 (gdb) info pretty-printer library2
12104 library1.so:
12105 foo [disabled]
12106 library2.so:
12107 bar
12108 bar1 [disabled]
12109 bar2
12110 (gdb) disable pretty-printer library2 bar
12111 1 printer disabled
12112 0 of 3 printers enabled
12113 (gdb) info pretty-printer library2
12114 library1.so:
12115 foo [disabled]
12116 library2.so:
12117 bar [disabled]
12118 bar1 [disabled]
12119 bar2
12120 @end smallexample
12121
12122 Note that for @code{bar} the entire printer can be disabled,
12123 as can each individual subprinter.
12124
12125 Printing values and frame arguments is done by default using
12126 the enabled pretty printers.
12127
12128 The print option @code{-raw-values} and @value{GDBN} setting
12129 @code{set print raw-values} (@pxref{set print raw-values}) can be
12130 used to print values without applying the enabled pretty printers.
12131
12132 Similarly, the backtrace option @code{-raw-frame-arguments} and
12133 @value{GDBN} setting @code{set print raw-frame-arguments}
12134 (@pxref{set print raw-frame-arguments}) can be used to ignore the
12135 enabled pretty printers when printing frame argument values.
12136
12137 @node Value History
12138 @section Value History
12139
12140 @cindex value history
12141 @cindex history of values printed by @value{GDBN}
12142 Values printed by the @code{print} command are saved in the @value{GDBN}
12143 @dfn{value history}. This allows you to refer to them in other expressions.
12144 Values are kept until the symbol table is re-read or discarded
12145 (for example with the @code{file} or @code{symbol-file} commands).
12146 When the symbol table changes, the value history is discarded,
12147 since the values may contain pointers back to the types defined in the
12148 symbol table.
12149
12150 @cindex @code{$}
12151 @cindex @code{$$}
12152 @cindex history number
12153 The values printed are given @dfn{history numbers} by which you can
12154 refer to them. These are successive integers starting with one.
12155 @code{print} shows you the history number assigned to a value by
12156 printing @samp{$@var{num} = } before the value; here @var{num} is the
12157 history number.
12158
12159 To refer to any previous value, use @samp{$} followed by the value's
12160 history number. The way @code{print} labels its output is designed to
12161 remind you of this. Just @code{$} refers to the most recent value in
12162 the history, and @code{$$} refers to the value before that.
12163 @code{$$@var{n}} refers to the @var{n}th value from the end; @code{$$2}
12164 is the value just prior to @code{$$}, @code{$$1} is equivalent to
12165 @code{$$}, and @code{$$0} is equivalent to @code{$}.
12166
12167 For example, suppose you have just printed a pointer to a structure and
12168 want to see the contents of the structure. It suffices to type
12169
12170 @smallexample
12171 p *$
12172 @end smallexample
12173
12174 If you have a chain of structures where the component @code{next} points
12175 to the next one, you can print the contents of the next one with this:
12176
12177 @smallexample
12178 p *$.next
12179 @end smallexample
12180
12181 @noindent
12182 You can print successive links in the chain by repeating this
12183 command---which you can do by just typing @key{RET}.
12184
12185 Note that the history records values, not expressions. If the value of
12186 @code{x} is 4 and you type these commands:
12187
12188 @smallexample
12189 print x
12190 set x=5
12191 @end smallexample
12192
12193 @noindent
12194 then the value recorded in the value history by the @code{print} command
12195 remains 4 even though the value of @code{x} has changed.
12196
12197 @table @code
12198 @kindex show values
12199 @item show values
12200 Print the last ten values in the value history, with their item numbers.
12201 This is like @samp{p@ $$9} repeated ten times, except that @code{show
12202 values} does not change the history.
12203
12204 @item show values @var{n}
12205 Print ten history values centered on history item number @var{n}.
12206
12207 @item show values +
12208 Print ten history values just after the values last printed. If no more
12209 values are available, @code{show values +} produces no display.
12210 @end table
12211
12212 Pressing @key{RET} to repeat @code{show values @var{n}} has exactly the
12213 same effect as @samp{show values +}.
12214
12215 @node Convenience Vars
12216 @section Convenience Variables
12217
12218 @cindex convenience variables
12219 @cindex user-defined variables
12220 @value{GDBN} provides @dfn{convenience variables} that you can use within
12221 @value{GDBN} to hold on to a value and refer to it later. These variables
12222 exist entirely within @value{GDBN}; they are not part of your program, and
12223 setting a convenience variable has no direct effect on further execution
12224 of your program. That is why you can use them freely.
12225
12226 Convenience variables are prefixed with @samp{$}. Any name preceded by
12227 @samp{$} can be used for a convenience variable, unless it is one of
12228 the predefined machine-specific register names (@pxref{Registers, ,Registers}).
12229 (Value history references, in contrast, are @emph{numbers} preceded
12230 by @samp{$}. @xref{Value History, ,Value History}.)
12231
12232 You can save a value in a convenience variable with an assignment
12233 expression, just as you would set a variable in your program.
12234 For example:
12235
12236 @smallexample
12237 set $foo = *object_ptr
12238 @end smallexample
12239
12240 @noindent
12241 would save in @code{$foo} the value contained in the object pointed to by
12242 @code{object_ptr}.
12243
12244 Using a convenience variable for the first time creates it, but its
12245 value is @code{void} until you assign a new value. You can alter the
12246 value with another assignment at any time.
12247
12248 Convenience variables have no fixed types. You can assign a convenience
12249 variable any type of value, including structures and arrays, even if
12250 that variable already has a value of a different type. The convenience
12251 variable, when used as an expression, has the type of its current value.
12252
12253 @table @code
12254 @kindex show convenience
12255 @cindex show all user variables and functions
12256 @item show convenience
12257 Print a list of convenience variables used so far, and their values,
12258 as well as a list of the convenience functions.
12259 Abbreviated @code{show conv}.
12260
12261 @kindex init-if-undefined
12262 @cindex convenience variables, initializing
12263 @item init-if-undefined $@var{variable} = @var{expression}
12264 Set a convenience variable if it has not already been set. This is useful
12265 for user-defined commands that keep some state. It is similar, in concept,
12266 to using local static variables with initializers in C (except that
12267 convenience variables are global). It can also be used to allow users to
12268 override default values used in a command script.
12269
12270 If the variable is already defined then the expression is not evaluated so
12271 any side-effects do not occur.
12272 @end table
12273
12274 One of the ways to use a convenience variable is as a counter to be
12275 incremented or a pointer to be advanced. For example, to print
12276 a field from successive elements of an array of structures:
12277
12278 @smallexample
12279 set $i = 0
12280 print bar[$i++]->contents
12281 @end smallexample
12282
12283 @noindent
12284 Repeat that command by typing @key{RET}.
12285
12286 Some convenience variables are created automatically by @value{GDBN} and given
12287 values likely to be useful.
12288
12289 @table @code
12290 @vindex $_@r{, convenience variable}
12291 @item $_
12292 The variable @code{$_} is automatically set by the @code{x} command to
12293 the last address examined (@pxref{Memory, ,Examining Memory}). Other
12294 commands which provide a default address for @code{x} to examine also
12295 set @code{$_} to that address; these commands include @code{info line}
12296 and @code{info breakpoint}. The type of @code{$_} is @code{void *}
12297 except when set by the @code{x} command, in which case it is a pointer
12298 to the type of @code{$__}.
12299
12300 @vindex $__@r{, convenience variable}
12301 @item $__
12302 The variable @code{$__} is automatically set by the @code{x} command
12303 to the value found in the last address examined. Its type is chosen
12304 to match the format in which the data was printed.
12305
12306 @item $_exitcode
12307 @vindex $_exitcode@r{, convenience variable}
12308 When the program being debugged terminates normally, @value{GDBN}
12309 automatically sets this variable to the exit code of the program, and
12310 resets @code{$_exitsignal} to @code{void}.
12311
12312 @item $_exitsignal
12313 @vindex $_exitsignal@r{, convenience variable}
12314 When the program being debugged dies due to an uncaught signal,
12315 @value{GDBN} automatically sets this variable to that signal's number,
12316 and resets @code{$_exitcode} to @code{void}.
12317
12318 To distinguish between whether the program being debugged has exited
12319 (i.e., @code{$_exitcode} is not @code{void}) or signalled (i.e.,
12320 @code{$_exitsignal} is not @code{void}), the convenience function
12321 @code{$_isvoid} can be used (@pxref{Convenience Funs,, Convenience
12322 Functions}). For example, considering the following source code:
12323
12324 @smallexample
12325 #include <signal.h>
12326
12327 int
12328 main (int argc, char *argv[])
12329 @{
12330 raise (SIGALRM);
12331 return 0;
12332 @}
12333 @end smallexample
12334
12335 A valid way of telling whether the program being debugged has exited
12336 or signalled would be:
12337
12338 @smallexample
12339 (@value{GDBP}) define has_exited_or_signalled
12340 Type commands for definition of ``has_exited_or_signalled''.
12341 End with a line saying just ``end''.
12342 >if $_isvoid ($_exitsignal)
12343 >echo The program has exited\n
12344 >else
12345 >echo The program has signalled\n
12346 >end
12347 >end
12348 (@value{GDBP}) run
12349 Starting program:
12350
12351 Program terminated with signal SIGALRM, Alarm clock.
12352 The program no longer exists.
12353 (@value{GDBP}) has_exited_or_signalled
12354 The program has signalled
12355 @end smallexample
12356
12357 As can be seen, @value{GDBN} correctly informs that the program being
12358 debugged has signalled, since it calls @code{raise} and raises a
12359 @code{SIGALRM} signal. If the program being debugged had not called
12360 @code{raise}, then @value{GDBN} would report a normal exit:
12361
12362 @smallexample
12363 (@value{GDBP}) has_exited_or_signalled
12364 The program has exited
12365 @end smallexample
12366
12367 @item $_exception
12368 The variable @code{$_exception} is set to the exception object being
12369 thrown at an exception-related catchpoint. @xref{Set Catchpoints}.
12370
12371 @item $_ada_exception
12372 The variable @code{$_ada_exception} is set to the address of the
12373 exception being caught or thrown at an Ada exception-related
12374 catchpoint. @xref{Set Catchpoints}.
12375
12376 @item $_probe_argc
12377 @itemx $_probe_arg0@dots{}$_probe_arg11
12378 Arguments to a static probe. @xref{Static Probe Points}.
12379
12380 @item $_sdata
12381 @vindex $_sdata@r{, inspect, convenience variable}
12382 The variable @code{$_sdata} contains extra collected static tracepoint
12383 data. @xref{Tracepoint Actions,,Tracepoint Action Lists}. Note that
12384 @code{$_sdata} could be empty, if not inspecting a trace buffer, or
12385 if extra static tracepoint data has not been collected.
12386
12387 @item $_siginfo
12388 @vindex $_siginfo@r{, convenience variable}
12389 The variable @code{$_siginfo} contains extra signal information
12390 (@pxref{extra signal information}). Note that @code{$_siginfo}
12391 could be empty, if the application has not yet received any signals.
12392 For example, it will be empty before you execute the @code{run} command.
12393
12394 @item $_tlb
12395 @vindex $_tlb@r{, convenience variable}
12396 The variable @code{$_tlb} is automatically set when debugging
12397 applications running on MS-Windows in native mode or connected to
12398 gdbserver that supports the @code{qGetTIBAddr} request.
12399 @xref{General Query Packets}.
12400 This variable contains the address of the thread information block.
12401
12402 @item $_inferior
12403 The number of the current inferior. @xref{Inferiors Connections and
12404 Programs, ,Debugging Multiple Inferiors Connections and Programs}.
12405
12406 @item $_thread
12407 The thread number of the current thread. @xref{thread numbers}.
12408
12409 @item $_gthread
12410 The global number of the current thread. @xref{global thread numbers}.
12411
12412 @item $_gdb_major
12413 @itemx $_gdb_minor
12414 @vindex $_gdb_major@r{, convenience variable}
12415 @vindex $_gdb_minor@r{, convenience variable}
12416 The major and minor version numbers of the running @value{GDBN}.
12417 Development snapshots and pretest versions have their minor version
12418 incremented by one; thus, @value{GDBN} pretest 9.11.90 will produce
12419 the value 12 for @code{$_gdb_minor}. These variables allow you to
12420 write scripts that work with different versions of @value{GDBN}
12421 without errors caused by features unavailable in some of those
12422 versions.
12423
12424 @item $_shell_exitcode
12425 @itemx $_shell_exitsignal
12426 @vindex $_shell_exitcode@r{, convenience variable}
12427 @vindex $_shell_exitsignal@r{, convenience variable}
12428 @cindex shell command, exit code
12429 @cindex shell command, exit signal
12430 @cindex exit status of shell commands
12431 @value{GDBN} commands such as @code{shell} and @code{|} are launching
12432 shell commands. When a launched command terminates, @value{GDBN}
12433 automatically maintains the variables @code{$_shell_exitcode}
12434 and @code{$_shell_exitsignal} according to the exit status of the last
12435 launched command. These variables are set and used similarly to
12436 the variables @code{$_exitcode} and @code{$_exitsignal}.
12437
12438 @end table
12439
12440 @node Convenience Funs
12441 @section Convenience Functions
12442
12443 @cindex convenience functions
12444 @value{GDBN} also supplies some @dfn{convenience functions}. These
12445 have a syntax similar to convenience variables. A convenience
12446 function can be used in an expression just like an ordinary function;
12447 however, a convenience function is implemented internally to
12448 @value{GDBN}.
12449
12450 These functions do not require @value{GDBN} to be configured with
12451 @code{Python} support, which means that they are always available.
12452
12453 @table @code
12454
12455 @item $_isvoid (@var{expr})
12456 @findex $_isvoid@r{, convenience function}
12457 Return one if the expression @var{expr} is @code{void}. Otherwise it
12458 returns zero.
12459
12460 A @code{void} expression is an expression where the type of the result
12461 is @code{void}. For example, you can examine a convenience variable
12462 (see @ref{Convenience Vars,, Convenience Variables}) to check whether
12463 it is @code{void}:
12464
12465 @smallexample
12466 (@value{GDBP}) print $_exitcode
12467 $1 = void
12468 (@value{GDBP}) print $_isvoid ($_exitcode)
12469 $2 = 1
12470 (@value{GDBP}) run
12471 Starting program: ./a.out
12472 [Inferior 1 (process 29572) exited normally]
12473 (@value{GDBP}) print $_exitcode
12474 $3 = 0
12475 (@value{GDBP}) print $_isvoid ($_exitcode)
12476 $4 = 0
12477 @end smallexample
12478
12479 In the example above, we used @code{$_isvoid} to check whether
12480 @code{$_exitcode} is @code{void} before and after the execution of the
12481 program being debugged. Before the execution there is no exit code to
12482 be examined, therefore @code{$_exitcode} is @code{void}. After the
12483 execution the program being debugged returned zero, therefore
12484 @code{$_exitcode} is zero, which means that it is not @code{void}
12485 anymore.
12486
12487 The @code{void} expression can also be a call of a function from the
12488 program being debugged. For example, given the following function:
12489
12490 @smallexample
12491 void
12492 foo (void)
12493 @{
12494 @}
12495 @end smallexample
12496
12497 The result of calling it inside @value{GDBN} is @code{void}:
12498
12499 @smallexample
12500 (@value{GDBP}) print foo ()
12501 $1 = void
12502 (@value{GDBP}) print $_isvoid (foo ())
12503 $2 = 1
12504 (@value{GDBP}) set $v = foo ()
12505 (@value{GDBP}) print $v
12506 $3 = void
12507 (@value{GDBP}) print $_isvoid ($v)
12508 $4 = 1
12509 @end smallexample
12510
12511 @item $_gdb_setting_str (@var{setting})
12512 @findex $_gdb_setting_str@r{, convenience function}
12513 Return the value of the @value{GDBN} @var{setting} as a string.
12514 @var{setting} is any setting that can be used in a @code{set} or
12515 @code{show} command (@pxref{Controlling GDB}).
12516
12517 @smallexample
12518 (@value{GDBP}) show print frame-arguments
12519 Printing of non-scalar frame arguments is "scalars".
12520 (@value{GDBP}) p $_gdb_setting_str("print frame-arguments")
12521 $1 = "scalars"
12522 (@value{GDBP}) p $_gdb_setting_str("height")
12523 $2 = "30"
12524 (@value{GDBP})
12525 @end smallexample
12526
12527 @item $_gdb_setting (@var{setting})
12528 @findex $_gdb_setting@r{, convenience function}
12529 Return the value of the @value{GDBN} @var{setting}.
12530 The type of the returned value depends on the setting.
12531
12532 The value type for boolean and auto boolean settings is @code{int}.
12533 The boolean values @code{off} and @code{on} are converted to
12534 the integer values @code{0} and @code{1}. The value @code{auto} is
12535 converted to the value @code{-1}.
12536
12537 The value type for integer settings is either @code{unsigned int}
12538 or @code{int}, depending on the setting.
12539
12540 Some integer settings accept an @code{unlimited} value.
12541 Depending on the setting, the @code{set} command also accepts
12542 the value @code{0} or the value @code{@minus{}1} as a synonym for
12543 @code{unlimited}.
12544 For example, @code{set height unlimited} is equivalent to
12545 @code{set height 0}.
12546
12547 Some other settings that accept the @code{unlimited} value
12548 use the value @code{0} to literally mean zero.
12549 For example, @code{set history size 0} indicates to not
12550 record any @value{GDBN} commands in the command history.
12551 For such settings, @code{@minus{}1} is the synonym
12552 for @code{unlimited}.
12553
12554 See the documentation of the corresponding @code{set} command for
12555 the numerical value equivalent to @code{unlimited}.
12556
12557 The @code{$_gdb_setting} function converts the unlimited value
12558 to a @code{0} or a @code{@minus{}1} value according to what the
12559 @code{set} command uses.
12560
12561 @smallexample
12562 @group
12563 (@value{GDBP}) p $_gdb_setting_str("height")
12564 $1 = "30"
12565 (@value{GDBP}) p $_gdb_setting("height")
12566 $2 = 30
12567 (@value{GDBP}) set height unlimited
12568 (@value{GDBP}) p $_gdb_setting_str("height")
12569 $3 = "unlimited"
12570 (@value{GDBP}) p $_gdb_setting("height")
12571 $4 = 0
12572 @end group
12573 @group
12574 (@value{GDBP}) p $_gdb_setting_str("history size")
12575 $5 = "unlimited"
12576 (@value{GDBP}) p $_gdb_setting("history size")
12577 $6 = -1
12578 (@value{GDBP}) p $_gdb_setting_str("disassemble-next-line")
12579 $7 = "auto"
12580 (@value{GDBP}) p $_gdb_setting("disassemble-next-line")
12581 $8 = -1
12582 (@value{GDBP})
12583 @end group
12584 @end smallexample
12585
12586 Other setting types (enum, filename, optional filename, string, string noescape)
12587 are returned as string values.
12588
12589
12590 @item $_gdb_maint_setting_str (@var{setting})
12591 @findex $_gdb_maint_setting_str@r{, convenience function}
12592 Like the @code{$_gdb_setting_str} function, but works with
12593 @code{maintenance set} variables.
12594
12595 @item $_gdb_maint_setting (@var{setting})
12596 @findex $_gdb_maint_setting@r{, convenience function}
12597 Like the @code{$_gdb_setting} function, but works with
12598 @code{maintenance set} variables.
12599
12600 @end table
12601
12602 The following functions require @value{GDBN} to be configured with
12603 @code{Python} support.
12604
12605 @table @code
12606
12607 @item $_memeq(@var{buf1}, @var{buf2}, @var{length})
12608 @findex $_memeq@r{, convenience function}
12609 Returns one if the @var{length} bytes at the addresses given by
12610 @var{buf1} and @var{buf2} are equal.
12611 Otherwise it returns zero.
12612
12613 @item $_regex(@var{str}, @var{regex})
12614 @findex $_regex@r{, convenience function}
12615 Returns one if the string @var{str} matches the regular expression
12616 @var{regex}. Otherwise it returns zero.
12617 The syntax of the regular expression is that specified by @code{Python}'s
12618 regular expression support.
12619
12620 @item $_streq(@var{str1}, @var{str2})
12621 @findex $_streq@r{, convenience function}
12622 Returns one if the strings @var{str1} and @var{str2} are equal.
12623 Otherwise it returns zero.
12624
12625 @item $_strlen(@var{str})
12626 @findex $_strlen@r{, convenience function}
12627 Returns the length of string @var{str}.
12628
12629 @item $_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12630 @findex $_caller_is@r{, convenience function}
12631 Returns one if the calling function's name is equal to @var{name}.
12632 Otherwise it returns zero.
12633
12634 If the optional argument @var{number_of_frames} is provided,
12635 it is the number of frames up in the stack to look.
12636 The default is 1.
12637
12638 Example:
12639
12640 @smallexample
12641 (gdb) backtrace
12642 #0 bottom_func ()
12643 at testsuite/gdb.python/py-caller-is.c:21
12644 #1 0x00000000004005a0 in middle_func ()
12645 at testsuite/gdb.python/py-caller-is.c:27
12646 #2 0x00000000004005ab in top_func ()
12647 at testsuite/gdb.python/py-caller-is.c:33
12648 #3 0x00000000004005b6 in main ()
12649 at testsuite/gdb.python/py-caller-is.c:39
12650 (gdb) print $_caller_is ("middle_func")
12651 $1 = 1
12652 (gdb) print $_caller_is ("top_func", 2)
12653 $1 = 1
12654 @end smallexample
12655
12656 @item $_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12657 @findex $_caller_matches@r{, convenience function}
12658 Returns one if the calling function's name matches the regular expression
12659 @var{regexp}. Otherwise it returns zero.
12660
12661 If the optional argument @var{number_of_frames} is provided,
12662 it is the number of frames up in the stack to look.
12663 The default is 1.
12664
12665 @item $_any_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12666 @findex $_any_caller_is@r{, convenience function}
12667 Returns one if any calling function's name is equal to @var{name}.
12668 Otherwise it returns zero.
12669
12670 If the optional argument @var{number_of_frames} is provided,
12671 it is the number of frames up in the stack to look.
12672 The default is 1.
12673
12674 This function differs from @code{$_caller_is} in that this function
12675 checks all stack frames from the immediate caller to the frame specified
12676 by @var{number_of_frames}, whereas @code{$_caller_is} only checks the
12677 frame specified by @var{number_of_frames}.
12678
12679 @item $_any_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12680 @findex $_any_caller_matches@r{, convenience function}
12681 Returns one if any calling function's name matches the regular expression
12682 @var{regexp}. Otherwise it returns zero.
12683
12684 If the optional argument @var{number_of_frames} is provided,
12685 it is the number of frames up in the stack to look.
12686 The default is 1.
12687
12688 This function differs from @code{$_caller_matches} in that this function
12689 checks all stack frames from the immediate caller to the frame specified
12690 by @var{number_of_frames}, whereas @code{$_caller_matches} only checks the
12691 frame specified by @var{number_of_frames}.
12692
12693 @item $_as_string(@var{value})
12694 @findex $_as_string@r{, convenience function}
12695 Return the string representation of @var{value}.
12696
12697 This function is useful to obtain the textual label (enumerator) of an
12698 enumeration value. For example, assuming the variable @var{node} is of
12699 an enumerated type:
12700
12701 @smallexample
12702 (gdb) printf "Visiting node of type %s\n", $_as_string(node)
12703 Visiting node of type NODE_INTEGER
12704 @end smallexample
12705
12706 @item $_cimag(@var{value})
12707 @itemx $_creal(@var{value})
12708 @findex $_cimag@r{, convenience function}
12709 @findex $_creal@r{, convenience function}
12710 Return the imaginary (@code{$_cimag}) or real (@code{$_creal}) part of
12711 the complex number @var{value}.
12712
12713 The type of the imaginary or real part depends on the type of the
12714 complex number, e.g., using @code{$_cimag} on a @code{float complex}
12715 will return an imaginary part of type @code{float}.
12716
12717 @end table
12718
12719 @value{GDBN} provides the ability to list and get help on
12720 convenience functions.
12721
12722 @table @code
12723 @item help function
12724 @kindex help function
12725 @cindex show all convenience functions
12726 Print a list of all convenience functions.
12727 @end table
12728
12729 @node Registers
12730 @section Registers
12731
12732 @cindex registers
12733 You can refer to machine register contents, in expressions, as variables
12734 with names starting with @samp{$}. The names of registers are different
12735 for each machine; use @code{info registers} to see the names used on
12736 your machine.
12737
12738 @table @code
12739 @kindex info registers
12740 @item info registers
12741 Print the names and values of all registers except floating-point
12742 and vector registers (in the selected stack frame).
12743
12744 @kindex info all-registers
12745 @cindex floating point registers
12746 @item info all-registers
12747 Print the names and values of all registers, including floating-point
12748 and vector registers (in the selected stack frame).
12749
12750 @anchor{info_registers_reggroup}
12751 @item info registers @var{reggroup} @dots{}
12752 Print the name and value of the registers in each of the specified
12753 @var{reggroup}s. The @var{reggroup} can be any of those returned by
12754 @code{maint print reggroups} (@pxref{Maintenance Commands}).
12755
12756 @item info registers @var{regname} @dots{}
12757 Print the @dfn{relativized} value of each specified register @var{regname}.
12758 As discussed in detail below, register values are normally relative to
12759 the selected stack frame. The @var{regname} may be any register name valid on
12760 the machine you are using, with or without the initial @samp{$}.
12761 @end table
12762
12763 @anchor{standard registers}
12764 @cindex stack pointer register
12765 @cindex program counter register
12766 @cindex process status register
12767 @cindex frame pointer register
12768 @cindex standard registers
12769 @value{GDBN} has four ``standard'' register names that are available (in
12770 expressions) on most machines---whenever they do not conflict with an
12771 architecture's canonical mnemonics for registers. The register names
12772 @code{$pc} and @code{$sp} are used for the program counter register and
12773 the stack pointer. @code{$fp} is used for a register that contains a
12774 pointer to the current stack frame, and @code{$ps} is used for a
12775 register that contains the processor status. For example,
12776 you could print the program counter in hex with
12777
12778 @smallexample
12779 p/x $pc
12780 @end smallexample
12781
12782 @noindent
12783 or print the instruction to be executed next with
12784
12785 @smallexample
12786 x/i $pc
12787 @end smallexample
12788
12789 @noindent
12790 or add four to the stack pointer@footnote{This is a way of removing
12791 one word from the stack, on machines where stacks grow downward in
12792 memory (most machines, nowadays). This assumes that the innermost
12793 stack frame is selected; setting @code{$sp} is not allowed when other
12794 stack frames are selected. To pop entire frames off the stack,
12795 regardless of machine architecture, use @code{return};
12796 see @ref{Returning, ,Returning from a Function}.} with
12797
12798 @smallexample
12799 set $sp += 4
12800 @end smallexample
12801
12802 Whenever possible, these four standard register names are available on
12803 your machine even though the machine has different canonical mnemonics,
12804 so long as there is no conflict. The @code{info registers} command
12805 shows the canonical names. For example, on the SPARC, @code{info
12806 registers} displays the processor status register as @code{$psr} but you
12807 can also refer to it as @code{$ps}; and on x86-based machines @code{$ps}
12808 is an alias for the @sc{eflags} register.
12809
12810 @value{GDBN} always considers the contents of an ordinary register as an
12811 integer when the register is examined in this way. Some machines have
12812 special registers which can hold nothing but floating point; these
12813 registers are considered to have floating point values. There is no way
12814 to refer to the contents of an ordinary register as floating point value
12815 (although you can @emph{print} it as a floating point value with
12816 @samp{print/f $@var{regname}}).
12817
12818 Some registers have distinct ``raw'' and ``virtual'' data formats. This
12819 means that the data format in which the register contents are saved by
12820 the operating system is not the same one that your program normally
12821 sees. For example, the registers of the 68881 floating point
12822 coprocessor are always saved in ``extended'' (raw) format, but all C
12823 programs expect to work with ``double'' (virtual) format. In such
12824 cases, @value{GDBN} normally works with the virtual format only (the format
12825 that makes sense for your program), but the @code{info registers} command
12826 prints the data in both formats.
12827
12828 @cindex SSE registers (x86)
12829 @cindex MMX registers (x86)
12830 Some machines have special registers whose contents can be interpreted
12831 in several different ways. For example, modern x86-based machines
12832 have SSE and MMX registers that can hold several values packed
12833 together in several different formats. @value{GDBN} refers to such
12834 registers in @code{struct} notation:
12835
12836 @smallexample
12837 (@value{GDBP}) print $xmm1
12838 $1 = @{
12839 v4_float = @{0, 3.43859137e-038, 1.54142831e-044, 1.821688e-044@},
12840 v2_double = @{9.92129282474342e-303, 2.7585945287983262e-313@},
12841 v16_int8 = "\000\000\000\000\3706;\001\v\000\000\000\r\000\000",
12842 v8_int16 = @{0, 0, 14072, 315, 11, 0, 13, 0@},
12843 v4_int32 = @{0, 20657912, 11, 13@},
12844 v2_int64 = @{88725056443645952, 55834574859@},
12845 uint128 = 0x0000000d0000000b013b36f800000000
12846 @}
12847 @end smallexample
12848
12849 @noindent
12850 To set values of such registers, you need to tell @value{GDBN} which
12851 view of the register you wish to change, as if you were assigning
12852 value to a @code{struct} member:
12853
12854 @smallexample
12855 (@value{GDBP}) set $xmm1.uint128 = 0x000000000000000000000000FFFFFFFF
12856 @end smallexample
12857
12858 Normally, register values are relative to the selected stack frame
12859 (@pxref{Selection, ,Selecting a Frame}). This means that you get the
12860 value that the register would contain if all stack frames farther in
12861 were exited and their saved registers restored. In order to see the
12862 true contents of hardware registers, you must select the innermost
12863 frame (with @samp{frame 0}).
12864
12865 @cindex caller-saved registers
12866 @cindex call-clobbered registers
12867 @cindex volatile registers
12868 @cindex <not saved> values
12869 Usually ABIs reserve some registers as not needed to be saved by the
12870 callee (a.k.a.: ``caller-saved'', ``call-clobbered'' or ``volatile''
12871 registers). It may therefore not be possible for @value{GDBN} to know
12872 the value a register had before the call (in other words, in the outer
12873 frame), if the register value has since been changed by the callee.
12874 @value{GDBN} tries to deduce where the inner frame saved
12875 (``callee-saved'') registers, from the debug info, unwind info, or the
12876 machine code generated by your compiler. If some register is not
12877 saved, and @value{GDBN} knows the register is ``caller-saved'' (via
12878 its own knowledge of the ABI, or because the debug/unwind info
12879 explicitly says the register's value is undefined), @value{GDBN}
12880 displays @w{@samp{<not saved>}} as the register's value. With targets
12881 that @value{GDBN} has no knowledge of the register saving convention,
12882 if a register was not saved by the callee, then its value and location
12883 in the outer frame are assumed to be the same of the inner frame.
12884 This is usually harmless, because if the register is call-clobbered,
12885 the caller either does not care what is in the register after the
12886 call, or has code to restore the value that it does care about. Note,
12887 however, that if you change such a register in the outer frame, you
12888 may also be affecting the inner frame. Also, the more ``outer'' the
12889 frame is you're looking at, the more likely a call-clobbered
12890 register's value is to be wrong, in the sense that it doesn't actually
12891 represent the value the register had just before the call.
12892
12893 @node Floating Point Hardware
12894 @section Floating Point Hardware
12895 @cindex floating point
12896
12897 Depending on the configuration, @value{GDBN} may be able to give
12898 you more information about the status of the floating point hardware.
12899
12900 @table @code
12901 @kindex info float
12902 @item info float
12903 Display hardware-dependent information about the floating
12904 point unit. The exact contents and layout vary depending on the
12905 floating point chip. Currently, @samp{info float} is supported on
12906 the ARM and x86 machines.
12907 @end table
12908
12909 @node Vector Unit
12910 @section Vector Unit
12911 @cindex vector unit
12912
12913 Depending on the configuration, @value{GDBN} may be able to give you
12914 more information about the status of the vector unit.
12915
12916 @table @code
12917 @kindex info vector
12918 @item info vector
12919 Display information about the vector unit. The exact contents and
12920 layout vary depending on the hardware.
12921 @end table
12922
12923 @node OS Information
12924 @section Operating System Auxiliary Information
12925 @cindex OS information
12926
12927 @value{GDBN} provides interfaces to useful OS facilities that can help
12928 you debug your program.
12929
12930 @cindex auxiliary vector
12931 @cindex vector, auxiliary
12932 Some operating systems supply an @dfn{auxiliary vector} to programs at
12933 startup. This is akin to the arguments and environment that you
12934 specify for a program, but contains a system-dependent variety of
12935 binary values that tell system libraries important details about the
12936 hardware, operating system, and process. Each value's purpose is
12937 identified by an integer tag; the meanings are well-known but system-specific.
12938 Depending on the configuration and operating system facilities,
12939 @value{GDBN} may be able to show you this information. For remote
12940 targets, this functionality may further depend on the remote stub's
12941 support of the @samp{qXfer:auxv:read} packet, see
12942 @ref{qXfer auxiliary vector read}.
12943
12944 @table @code
12945 @kindex info auxv
12946 @item info auxv
12947 Display the auxiliary vector of the inferior, which can be either a
12948 live process or a core dump file. @value{GDBN} prints each tag value
12949 numerically, and also shows names and text descriptions for recognized
12950 tags. Some values in the vector are numbers, some bit masks, and some
12951 pointers to strings or other data. @value{GDBN} displays each value in the
12952 most appropriate form for a recognized tag, and in hexadecimal for
12953 an unrecognized tag.
12954 @end table
12955
12956 On some targets, @value{GDBN} can access operating system-specific
12957 information and show it to you. The types of information available
12958 will differ depending on the type of operating system running on the
12959 target. The mechanism used to fetch the data is described in
12960 @ref{Operating System Information}. For remote targets, this
12961 functionality depends on the remote stub's support of the
12962 @samp{qXfer:osdata:read} packet, see @ref{qXfer osdata read}.
12963
12964 @table @code
12965 @kindex info os
12966 @item info os @var{infotype}
12967
12968 Display OS information of the requested type.
12969
12970 On @sc{gnu}/Linux, the following values of @var{infotype} are valid:
12971
12972 @anchor{linux info os infotypes}
12973 @table @code
12974 @kindex info os cpus
12975 @item cpus
12976 Display the list of all CPUs/cores. For each CPU/core, @value{GDBN} prints
12977 the available fields from /proc/cpuinfo. For each supported architecture
12978 different fields are available. Two common entries are processor which gives
12979 CPU number and bogomips; a system constant that is calculated during
12980 kernel initialization.
12981
12982 @kindex info os files
12983 @item files
12984 Display the list of open file descriptors on the target. For each
12985 file descriptor, @value{GDBN} prints the identifier of the process
12986 owning the descriptor, the command of the owning process, the value
12987 of the descriptor, and the target of the descriptor.
12988
12989 @kindex info os modules
12990 @item modules
12991 Display the list of all loaded kernel modules on the target. For each
12992 module, @value{GDBN} prints the module name, the size of the module in
12993 bytes, the number of times the module is used, the dependencies of the
12994 module, the status of the module, and the address of the loaded module
12995 in memory.
12996
12997 @kindex info os msg
12998 @item msg
12999 Display the list of all System V message queues on the target. For each
13000 message queue, @value{GDBN} prints the message queue key, the message
13001 queue identifier, the access permissions, the current number of bytes
13002 on the queue, the current number of messages on the queue, the processes
13003 that last sent and received a message on the queue, the user and group
13004 of the owner and creator of the message queue, the times at which a
13005 message was last sent and received on the queue, and the time at which
13006 the message queue was last changed.
13007
13008 @kindex info os processes
13009 @item processes
13010 Display the list of processes on the target. For each process,
13011 @value{GDBN} prints the process identifier, the name of the user, the
13012 command corresponding to the process, and the list of processor cores
13013 that the process is currently running on. (To understand what these
13014 properties mean, for this and the following info types, please consult
13015 the general @sc{gnu}/Linux documentation.)
13016
13017 @kindex info os procgroups
13018 @item procgroups
13019 Display the list of process groups on the target. For each process,
13020 @value{GDBN} prints the identifier of the process group that it belongs
13021 to, the command corresponding to the process group leader, the process
13022 identifier, and the command line of the process. The list is sorted
13023 first by the process group identifier, then by the process identifier,
13024 so that processes belonging to the same process group are grouped together
13025 and the process group leader is listed first.
13026
13027 @kindex info os semaphores
13028 @item semaphores
13029 Display the list of all System V semaphore sets on the target. For each
13030 semaphore set, @value{GDBN} prints the semaphore set key, the semaphore
13031 set identifier, the access permissions, the number of semaphores in the
13032 set, the user and group of the owner and creator of the semaphore set,
13033 and the times at which the semaphore set was operated upon and changed.
13034
13035 @kindex info os shm
13036 @item shm
13037 Display the list of all System V shared-memory regions on the target.
13038 For each shared-memory region, @value{GDBN} prints the region key,
13039 the shared-memory identifier, the access permissions, the size of the
13040 region, the process that created the region, the process that last
13041 attached to or detached from the region, the current number of live
13042 attaches to the region, and the times at which the region was last
13043 attached to, detach from, and changed.
13044
13045 @kindex info os sockets
13046 @item sockets
13047 Display the list of Internet-domain sockets on the target. For each
13048 socket, @value{GDBN} prints the address and port of the local and
13049 remote endpoints, the current state of the connection, the creator of
13050 the socket, the IP address family of the socket, and the type of the
13051 connection.
13052
13053 @kindex info os threads
13054 @item threads
13055 Display the list of threads running on the target. For each thread,
13056 @value{GDBN} prints the identifier of the process that the thread
13057 belongs to, the command of the process, the thread identifier, and the
13058 processor core that it is currently running on. The main thread of a
13059 process is not listed.
13060 @end table
13061
13062 @item info os
13063 If @var{infotype} is omitted, then list the possible values for
13064 @var{infotype} and the kind of OS information available for each
13065 @var{infotype}. If the target does not return a list of possible
13066 types, this command will report an error.
13067 @end table
13068
13069 @node Memory Region Attributes
13070 @section Memory Region Attributes
13071 @cindex memory region attributes
13072
13073 @dfn{Memory region attributes} allow you to describe special handling
13074 required by regions of your target's memory. @value{GDBN} uses
13075 attributes to determine whether to allow certain types of memory
13076 accesses; whether to use specific width accesses; and whether to cache
13077 target memory. By default the description of memory regions is
13078 fetched from the target (if the current target supports this), but the
13079 user can override the fetched regions.
13080
13081 Defined memory regions can be individually enabled and disabled. When a
13082 memory region is disabled, @value{GDBN} uses the default attributes when
13083 accessing memory in that region. Similarly, if no memory regions have
13084 been defined, @value{GDBN} uses the default attributes when accessing
13085 all memory.
13086
13087 When a memory region is defined, it is given a number to identify it;
13088 to enable, disable, or remove a memory region, you specify that number.
13089
13090 @table @code
13091 @kindex mem
13092 @item mem @var{lower} @var{upper} @var{attributes}@dots{}
13093 Define a memory region bounded by @var{lower} and @var{upper} with
13094 attributes @var{attributes}@dots{}, and add it to the list of regions
13095 monitored by @value{GDBN}. Note that @var{upper} == 0 is a special
13096 case: it is treated as the target's maximum memory address.
13097 (0xffff on 16 bit targets, 0xffffffff on 32 bit targets, etc.)
13098
13099 @item mem auto
13100 Discard any user changes to the memory regions and use target-supplied
13101 regions, if available, or no regions if the target does not support.
13102
13103 @kindex delete mem
13104 @item delete mem @var{nums}@dots{}
13105 Remove memory regions @var{nums}@dots{} from the list of regions
13106 monitored by @value{GDBN}.
13107
13108 @kindex disable mem
13109 @item disable mem @var{nums}@dots{}
13110 Disable monitoring of memory regions @var{nums}@dots{}.
13111 A disabled memory region is not forgotten.
13112 It may be enabled again later.
13113
13114 @kindex enable mem
13115 @item enable mem @var{nums}@dots{}
13116 Enable monitoring of memory regions @var{nums}@dots{}.
13117
13118 @kindex info mem
13119 @item info mem
13120 Print a table of all defined memory regions, with the following columns
13121 for each region:
13122
13123 @table @emph
13124 @item Memory Region Number
13125 @item Enabled or Disabled.
13126 Enabled memory regions are marked with @samp{y}.
13127 Disabled memory regions are marked with @samp{n}.
13128
13129 @item Lo Address
13130 The address defining the inclusive lower bound of the memory region.
13131
13132 @item Hi Address
13133 The address defining the exclusive upper bound of the memory region.
13134
13135 @item Attributes
13136 The list of attributes set for this memory region.
13137 @end table
13138 @end table
13139
13140
13141 @subsection Attributes
13142
13143 @subsubsection Memory Access Mode
13144 The access mode attributes set whether @value{GDBN} may make read or
13145 write accesses to a memory region.
13146
13147 While these attributes prevent @value{GDBN} from performing invalid
13148 memory accesses, they do nothing to prevent the target system, I/O DMA,
13149 etc.@: from accessing memory.
13150
13151 @table @code
13152 @item ro
13153 Memory is read only.
13154 @item wo
13155 Memory is write only.
13156 @item rw
13157 Memory is read/write. This is the default.
13158 @end table
13159
13160 @subsubsection Memory Access Size
13161 The access size attribute tells @value{GDBN} to use specific sized
13162 accesses in the memory region. Often memory mapped device registers
13163 require specific sized accesses. If no access size attribute is
13164 specified, @value{GDBN} may use accesses of any size.
13165
13166 @table @code
13167 @item 8
13168 Use 8 bit memory accesses.
13169 @item 16
13170 Use 16 bit memory accesses.
13171 @item 32
13172 Use 32 bit memory accesses.
13173 @item 64
13174 Use 64 bit memory accesses.
13175 @end table
13176
13177 @c @subsubsection Hardware/Software Breakpoints
13178 @c The hardware/software breakpoint attributes set whether @value{GDBN}
13179 @c will use hardware or software breakpoints for the internal breakpoints
13180 @c used by the step, next, finish, until, etc. commands.
13181 @c
13182 @c @table @code
13183 @c @item hwbreak
13184 @c Always use hardware breakpoints
13185 @c @item swbreak (default)
13186 @c @end table
13187
13188 @subsubsection Data Cache
13189 The data cache attributes set whether @value{GDBN} will cache target
13190 memory. While this generally improves performance by reducing debug
13191 protocol overhead, it can lead to incorrect results because @value{GDBN}
13192 does not know about volatile variables or memory mapped device
13193 registers.
13194
13195 @table @code
13196 @item cache
13197 Enable @value{GDBN} to cache target memory.
13198 @item nocache
13199 Disable @value{GDBN} from caching target memory. This is the default.
13200 @end table
13201
13202 @subsection Memory Access Checking
13203 @value{GDBN} can be instructed to refuse accesses to memory that is
13204 not explicitly described. This can be useful if accessing such
13205 regions has undesired effects for a specific target, or to provide
13206 better error checking. The following commands control this behaviour.
13207
13208 @table @code
13209 @kindex set mem inaccessible-by-default
13210 @item set mem inaccessible-by-default [on|off]
13211 If @code{on} is specified, make @value{GDBN} treat memory not
13212 explicitly described by the memory ranges as non-existent and refuse accesses
13213 to such memory. The checks are only performed if there's at least one
13214 memory range defined. If @code{off} is specified, make @value{GDBN}
13215 treat the memory not explicitly described by the memory ranges as RAM.
13216 The default value is @code{on}.
13217 @kindex show mem inaccessible-by-default
13218 @item show mem inaccessible-by-default
13219 Show the current handling of accesses to unknown memory.
13220 @end table
13221
13222
13223 @c @subsubsection Memory Write Verification
13224 @c The memory write verification attributes set whether @value{GDBN}
13225 @c will re-reads data after each write to verify the write was successful.
13226 @c
13227 @c @table @code
13228 @c @item verify
13229 @c @item noverify (default)
13230 @c @end table
13231
13232 @node Dump/Restore Files
13233 @section Copy Between Memory and a File
13234 @cindex dump/restore files
13235 @cindex append data to a file
13236 @cindex dump data to a file
13237 @cindex restore data from a file
13238
13239 You can use the commands @code{dump}, @code{append}, and
13240 @code{restore} to copy data between target memory and a file. The
13241 @code{dump} and @code{append} commands write data to a file, and the
13242 @code{restore} command reads data from a file back into the inferior's
13243 memory. Files may be in binary, Motorola S-record, Intel hex,
13244 Tektronix Hex, or Verilog Hex format; however, @value{GDBN} can only
13245 append to binary files, and cannot read from Verilog Hex files.
13246
13247 @table @code
13248
13249 @kindex dump
13250 @item dump @r{[}@var{format}@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13251 @itemx dump @r{[}@var{format}@r{]} value @var{filename} @var{expr}
13252 Dump the contents of memory from @var{start_addr} to @var{end_addr},
13253 or the value of @var{expr}, to @var{filename} in the given format.
13254
13255 The @var{format} parameter may be any one of:
13256 @table @code
13257 @item binary
13258 Raw binary form.
13259 @item ihex
13260 Intel hex format.
13261 @item srec
13262 Motorola S-record format.
13263 @item tekhex
13264 Tektronix Hex format.
13265 @item verilog
13266 Verilog Hex format.
13267 @end table
13268
13269 @value{GDBN} uses the same definitions of these formats as the
13270 @sc{gnu} binary utilities, like @samp{objdump} and @samp{objcopy}. If
13271 @var{format} is omitted, @value{GDBN} dumps the data in raw binary
13272 form.
13273
13274 @kindex append
13275 @item append @r{[}binary@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13276 @itemx append @r{[}binary@r{]} value @var{filename} @var{expr}
13277 Append the contents of memory from @var{start_addr} to @var{end_addr},
13278 or the value of @var{expr}, to the file @var{filename}, in raw binary form.
13279 (@value{GDBN} can only append data to files in raw binary form.)
13280
13281 @kindex restore
13282 @item restore @var{filename} @r{[}binary@r{]} @var{bias} @var{start} @var{end}
13283 Restore the contents of file @var{filename} into memory. The
13284 @code{restore} command can automatically recognize any known @sc{bfd}
13285 file format, except for raw binary. To restore a raw binary file you
13286 must specify the optional keyword @code{binary} after the filename.
13287
13288 If @var{bias} is non-zero, its value will be added to the addresses
13289 contained in the file. Binary files always start at address zero, so
13290 they will be restored at address @var{bias}. Other bfd files have
13291 a built-in location; they will be restored at offset @var{bias}
13292 from that location.
13293
13294 If @var{start} and/or @var{end} are non-zero, then only data between
13295 file offset @var{start} and file offset @var{end} will be restored.
13296 These offsets are relative to the addresses in the file, before
13297 the @var{bias} argument is applied.
13298
13299 @end table
13300
13301 @node Core File Generation
13302 @section How to Produce a Core File from Your Program
13303 @cindex dump core from inferior
13304
13305 A @dfn{core file} or @dfn{core dump} is a file that records the memory
13306 image of a running process and its process status (register values
13307 etc.). Its primary use is post-mortem debugging of a program that
13308 crashed while it ran outside a debugger. A program that crashes
13309 automatically produces a core file, unless this feature is disabled by
13310 the user. @xref{Files}, for information on invoking @value{GDBN} in
13311 the post-mortem debugging mode.
13312
13313 Occasionally, you may wish to produce a core file of the program you
13314 are debugging in order to preserve a snapshot of its state.
13315 @value{GDBN} has a special command for that.
13316
13317 @table @code
13318 @kindex gcore
13319 @kindex generate-core-file
13320 @item generate-core-file [@var{file}]
13321 @itemx gcore [@var{file}]
13322 Produce a core dump of the inferior process. The optional argument
13323 @var{file} specifies the file name where to put the core dump. If not
13324 specified, the file name defaults to @file{core.@var{pid}}, where
13325 @var{pid} is the inferior process ID.
13326
13327 Note that this command is implemented only for some systems (as of
13328 this writing, @sc{gnu}/Linux, FreeBSD, Solaris, and S390).
13329
13330 On @sc{gnu}/Linux, this command can take into account the value of the
13331 file @file{/proc/@var{pid}/coredump_filter} when generating the core
13332 dump (@pxref{set use-coredump-filter}), and by default honors the
13333 @code{VM_DONTDUMP} flag for mappings where it is present in the file
13334 @file{/proc/@var{pid}/smaps} (@pxref{set dump-excluded-mappings}).
13335
13336 @kindex set use-coredump-filter
13337 @anchor{set use-coredump-filter}
13338 @item set use-coredump-filter on
13339 @itemx set use-coredump-filter off
13340 Enable or disable the use of the file
13341 @file{/proc/@var{pid}/coredump_filter} when generating core dump
13342 files. This file is used by the Linux kernel to decide what types of
13343 memory mappings will be dumped or ignored when generating a core dump
13344 file. @var{pid} is the process ID of a currently running process.
13345
13346 To make use of this feature, you have to write in the
13347 @file{/proc/@var{pid}/coredump_filter} file a value, in hexadecimal,
13348 which is a bit mask representing the memory mapping types. If a bit
13349 is set in the bit mask, then the memory mappings of the corresponding
13350 types will be dumped; otherwise, they will be ignored. This
13351 configuration is inherited by child processes. For more information
13352 about the bits that can be set in the
13353 @file{/proc/@var{pid}/coredump_filter} file, please refer to the
13354 manpage of @code{core(5)}.
13355
13356 By default, this option is @code{on}. If this option is turned
13357 @code{off}, @value{GDBN} does not read the @file{coredump_filter} file
13358 and instead uses the same default value as the Linux kernel in order
13359 to decide which pages will be dumped in the core dump file. This
13360 value is currently @code{0x33}, which means that bits @code{0}
13361 (anonymous private mappings), @code{1} (anonymous shared mappings),
13362 @code{4} (ELF headers) and @code{5} (private huge pages) are active.
13363 This will cause these memory mappings to be dumped automatically.
13364
13365 @kindex set dump-excluded-mappings
13366 @anchor{set dump-excluded-mappings}
13367 @item set dump-excluded-mappings on
13368 @itemx set dump-excluded-mappings off
13369 If @code{on} is specified, @value{GDBN} will dump memory mappings
13370 marked with the @code{VM_DONTDUMP} flag. This flag is represented in
13371 the file @file{/proc/@var{pid}/smaps} with the acronym @code{dd}.
13372
13373 The default value is @code{off}.
13374 @end table
13375
13376 @node Character Sets
13377 @section Character Sets
13378 @cindex character sets
13379 @cindex charset
13380 @cindex translating between character sets
13381 @cindex host character set
13382 @cindex target character set
13383
13384 If the program you are debugging uses a different character set to
13385 represent characters and strings than the one @value{GDBN} uses itself,
13386 @value{GDBN} can automatically translate between the character sets for
13387 you. The character set @value{GDBN} uses we call the @dfn{host
13388 character set}; the one the inferior program uses we call the
13389 @dfn{target character set}.
13390
13391 For example, if you are running @value{GDBN} on a @sc{gnu}/Linux system, which
13392 uses the ISO Latin 1 character set, but you are using @value{GDBN}'s
13393 remote protocol (@pxref{Remote Debugging}) to debug a program
13394 running on an IBM mainframe, which uses the @sc{ebcdic} character set,
13395 then the host character set is Latin-1, and the target character set is
13396 @sc{ebcdic}. If you give @value{GDBN} the command @code{set
13397 target-charset EBCDIC-US}, then @value{GDBN} translates between
13398 @sc{ebcdic} and Latin 1 as you print character or string values, or use
13399 character and string literals in expressions.
13400
13401 @value{GDBN} has no way to automatically recognize which character set
13402 the inferior program uses; you must tell it, using the @code{set
13403 target-charset} command, described below.
13404
13405 Here are the commands for controlling @value{GDBN}'s character set
13406 support:
13407
13408 @table @code
13409 @item set target-charset @var{charset}
13410 @kindex set target-charset
13411 Set the current target character set to @var{charset}. To display the
13412 list of supported target character sets, type
13413 @kbd{@w{set target-charset @key{TAB}@key{TAB}}}.
13414
13415 @item set host-charset @var{charset}
13416 @kindex set host-charset
13417 Set the current host character set to @var{charset}.
13418
13419 By default, @value{GDBN} uses a host character set appropriate to the
13420 system it is running on; you can override that default using the
13421 @code{set host-charset} command. On some systems, @value{GDBN} cannot
13422 automatically determine the appropriate host character set. In this
13423 case, @value{GDBN} uses @samp{UTF-8}.
13424
13425 @value{GDBN} can only use certain character sets as its host character
13426 set. If you type @kbd{@w{set host-charset @key{TAB}@key{TAB}}},
13427 @value{GDBN} will list the host character sets it supports.
13428
13429 @item set charset @var{charset}
13430 @kindex set charset
13431 Set the current host and target character sets to @var{charset}. As
13432 above, if you type @kbd{@w{set charset @key{TAB}@key{TAB}}},
13433 @value{GDBN} will list the names of the character sets that can be used
13434 for both host and target.
13435
13436 @item show charset
13437 @kindex show charset
13438 Show the names of the current host and target character sets.
13439
13440 @item show host-charset
13441 @kindex show host-charset
13442 Show the name of the current host character set.
13443
13444 @item show target-charset
13445 @kindex show target-charset
13446 Show the name of the current target character set.
13447
13448 @item set target-wide-charset @var{charset}
13449 @kindex set target-wide-charset
13450 Set the current target's wide character set to @var{charset}. This is
13451 the character set used by the target's @code{wchar_t} type. To
13452 display the list of supported wide character sets, type
13453 @kbd{@w{set target-wide-charset @key{TAB}@key{TAB}}}.
13454
13455 @item show target-wide-charset
13456 @kindex show target-wide-charset
13457 Show the name of the current target's wide character set.
13458 @end table
13459
13460 Here is an example of @value{GDBN}'s character set support in action.
13461 Assume that the following source code has been placed in the file
13462 @file{charset-test.c}:
13463
13464 @smallexample
13465 #include <stdio.h>
13466
13467 char ascii_hello[]
13468 = @{72, 101, 108, 108, 111, 44, 32, 119,
13469 111, 114, 108, 100, 33, 10, 0@};
13470 char ibm1047_hello[]
13471 = @{200, 133, 147, 147, 150, 107, 64, 166,
13472 150, 153, 147, 132, 90, 37, 0@};
13473
13474 main ()
13475 @{
13476 printf ("Hello, world!\n");
13477 @}
13478 @end smallexample
13479
13480 In this program, @code{ascii_hello} and @code{ibm1047_hello} are arrays
13481 containing the string @samp{Hello, world!} followed by a newline,
13482 encoded in the @sc{ascii} and @sc{ibm1047} character sets.
13483
13484 We compile the program, and invoke the debugger on it:
13485
13486 @smallexample
13487 $ gcc -g charset-test.c -o charset-test
13488 $ gdb -nw charset-test
13489 GNU gdb 2001-12-19-cvs
13490 Copyright 2001 Free Software Foundation, Inc.
13491 @dots{}
13492 (@value{GDBP})
13493 @end smallexample
13494
13495 We can use the @code{show charset} command to see what character sets
13496 @value{GDBN} is currently using to interpret and display characters and
13497 strings:
13498
13499 @smallexample
13500 (@value{GDBP}) show charset
13501 The current host and target character set is `ISO-8859-1'.
13502 (@value{GDBP})
13503 @end smallexample
13504
13505 For the sake of printing this manual, let's use @sc{ascii} as our
13506 initial character set:
13507 @smallexample
13508 (@value{GDBP}) set charset ASCII
13509 (@value{GDBP}) show charset
13510 The current host and target character set is `ASCII'.
13511 (@value{GDBP})
13512 @end smallexample
13513
13514 Let's assume that @sc{ascii} is indeed the correct character set for our
13515 host system --- in other words, let's assume that if @value{GDBN} prints
13516 characters using the @sc{ascii} character set, our terminal will display
13517 them properly. Since our current target character set is also
13518 @sc{ascii}, the contents of @code{ascii_hello} print legibly:
13519
13520 @smallexample
13521 (@value{GDBP}) print ascii_hello
13522 $1 = 0x401698 "Hello, world!\n"
13523 (@value{GDBP}) print ascii_hello[0]
13524 $2 = 72 'H'
13525 (@value{GDBP})
13526 @end smallexample
13527
13528 @value{GDBN} uses the target character set for character and string
13529 literals you use in expressions:
13530
13531 @smallexample
13532 (@value{GDBP}) print '+'
13533 $3 = 43 '+'
13534 (@value{GDBP})
13535 @end smallexample
13536
13537 The @sc{ascii} character set uses the number 43 to encode the @samp{+}
13538 character.
13539
13540 @value{GDBN} relies on the user to tell it which character set the
13541 target program uses. If we print @code{ibm1047_hello} while our target
13542 character set is still @sc{ascii}, we get jibberish:
13543
13544 @smallexample
13545 (@value{GDBP}) print ibm1047_hello
13546 $4 = 0x4016a8 "\310\205\223\223\226k@@\246\226\231\223\204Z%"
13547 (@value{GDBP}) print ibm1047_hello[0]
13548 $5 = 200 '\310'
13549 (@value{GDBP})
13550 @end smallexample
13551
13552 If we invoke the @code{set target-charset} followed by @key{TAB}@key{TAB},
13553 @value{GDBN} tells us the character sets it supports:
13554
13555 @smallexample
13556 (@value{GDBP}) set target-charset
13557 ASCII EBCDIC-US IBM1047 ISO-8859-1
13558 (@value{GDBP}) set target-charset
13559 @end smallexample
13560
13561 We can select @sc{ibm1047} as our target character set, and examine the
13562 program's strings again. Now the @sc{ascii} string is wrong, but
13563 @value{GDBN} translates the contents of @code{ibm1047_hello} from the
13564 target character set, @sc{ibm1047}, to the host character set,
13565 @sc{ascii}, and they display correctly:
13566
13567 @smallexample
13568 (@value{GDBP}) set target-charset IBM1047
13569 (@value{GDBP}) show charset
13570 The current host character set is `ASCII'.
13571 The current target character set is `IBM1047'.
13572 (@value{GDBP}) print ascii_hello
13573 $6 = 0x401698 "\110\145%%?\054\040\167?\162%\144\041\012"
13574 (@value{GDBP}) print ascii_hello[0]
13575 $7 = 72 '\110'
13576 (@value{GDBP}) print ibm1047_hello
13577 $8 = 0x4016a8 "Hello, world!\n"
13578 (@value{GDBP}) print ibm1047_hello[0]
13579 $9 = 200 'H'
13580 (@value{GDBP})
13581 @end smallexample
13582
13583 As above, @value{GDBN} uses the target character set for character and
13584 string literals you use in expressions:
13585
13586 @smallexample
13587 (@value{GDBP}) print '+'
13588 $10 = 78 '+'
13589 (@value{GDBP})
13590 @end smallexample
13591
13592 The @sc{ibm1047} character set uses the number 78 to encode the @samp{+}
13593 character.
13594
13595 @node Caching Target Data
13596 @section Caching Data of Targets
13597 @cindex caching data of targets
13598
13599 @value{GDBN} caches data exchanged between the debugger and a target.
13600 Each cache is associated with the address space of the inferior.
13601 @xref{Inferiors Connections and Programs}, about inferior and address space.
13602 Such caching generally improves performance in remote debugging
13603 (@pxref{Remote Debugging}), because it reduces the overhead of the
13604 remote protocol by bundling memory reads and writes into large chunks.
13605 Unfortunately, simply caching everything would lead to incorrect results,
13606 since @value{GDBN} does not necessarily know anything about volatile
13607 values, memory-mapped I/O addresses, etc. Furthermore, in non-stop mode
13608 (@pxref{Non-Stop Mode}) memory can be changed @emph{while} a gdb command
13609 is executing.
13610 Therefore, by default, @value{GDBN} only caches data
13611 known to be on the stack@footnote{In non-stop mode, it is moderately
13612 rare for a running thread to modify the stack of a stopped thread
13613 in a way that would interfere with a backtrace, and caching of
13614 stack reads provides a significant speed up of remote backtraces.} or
13615 in the code segment.
13616 Other regions of memory can be explicitly marked as
13617 cacheable; @pxref{Memory Region Attributes}.
13618
13619 @table @code
13620 @kindex set remotecache
13621 @item set remotecache on
13622 @itemx set remotecache off
13623 This option no longer does anything; it exists for compatibility
13624 with old scripts.
13625
13626 @kindex show remotecache
13627 @item show remotecache
13628 Show the current state of the obsolete remotecache flag.
13629
13630 @kindex set stack-cache
13631 @item set stack-cache on
13632 @itemx set stack-cache off
13633 Enable or disable caching of stack accesses. When @code{on}, use
13634 caching. By default, this option is @code{on}.
13635
13636 @kindex show stack-cache
13637 @item show stack-cache
13638 Show the current state of data caching for memory accesses.
13639
13640 @kindex set code-cache
13641 @item set code-cache on
13642 @itemx set code-cache off
13643 Enable or disable caching of code segment accesses. When @code{on},
13644 use caching. By default, this option is @code{on}. This improves
13645 performance of disassembly in remote debugging.
13646
13647 @kindex show code-cache
13648 @item show code-cache
13649 Show the current state of target memory cache for code segment
13650 accesses.
13651
13652 @kindex info dcache
13653 @item info dcache @r{[}line@r{]}
13654 Print the information about the performance of data cache of the
13655 current inferior's address space. The information displayed
13656 includes the dcache width and depth, and for each cache line, its
13657 number, address, and how many times it was referenced. This
13658 command is useful for debugging the data cache operation.
13659
13660 If a line number is specified, the contents of that line will be
13661 printed in hex.
13662
13663 @item set dcache size @var{size}
13664 @cindex dcache size
13665 @kindex set dcache size
13666 Set maximum number of entries in dcache (dcache depth above).
13667
13668 @item set dcache line-size @var{line-size}
13669 @cindex dcache line-size
13670 @kindex set dcache line-size
13671 Set number of bytes each dcache entry caches (dcache width above).
13672 Must be a power of 2.
13673
13674 @item show dcache size
13675 @kindex show dcache size
13676 Show maximum number of dcache entries. @xref{Caching Target Data, info dcache}.
13677
13678 @item show dcache line-size
13679 @kindex show dcache line-size
13680 Show default size of dcache lines.
13681
13682 @item maint flush dcache
13683 @cindex dcache, flushing
13684 @kindex maint flush dcache
13685 Flush the contents (if any) of the dcache. This maintainer command is
13686 useful when debugging the dcache implementation.
13687
13688 @end table
13689
13690 @node Searching Memory
13691 @section Search Memory
13692 @cindex searching memory
13693
13694 Memory can be searched for a particular sequence of bytes with the
13695 @code{find} command.
13696
13697 @table @code
13698 @kindex find
13699 @item find @r{[}/@var{sn}@r{]} @var{start_addr}, +@var{len}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13700 @itemx find @r{[}/@var{sn}@r{]} @var{start_addr}, @var{end_addr}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13701 Search memory for the sequence of bytes specified by @var{val1}, @var{val2},
13702 etc. The search begins at address @var{start_addr} and continues for either
13703 @var{len} bytes or through to @var{end_addr} inclusive.
13704 @end table
13705
13706 @var{s} and @var{n} are optional parameters.
13707 They may be specified in either order, apart or together.
13708
13709 @table @r
13710 @item @var{s}, search query size
13711 The size of each search query value.
13712
13713 @table @code
13714 @item b
13715 bytes
13716 @item h
13717 halfwords (two bytes)
13718 @item w
13719 words (four bytes)
13720 @item g
13721 giant words (eight bytes)
13722 @end table
13723
13724 All values are interpreted in the current language.
13725 This means, for example, that if the current source language is C/C@t{++}
13726 then searching for the string ``hello'' includes the trailing '\0'.
13727 The null terminator can be removed from searching by using casts,
13728 e.g.: @samp{@{char[5]@}"hello"}.
13729
13730 If the value size is not specified, it is taken from the
13731 value's type in the current language.
13732 This is useful when one wants to specify the search
13733 pattern as a mixture of types.
13734 Note that this means, for example, that in the case of C-like languages
13735 a search for an untyped 0x42 will search for @samp{(int) 0x42}
13736 which is typically four bytes.
13737
13738 @item @var{n}, maximum number of finds
13739 The maximum number of matches to print. The default is to print all finds.
13740 @end table
13741
13742 You can use strings as search values. Quote them with double-quotes
13743 (@code{"}).
13744 The string value is copied into the search pattern byte by byte,
13745 regardless of the endianness of the target and the size specification.
13746
13747 The address of each match found is printed as well as a count of the
13748 number of matches found.
13749
13750 The address of the last value found is stored in convenience variable
13751 @samp{$_}.
13752 A count of the number of matches is stored in @samp{$numfound}.
13753
13754 For example, if stopped at the @code{printf} in this function:
13755
13756 @smallexample
13757 void
13758 hello ()
13759 @{
13760 static char hello[] = "hello-hello";
13761 static struct @{ char c; short s; int i; @}
13762 __attribute__ ((packed)) mixed
13763 = @{ 'c', 0x1234, 0x87654321 @};
13764 printf ("%s\n", hello);
13765 @}
13766 @end smallexample
13767
13768 @noindent
13769 you get during debugging:
13770
13771 @smallexample
13772 (gdb) find &hello[0], +sizeof(hello), "hello"
13773 0x804956d <hello.1620+6>
13774 1 pattern found
13775 (gdb) find &hello[0], +sizeof(hello), 'h', 'e', 'l', 'l', 'o'
13776 0x8049567 <hello.1620>
13777 0x804956d <hello.1620+6>
13778 2 patterns found.
13779 (gdb) find &hello[0], +sizeof(hello), @{char[5]@}"hello"
13780 0x8049567 <hello.1620>
13781 0x804956d <hello.1620+6>
13782 2 patterns found.
13783 (gdb) find /b1 &hello[0], +sizeof(hello), 'h', 0x65, 'l'
13784 0x8049567 <hello.1620>
13785 1 pattern found
13786 (gdb) find &mixed, +sizeof(mixed), (char) 'c', (short) 0x1234, (int) 0x87654321
13787 0x8049560 <mixed.1625>
13788 1 pattern found
13789 (gdb) print $numfound
13790 $1 = 1
13791 (gdb) print $_
13792 $2 = (void *) 0x8049560
13793 @end smallexample
13794
13795 @node Value Sizes
13796 @section Value Sizes
13797
13798 Whenever @value{GDBN} prints a value memory will be allocated within
13799 @value{GDBN} to hold the contents of the value. It is possible in
13800 some languages with dynamic typing systems, that an invalid program
13801 may indicate a value that is incorrectly large, this in turn may cause
13802 @value{GDBN} to try and allocate an overly large amount of memory.
13803
13804 @table @code
13805 @kindex set max-value-size
13806 @item set max-value-size @var{bytes}
13807 @itemx set max-value-size unlimited
13808 Set the maximum size of memory that @value{GDBN} will allocate for the
13809 contents of a value to @var{bytes}, trying to display a value that
13810 requires more memory than that will result in an error.
13811
13812 Setting this variable does not effect values that have already been
13813 allocated within @value{GDBN}, only future allocations.
13814
13815 There's a minimum size that @code{max-value-size} can be set to in
13816 order that @value{GDBN} can still operate correctly, this minimum is
13817 currently 16 bytes.
13818
13819 The limit applies to the results of some subexpressions as well as to
13820 complete expressions. For example, an expression denoting a simple
13821 integer component, such as @code{x.y.z}, may fail if the size of
13822 @var{x.y} is dynamic and exceeds @var{bytes}. On the other hand,
13823 @value{GDBN} is sometimes clever; the expression @code{A[i]}, where
13824 @var{A} is an array variable with non-constant size, will generally
13825 succeed regardless of the bounds on @var{A}, as long as the component
13826 size is less than @var{bytes}.
13827
13828 The default value of @code{max-value-size} is currently 64k.
13829
13830 @kindex show max-value-size
13831 @item show max-value-size
13832 Show the maximum size of memory, in bytes, that @value{GDBN} will
13833 allocate for the contents of a value.
13834 @end table
13835
13836 @node Optimized Code
13837 @chapter Debugging Optimized Code
13838 @cindex optimized code, debugging
13839 @cindex debugging optimized code
13840
13841 Almost all compilers support optimization. With optimization
13842 disabled, the compiler generates assembly code that corresponds
13843 directly to your source code, in a simplistic way. As the compiler
13844 applies more powerful optimizations, the generated assembly code
13845 diverges from your original source code. With help from debugging
13846 information generated by the compiler, @value{GDBN} can map from
13847 the running program back to constructs from your original source.
13848
13849 @value{GDBN} is more accurate with optimization disabled. If you
13850 can recompile without optimization, it is easier to follow the
13851 progress of your program during debugging. But, there are many cases
13852 where you may need to debug an optimized version.
13853
13854 When you debug a program compiled with @samp{-g -O}, remember that the
13855 optimizer has rearranged your code; the debugger shows you what is
13856 really there. Do not be too surprised when the execution path does not
13857 exactly match your source file! An extreme example: if you define a
13858 variable, but never use it, @value{GDBN} never sees that
13859 variable---because the compiler optimizes it out of existence.
13860
13861 Some things do not work as well with @samp{-g -O} as with just
13862 @samp{-g}, particularly on machines with instruction scheduling. If in
13863 doubt, recompile with @samp{-g} alone, and if this fixes the problem,
13864 please report it to us as a bug (including a test case!).
13865 @xref{Variables}, for more information about debugging optimized code.
13866
13867 @menu
13868 * Inline Functions:: How @value{GDBN} presents inlining
13869 * Tail Call Frames:: @value{GDBN} analysis of jumps to functions
13870 @end menu
13871
13872 @node Inline Functions
13873 @section Inline Functions
13874 @cindex inline functions, debugging
13875
13876 @dfn{Inlining} is an optimization that inserts a copy of the function
13877 body directly at each call site, instead of jumping to a shared
13878 routine. @value{GDBN} displays inlined functions just like
13879 non-inlined functions. They appear in backtraces. You can view their
13880 arguments and local variables, step into them with @code{step}, skip
13881 them with @code{next}, and escape from them with @code{finish}.
13882 You can check whether a function was inlined by using the
13883 @code{info frame} command.
13884
13885 For @value{GDBN} to support inlined functions, the compiler must
13886 record information about inlining in the debug information ---
13887 @value{NGCC} using the @sc{dwarf 2} format does this, and several
13888 other compilers do also. @value{GDBN} only supports inlined functions
13889 when using @sc{dwarf 2}. Versions of @value{NGCC} before 4.1
13890 do not emit two required attributes (@samp{DW_AT_call_file} and
13891 @samp{DW_AT_call_line}); @value{GDBN} does not display inlined
13892 function calls with earlier versions of @value{NGCC}. It instead
13893 displays the arguments and local variables of inlined functions as
13894 local variables in the caller.
13895
13896 The body of an inlined function is directly included at its call site;
13897 unlike a non-inlined function, there are no instructions devoted to
13898 the call. @value{GDBN} still pretends that the call site and the
13899 start of the inlined function are different instructions. Stepping to
13900 the call site shows the call site, and then stepping again shows
13901 the first line of the inlined function, even though no additional
13902 instructions are executed.
13903
13904 This makes source-level debugging much clearer; you can see both the
13905 context of the call and then the effect of the call. Only stepping by
13906 a single instruction using @code{stepi} or @code{nexti} does not do
13907 this; single instruction steps always show the inlined body.
13908
13909 There are some ways that @value{GDBN} does not pretend that inlined
13910 function calls are the same as normal calls:
13911
13912 @itemize @bullet
13913 @item
13914 Setting breakpoints at the call site of an inlined function may not
13915 work, because the call site does not contain any code. @value{GDBN}
13916 may incorrectly move the breakpoint to the next line of the enclosing
13917 function, after the call. This limitation will be removed in a future
13918 version of @value{GDBN}; until then, set a breakpoint on an earlier line
13919 or inside the inlined function instead.
13920
13921 @item
13922 @value{GDBN} cannot locate the return value of inlined calls after
13923 using the @code{finish} command. This is a limitation of compiler-generated
13924 debugging information; after @code{finish}, you can step to the next line
13925 and print a variable where your program stored the return value.
13926
13927 @end itemize
13928
13929 @node Tail Call Frames
13930 @section Tail Call Frames
13931 @cindex tail call frames, debugging
13932
13933 Function @code{B} can call function @code{C} in its very last statement. In
13934 unoptimized compilation the call of @code{C} is immediately followed by return
13935 instruction at the end of @code{B} code. Optimizing compiler may replace the
13936 call and return in function @code{B} into one jump to function @code{C}
13937 instead. Such use of a jump instruction is called @dfn{tail call}.
13938
13939 During execution of function @code{C}, there will be no indication in the
13940 function call stack frames that it was tail-called from @code{B}. If function
13941 @code{A} regularly calls function @code{B} which tail-calls function @code{C},
13942 then @value{GDBN} will see @code{A} as the caller of @code{C}. However, in
13943 some cases @value{GDBN} can determine that @code{C} was tail-called from
13944 @code{B}, and it will then create fictitious call frame for that, with the
13945 return address set up as if @code{B} called @code{C} normally.
13946
13947 This functionality is currently supported only by DWARF 2 debugging format and
13948 the compiler has to produce @samp{DW_TAG_call_site} tags. With
13949 @value{NGCC}, you need to specify @option{-O -g} during compilation, to get
13950 this information.
13951
13952 @kbd{info frame} command (@pxref{Frame Info}) will indicate the tail call frame
13953 kind by text @code{tail call frame} such as in this sample @value{GDBN} output:
13954
13955 @smallexample
13956 (gdb) x/i $pc - 2
13957 0x40066b <b(int, double)+11>: jmp 0x400640 <c(int, double)>
13958 (gdb) info frame
13959 Stack level 1, frame at 0x7fffffffda30:
13960 rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
13961 tail call frame, caller of frame at 0x7fffffffda30
13962 source language c++.
13963 Arglist at unknown address.
13964 Locals at unknown address, Previous frame's sp is 0x7fffffffda30
13965 @end smallexample
13966
13967 The detection of all the possible code path executions can find them ambiguous.
13968 There is no execution history stored (possible @ref{Reverse Execution} is never
13969 used for this purpose) and the last known caller could have reached the known
13970 callee by multiple different jump sequences. In such case @value{GDBN} still
13971 tries to show at least all the unambiguous top tail callers and all the
13972 unambiguous bottom tail calees, if any.
13973
13974 @table @code
13975 @anchor{set debug entry-values}
13976 @item set debug entry-values
13977 @kindex set debug entry-values
13978 When set to on, enables printing of analysis messages for both frame argument
13979 values at function entry and tail calls. It will show all the possible valid
13980 tail calls code paths it has considered. It will also print the intersection
13981 of them with the final unambiguous (possibly partial or even empty) code path
13982 result.
13983
13984 @item show debug entry-values
13985 @kindex show debug entry-values
13986 Show the current state of analysis messages printing for both frame argument
13987 values at function entry and tail calls.
13988 @end table
13989
13990 The analysis messages for tail calls can for example show why the virtual tail
13991 call frame for function @code{c} has not been recognized (due to the indirect
13992 reference by variable @code{x}):
13993
13994 @smallexample
13995 static void __attribute__((noinline, noclone)) c (void);
13996 void (*x) (void) = c;
13997 static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
13998 static void __attribute__((noinline, noclone)) c (void) @{ a (); @}
13999 int main (void) @{ x (); return 0; @}
14000
14001 Breakpoint 1, DW_OP_entry_value resolving cannot find
14002 DW_TAG_call_site 0x40039a in main
14003 a () at t.c:3
14004 3 static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
14005 (gdb) bt
14006 #0 a () at t.c:3
14007 #1 0x000000000040039a in main () at t.c:5
14008 @end smallexample
14009
14010 Another possibility is an ambiguous virtual tail call frames resolution:
14011
14012 @smallexample
14013 int i;
14014 static void __attribute__((noinline, noclone)) f (void) @{ i++; @}
14015 static void __attribute__((noinline, noclone)) e (void) @{ f (); @}
14016 static void __attribute__((noinline, noclone)) d (void) @{ f (); @}
14017 static void __attribute__((noinline, noclone)) c (void) @{ d (); @}
14018 static void __attribute__((noinline, noclone)) b (void)
14019 @{ if (i) c (); else e (); @}
14020 static void __attribute__((noinline, noclone)) a (void) @{ b (); @}
14021 int main (void) @{ a (); return 0; @}
14022
14023 tailcall: initial: 0x4004d2(a) 0x4004ce(b) 0x4004b2(c) 0x4004a2(d)
14024 tailcall: compare: 0x4004d2(a) 0x4004cc(b) 0x400492(e)
14025 tailcall: reduced: 0x4004d2(a) |
14026 (gdb) bt
14027 #0 f () at t.c:2
14028 #1 0x00000000004004d2 in a () at t.c:8
14029 #2 0x0000000000400395 in main () at t.c:9
14030 @end smallexample
14031
14032 @set CALLSEQ1A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}c@value{ARROW}d@value{ARROW}f}
14033 @set CALLSEQ2A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}e@value{ARROW}f}
14034
14035 @c Convert CALLSEQ#A to CALLSEQ#B depending on HAVE_MAKEINFO_CLICK.
14036 @ifset HAVE_MAKEINFO_CLICK
14037 @set ARROW @click{}
14038 @set CALLSEQ1B @clicksequence{@value{CALLSEQ1A}}
14039 @set CALLSEQ2B @clicksequence{@value{CALLSEQ2A}}
14040 @end ifset
14041 @ifclear HAVE_MAKEINFO_CLICK
14042 @set ARROW ->
14043 @set CALLSEQ1B @value{CALLSEQ1A}
14044 @set CALLSEQ2B @value{CALLSEQ2A}
14045 @end ifclear
14046
14047 Frames #0 and #2 are real, #1 is a virtual tail call frame.
14048 The code can have possible execution paths @value{CALLSEQ1B} or
14049 @value{CALLSEQ2B}, @value{GDBN} cannot find which one from the inferior state.
14050
14051 @code{initial:} state shows some random possible calling sequence @value{GDBN}
14052 has found. It then finds another possible calling sequence - that one is
14053 prefixed by @code{compare:}. The non-ambiguous intersection of these two is
14054 printed as the @code{reduced:} calling sequence. That one could have many
14055 further @code{compare:} and @code{reduced:} statements as long as there remain
14056 any non-ambiguous sequence entries.
14057
14058 For the frame of function @code{b} in both cases there are different possible
14059 @code{$pc} values (@code{0x4004cc} or @code{0x4004ce}), therefore this frame is
14060 also ambiguous. The only non-ambiguous frame is the one for function @code{a},
14061 therefore this one is displayed to the user while the ambiguous frames are
14062 omitted.
14063
14064 There can be also reasons why printing of frame argument values at function
14065 entry may fail:
14066
14067 @smallexample
14068 int v;
14069 static void __attribute__((noinline, noclone)) c (int i) @{ v++; @}
14070 static void __attribute__((noinline, noclone)) a (int i);
14071 static void __attribute__((noinline, noclone)) b (int i) @{ a (i); @}
14072 static void __attribute__((noinline, noclone)) a (int i)
14073 @{ if (i) b (i - 1); else c (0); @}
14074 int main (void) @{ a (5); return 0; @}
14075
14076 (gdb) bt
14077 #0 c (i=i@@entry=0) at t.c:2
14078 #1 0x0000000000400428 in a (DW_OP_entry_value resolving has found
14079 function "a" at 0x400420 can call itself via tail calls
14080 i=<optimized out>) at t.c:6
14081 #2 0x000000000040036e in main () at t.c:7
14082 @end smallexample
14083
14084 @value{GDBN} cannot find out from the inferior state if and how many times did
14085 function @code{a} call itself (via function @code{b}) as these calls would be
14086 tail calls. Such tail calls would modify the @code{i} variable, therefore
14087 @value{GDBN} cannot be sure the value it knows would be right - @value{GDBN}
14088 prints @code{<optimized out>} instead.
14089
14090 @node Macros
14091 @chapter C Preprocessor Macros
14092
14093 Some languages, such as C and C@t{++}, provide a way to define and invoke
14094 ``preprocessor macros'' which expand into strings of tokens.
14095 @value{GDBN} can evaluate expressions containing macro invocations, show
14096 the result of macro expansion, and show a macro's definition, including
14097 where it was defined.
14098
14099 You may need to compile your program specially to provide @value{GDBN}
14100 with information about preprocessor macros. Most compilers do not
14101 include macros in their debugging information, even when you compile
14102 with the @option{-g} flag. @xref{Compilation}.
14103
14104 A program may define a macro at one point, remove that definition later,
14105 and then provide a different definition after that. Thus, at different
14106 points in the program, a macro may have different definitions, or have
14107 no definition at all. If there is a current stack frame, @value{GDBN}
14108 uses the macros in scope at that frame's source code line. Otherwise,
14109 @value{GDBN} uses the macros in scope at the current listing location;
14110 see @ref{List}.
14111
14112 Whenever @value{GDBN} evaluates an expression, it always expands any
14113 macro invocations present in the expression. @value{GDBN} also provides
14114 the following commands for working with macros explicitly.
14115
14116 @table @code
14117
14118 @kindex macro expand
14119 @cindex macro expansion, showing the results of preprocessor
14120 @cindex preprocessor macro expansion, showing the results of
14121 @cindex expanding preprocessor macros
14122 @item macro expand @var{expression}
14123 @itemx macro exp @var{expression}
14124 Show the results of expanding all preprocessor macro invocations in
14125 @var{expression}. Since @value{GDBN} simply expands macros, but does
14126 not parse the result, @var{expression} need not be a valid expression;
14127 it can be any string of tokens.
14128
14129 @kindex macro exp1
14130 @item macro expand-once @var{expression}
14131 @itemx macro exp1 @var{expression}
14132 @cindex expand macro once
14133 @i{(This command is not yet implemented.)} Show the results of
14134 expanding those preprocessor macro invocations that appear explicitly in
14135 @var{expression}. Macro invocations appearing in that expansion are
14136 left unchanged. This command allows you to see the effect of a
14137 particular macro more clearly, without being confused by further
14138 expansions. Since @value{GDBN} simply expands macros, but does not
14139 parse the result, @var{expression} need not be a valid expression; it
14140 can be any string of tokens.
14141
14142 @kindex info macro
14143 @cindex macro definition, showing
14144 @cindex definition of a macro, showing
14145 @cindex macros, from debug info
14146 @item info macro [-a|-all] [--] @var{macro}
14147 Show the current definition or all definitions of the named @var{macro},
14148 and describe the source location or compiler command-line where that
14149 definition was established. The optional double dash is to signify the end of
14150 argument processing and the beginning of @var{macro} for non C-like macros where
14151 the macro may begin with a hyphen.
14152
14153 @kindex info macros
14154 @item info macros @var{location}
14155 Show all macro definitions that are in effect at the location specified
14156 by @var{location}, and describe the source location or compiler
14157 command-line where those definitions were established.
14158
14159 @kindex macro define
14160 @cindex user-defined macros
14161 @cindex defining macros interactively
14162 @cindex macros, user-defined
14163 @item macro define @var{macro} @var{replacement-list}
14164 @itemx macro define @var{macro}(@var{arglist}) @var{replacement-list}
14165 Introduce a definition for a preprocessor macro named @var{macro},
14166 invocations of which are replaced by the tokens given in
14167 @var{replacement-list}. The first form of this command defines an
14168 ``object-like'' macro, which takes no arguments; the second form
14169 defines a ``function-like'' macro, which takes the arguments given in
14170 @var{arglist}.
14171
14172 A definition introduced by this command is in scope in every
14173 expression evaluated in @value{GDBN}, until it is removed with the
14174 @code{macro undef} command, described below. The definition overrides
14175 all definitions for @var{macro} present in the program being debugged,
14176 as well as any previous user-supplied definition.
14177
14178 @kindex macro undef
14179 @item macro undef @var{macro}
14180 Remove any user-supplied definition for the macro named @var{macro}.
14181 This command only affects definitions provided with the @code{macro
14182 define} command, described above; it cannot remove definitions present
14183 in the program being debugged.
14184
14185 @kindex macro list
14186 @item macro list
14187 List all the macros defined using the @code{macro define} command.
14188 @end table
14189
14190 @cindex macros, example of debugging with
14191 Here is a transcript showing the above commands in action. First, we
14192 show our source files:
14193
14194 @smallexample
14195 $ cat sample.c
14196 #include <stdio.h>
14197 #include "sample.h"
14198
14199 #define M 42
14200 #define ADD(x) (M + x)
14201
14202 main ()
14203 @{
14204 #define N 28
14205 printf ("Hello, world!\n");
14206 #undef N
14207 printf ("We're so creative.\n");
14208 #define N 1729
14209 printf ("Goodbye, world!\n");
14210 @}
14211 $ cat sample.h
14212 #define Q <
14213 $
14214 @end smallexample
14215
14216 Now, we compile the program using the @sc{gnu} C compiler,
14217 @value{NGCC}. We pass the @option{-gdwarf-2}@footnote{This is the
14218 minimum. Recent versions of @value{NGCC} support @option{-gdwarf-3}
14219 and @option{-gdwarf-4}; we recommend always choosing the most recent
14220 version of DWARF.} @emph{and} @option{-g3} flags to ensure the compiler
14221 includes information about preprocessor macros in the debugging
14222 information.
14223
14224 @smallexample
14225 $ gcc -gdwarf-2 -g3 sample.c -o sample
14226 $
14227 @end smallexample
14228
14229 Now, we start @value{GDBN} on our sample program:
14230
14231 @smallexample
14232 $ gdb -nw sample
14233 GNU gdb 2002-05-06-cvs
14234 Copyright 2002 Free Software Foundation, Inc.
14235 GDB is free software, @dots{}
14236 (@value{GDBP})
14237 @end smallexample
14238
14239 We can expand macros and examine their definitions, even when the
14240 program is not running. @value{GDBN} uses the current listing position
14241 to decide which macro definitions are in scope:
14242
14243 @smallexample
14244 (@value{GDBP}) list main
14245 3
14246 4 #define M 42
14247 5 #define ADD(x) (M + x)
14248 6
14249 7 main ()
14250 8 @{
14251 9 #define N 28
14252 10 printf ("Hello, world!\n");
14253 11 #undef N
14254 12 printf ("We're so creative.\n");
14255 (@value{GDBP}) info macro ADD
14256 Defined at /home/jimb/gdb/macros/play/sample.c:5
14257 #define ADD(x) (M + x)
14258 (@value{GDBP}) info macro Q
14259 Defined at /home/jimb/gdb/macros/play/sample.h:1
14260 included at /home/jimb/gdb/macros/play/sample.c:2
14261 #define Q <
14262 (@value{GDBP}) macro expand ADD(1)
14263 expands to: (42 + 1)
14264 (@value{GDBP}) macro expand-once ADD(1)
14265 expands to: once (M + 1)
14266 (@value{GDBP})
14267 @end smallexample
14268
14269 In the example above, note that @code{macro expand-once} expands only
14270 the macro invocation explicit in the original text --- the invocation of
14271 @code{ADD} --- but does not expand the invocation of the macro @code{M},
14272 which was introduced by @code{ADD}.
14273
14274 Once the program is running, @value{GDBN} uses the macro definitions in
14275 force at the source line of the current stack frame:
14276
14277 @smallexample
14278 (@value{GDBP}) break main
14279 Breakpoint 1 at 0x8048370: file sample.c, line 10.
14280 (@value{GDBP}) run
14281 Starting program: /home/jimb/gdb/macros/play/sample
14282
14283 Breakpoint 1, main () at sample.c:10
14284 10 printf ("Hello, world!\n");
14285 (@value{GDBP})
14286 @end smallexample
14287
14288 At line 10, the definition of the macro @code{N} at line 9 is in force:
14289
14290 @smallexample
14291 (@value{GDBP}) info macro N
14292 Defined at /home/jimb/gdb/macros/play/sample.c:9
14293 #define N 28
14294 (@value{GDBP}) macro expand N Q M
14295 expands to: 28 < 42
14296 (@value{GDBP}) print N Q M
14297 $1 = 1
14298 (@value{GDBP})
14299 @end smallexample
14300
14301 As we step over directives that remove @code{N}'s definition, and then
14302 give it a new definition, @value{GDBN} finds the definition (or lack
14303 thereof) in force at each point:
14304
14305 @smallexample
14306 (@value{GDBP}) next
14307 Hello, world!
14308 12 printf ("We're so creative.\n");
14309 (@value{GDBP}) info macro N
14310 The symbol `N' has no definition as a C/C++ preprocessor macro
14311 at /home/jimb/gdb/macros/play/sample.c:12
14312 (@value{GDBP}) next
14313 We're so creative.
14314 14 printf ("Goodbye, world!\n");
14315 (@value{GDBP}) info macro N
14316 Defined at /home/jimb/gdb/macros/play/sample.c:13
14317 #define N 1729
14318 (@value{GDBP}) macro expand N Q M
14319 expands to: 1729 < 42
14320 (@value{GDBP}) print N Q M
14321 $2 = 0
14322 (@value{GDBP})
14323 @end smallexample
14324
14325 In addition to source files, macros can be defined on the compilation command
14326 line using the @option{-D@var{name}=@var{value}} syntax. For macros defined in
14327 such a way, @value{GDBN} displays the location of their definition as line zero
14328 of the source file submitted to the compiler.
14329
14330 @smallexample
14331 (@value{GDBP}) info macro __STDC__
14332 Defined at /home/jimb/gdb/macros/play/sample.c:0
14333 -D__STDC__=1
14334 (@value{GDBP})
14335 @end smallexample
14336
14337
14338 @node Tracepoints
14339 @chapter Tracepoints
14340 @c This chapter is based on the documentation written by Michael
14341 @c Snyder, David Taylor, Jim Blandy, and Elena Zannoni.
14342
14343 @cindex tracepoints
14344 In some applications, it is not feasible for the debugger to interrupt
14345 the program's execution long enough for the developer to learn
14346 anything helpful about its behavior. If the program's correctness
14347 depends on its real-time behavior, delays introduced by a debugger
14348 might cause the program to change its behavior drastically, or perhaps
14349 fail, even when the code itself is correct. It is useful to be able
14350 to observe the program's behavior without interrupting it.
14351
14352 Using @value{GDBN}'s @code{trace} and @code{collect} commands, you can
14353 specify locations in the program, called @dfn{tracepoints}, and
14354 arbitrary expressions to evaluate when those tracepoints are reached.
14355 Later, using the @code{tfind} command, you can examine the values
14356 those expressions had when the program hit the tracepoints. The
14357 expressions may also denote objects in memory---structures or arrays,
14358 for example---whose values @value{GDBN} should record; while visiting
14359 a particular tracepoint, you may inspect those objects as if they were
14360 in memory at that moment. However, because @value{GDBN} records these
14361 values without interacting with you, it can do so quickly and
14362 unobtrusively, hopefully not disturbing the program's behavior.
14363
14364 The tracepoint facility is currently available only for remote
14365 targets. @xref{Targets}. In addition, your remote target must know
14366 how to collect trace data. This functionality is implemented in the
14367 remote stub; however, none of the stubs distributed with @value{GDBN}
14368 support tracepoints as of this writing. The format of the remote
14369 packets used to implement tracepoints are described in @ref{Tracepoint
14370 Packets}.
14371
14372 It is also possible to get trace data from a file, in a manner reminiscent
14373 of corefiles; you specify the filename, and use @code{tfind} to search
14374 through the file. @xref{Trace Files}, for more details.
14375
14376 This chapter describes the tracepoint commands and features.
14377
14378 @menu
14379 * Set Tracepoints::
14380 * Analyze Collected Data::
14381 * Tracepoint Variables::
14382 * Trace Files::
14383 @end menu
14384
14385 @node Set Tracepoints
14386 @section Commands to Set Tracepoints
14387
14388 Before running such a @dfn{trace experiment}, an arbitrary number of
14389 tracepoints can be set. A tracepoint is actually a special type of
14390 breakpoint (@pxref{Set Breaks}), so you can manipulate it using
14391 standard breakpoint commands. For instance, as with breakpoints,
14392 tracepoint numbers are successive integers starting from one, and many
14393 of the commands associated with tracepoints take the tracepoint number
14394 as their argument, to identify which tracepoint to work on.
14395
14396 For each tracepoint, you can specify, in advance, some arbitrary set
14397 of data that you want the target to collect in the trace buffer when
14398 it hits that tracepoint. The collected data can include registers,
14399 local variables, or global data. Later, you can use @value{GDBN}
14400 commands to examine the values these data had at the time the
14401 tracepoint was hit.
14402
14403 Tracepoints do not support every breakpoint feature. Ignore counts on
14404 tracepoints have no effect, and tracepoints cannot run @value{GDBN}
14405 commands when they are hit. Tracepoints may not be thread-specific
14406 either.
14407
14408 @cindex fast tracepoints
14409 Some targets may support @dfn{fast tracepoints}, which are inserted in
14410 a different way (such as with a jump instead of a trap), that is
14411 faster but possibly restricted in where they may be installed.
14412
14413 @cindex static tracepoints
14414 @cindex markers, static tracepoints
14415 @cindex probing markers, static tracepoints
14416 Regular and fast tracepoints are dynamic tracing facilities, meaning
14417 that they can be used to insert tracepoints at (almost) any location
14418 in the target. Some targets may also support controlling @dfn{static
14419 tracepoints} from @value{GDBN}. With static tracing, a set of
14420 instrumentation points, also known as @dfn{markers}, are embedded in
14421 the target program, and can be activated or deactivated by name or
14422 address. These are usually placed at locations which facilitate
14423 investigating what the target is actually doing. @value{GDBN}'s
14424 support for static tracing includes being able to list instrumentation
14425 points, and attach them with @value{GDBN} defined high level
14426 tracepoints that expose the whole range of convenience of
14427 @value{GDBN}'s tracepoints support. Namely, support for collecting
14428 registers values and values of global or local (to the instrumentation
14429 point) variables; tracepoint conditions and trace state variables.
14430 The act of installing a @value{GDBN} static tracepoint on an
14431 instrumentation point, or marker, is referred to as @dfn{probing} a
14432 static tracepoint marker.
14433
14434 @code{gdbserver} supports tracepoints on some target systems.
14435 @xref{Server,,Tracepoints support in @code{gdbserver}}.
14436
14437 This section describes commands to set tracepoints and associated
14438 conditions and actions.
14439
14440 @menu
14441 * Create and Delete Tracepoints::
14442 * Enable and Disable Tracepoints::
14443 * Tracepoint Passcounts::
14444 * Tracepoint Conditions::
14445 * Trace State Variables::
14446 * Tracepoint Actions::
14447 * Listing Tracepoints::
14448 * Listing Static Tracepoint Markers::
14449 * Starting and Stopping Trace Experiments::
14450 * Tracepoint Restrictions::
14451 @end menu
14452
14453 @node Create and Delete Tracepoints
14454 @subsection Create and Delete Tracepoints
14455
14456 @table @code
14457 @cindex set tracepoint
14458 @kindex trace
14459 @item trace @var{location}
14460 The @code{trace} command is very similar to the @code{break} command.
14461 Its argument @var{location} can be any valid location.
14462 @xref{Specify Location}. The @code{trace} command defines a tracepoint,
14463 which is a point in the target program where the debugger will briefly stop,
14464 collect some data, and then allow the program to continue. Setting a tracepoint
14465 or changing its actions takes effect immediately if the remote stub
14466 supports the @samp{InstallInTrace} feature (@pxref{install tracepoint
14467 in tracing}).
14468 If remote stub doesn't support the @samp{InstallInTrace} feature, all
14469 these changes don't take effect until the next @code{tstart}
14470 command, and once a trace experiment is running, further changes will
14471 not have any effect until the next trace experiment starts. In addition,
14472 @value{GDBN} supports @dfn{pending tracepoints}---tracepoints whose
14473 address is not yet resolved. (This is similar to pending breakpoints.)
14474 Pending tracepoints are not downloaded to the target and not installed
14475 until they are resolved. The resolution of pending tracepoints requires
14476 @value{GDBN} support---when debugging with the remote target, and
14477 @value{GDBN} disconnects from the remote stub (@pxref{disconnected
14478 tracing}), pending tracepoints can not be resolved (and downloaded to
14479 the remote stub) while @value{GDBN} is disconnected.
14480
14481 Here are some examples of using the @code{trace} command:
14482
14483 @smallexample
14484 (@value{GDBP}) @b{trace foo.c:121} // a source file and line number
14485
14486 (@value{GDBP}) @b{trace +2} // 2 lines forward
14487
14488 (@value{GDBP}) @b{trace my_function} // first source line of function
14489
14490 (@value{GDBP}) @b{trace *my_function} // EXACT start address of function
14491
14492 (@value{GDBP}) @b{trace *0x2117c4} // an address
14493 @end smallexample
14494
14495 @noindent
14496 You can abbreviate @code{trace} as @code{tr}.
14497
14498 @item trace @var{location} if @var{cond}
14499 Set a tracepoint with condition @var{cond}; evaluate the expression
14500 @var{cond} each time the tracepoint is reached, and collect data only
14501 if the value is nonzero---that is, if @var{cond} evaluates as true.
14502 @xref{Tracepoint Conditions, ,Tracepoint Conditions}, for more
14503 information on tracepoint conditions.
14504
14505 @item ftrace @var{location} [ if @var{cond} ]
14506 @cindex set fast tracepoint
14507 @cindex fast tracepoints, setting
14508 @kindex ftrace
14509 The @code{ftrace} command sets a fast tracepoint. For targets that
14510 support them, fast tracepoints will use a more efficient but possibly
14511 less general technique to trigger data collection, such as a jump
14512 instruction instead of a trap, or some sort of hardware support. It
14513 may not be possible to create a fast tracepoint at the desired
14514 location, in which case the command will exit with an explanatory
14515 message.
14516
14517 @value{GDBN} handles arguments to @code{ftrace} exactly as for
14518 @code{trace}.
14519
14520 On 32-bit x86-architecture systems, fast tracepoints normally need to
14521 be placed at an instruction that is 5 bytes or longer, but can be
14522 placed at 4-byte instructions if the low 64K of memory of the target
14523 program is available to install trampolines. Some Unix-type systems,
14524 such as @sc{gnu}/Linux, exclude low addresses from the program's
14525 address space; but for instance with the Linux kernel it is possible
14526 to let @value{GDBN} use this area by doing a @command{sysctl} command
14527 to set the @code{mmap_min_addr} kernel parameter, as in
14528
14529 @example
14530 sudo sysctl -w vm.mmap_min_addr=32768
14531 @end example
14532
14533 @noindent
14534 which sets the low address to 32K, which leaves plenty of room for
14535 trampolines. The minimum address should be set to a page boundary.
14536
14537 @item strace @var{location} [ if @var{cond} ]
14538 @cindex set static tracepoint
14539 @cindex static tracepoints, setting
14540 @cindex probe static tracepoint marker
14541 @kindex strace
14542 The @code{strace} command sets a static tracepoint. For targets that
14543 support it, setting a static tracepoint probes a static
14544 instrumentation point, or marker, found at @var{location}. It may not
14545 be possible to set a static tracepoint at the desired location, in
14546 which case the command will exit with an explanatory message.
14547
14548 @value{GDBN} handles arguments to @code{strace} exactly as for
14549 @code{trace}, with the addition that the user can also specify
14550 @code{-m @var{marker}} as @var{location}. This probes the marker
14551 identified by the @var{marker} string identifier. This identifier
14552 depends on the static tracepoint backend library your program is
14553 using. You can find all the marker identifiers in the @samp{ID} field
14554 of the @code{info static-tracepoint-markers} command output.
14555 @xref{Listing Static Tracepoint Markers,,Listing Static Tracepoint
14556 Markers}. For example, in the following small program using the UST
14557 tracing engine:
14558
14559 @smallexample
14560 main ()
14561 @{
14562 trace_mark(ust, bar33, "str %s", "FOOBAZ");
14563 @}
14564 @end smallexample
14565
14566 @noindent
14567 the marker id is composed of joining the first two arguments to the
14568 @code{trace_mark} call with a slash, which translates to:
14569
14570 @smallexample
14571 (@value{GDBP}) info static-tracepoint-markers
14572 Cnt Enb ID Address What
14573 1 n ust/bar33 0x0000000000400ddc in main at stexample.c:22
14574 Data: "str %s"
14575 [etc...]
14576 @end smallexample
14577
14578 @noindent
14579 so you may probe the marker above with:
14580
14581 @smallexample
14582 (@value{GDBP}) strace -m ust/bar33
14583 @end smallexample
14584
14585 Static tracepoints accept an extra collect action --- @code{collect
14586 $_sdata}. This collects arbitrary user data passed in the probe point
14587 call to the tracing library. In the UST example above, you'll see
14588 that the third argument to @code{trace_mark} is a printf-like format
14589 string. The user data is then the result of running that formatting
14590 string against the following arguments. Note that @code{info
14591 static-tracepoint-markers} command output lists that format string in
14592 the @samp{Data:} field.
14593
14594 You can inspect this data when analyzing the trace buffer, by printing
14595 the $_sdata variable like any other variable available to
14596 @value{GDBN}. @xref{Tracepoint Actions,,Tracepoint Action Lists}.
14597
14598 @vindex $tpnum
14599 @cindex last tracepoint number
14600 @cindex recent tracepoint number
14601 @cindex tracepoint number
14602 The convenience variable @code{$tpnum} records the tracepoint number
14603 of the most recently set tracepoint.
14604
14605 @kindex delete tracepoint
14606 @cindex tracepoint deletion
14607 @item delete tracepoint @r{[}@var{num}@r{]}
14608 Permanently delete one or more tracepoints. With no argument, the
14609 default is to delete all tracepoints. Note that the regular
14610 @code{delete} command can remove tracepoints also.
14611
14612 Examples:
14613
14614 @smallexample
14615 (@value{GDBP}) @b{delete trace 1 2 3} // remove three tracepoints
14616
14617 (@value{GDBP}) @b{delete trace} // remove all tracepoints
14618 @end smallexample
14619
14620 @noindent
14621 You can abbreviate this command as @code{del tr}.
14622 @end table
14623
14624 @node Enable and Disable Tracepoints
14625 @subsection Enable and Disable Tracepoints
14626
14627 These commands are deprecated; they are equivalent to plain @code{disable} and @code{enable}.
14628
14629 @table @code
14630 @kindex disable tracepoint
14631 @item disable tracepoint @r{[}@var{num}@r{]}
14632 Disable tracepoint @var{num}, or all tracepoints if no argument
14633 @var{num} is given. A disabled tracepoint will have no effect during
14634 a trace experiment, but it is not forgotten. You can re-enable
14635 a disabled tracepoint using the @code{enable tracepoint} command.
14636 If the command is issued during a trace experiment and the debug target
14637 has support for disabling tracepoints during a trace experiment, then the
14638 change will be effective immediately. Otherwise, it will be applied to the
14639 next trace experiment.
14640
14641 @kindex enable tracepoint
14642 @item enable tracepoint @r{[}@var{num}@r{]}
14643 Enable tracepoint @var{num}, or all tracepoints. If this command is
14644 issued during a trace experiment and the debug target supports enabling
14645 tracepoints during a trace experiment, then the enabled tracepoints will
14646 become effective immediately. Otherwise, they will become effective the
14647 next time a trace experiment is run.
14648 @end table
14649
14650 @node Tracepoint Passcounts
14651 @subsection Tracepoint Passcounts
14652
14653 @table @code
14654 @kindex passcount
14655 @cindex tracepoint pass count
14656 @item passcount @r{[}@var{n} @r{[}@var{num}@r{]]}
14657 Set the @dfn{passcount} of a tracepoint. The passcount is a way to
14658 automatically stop a trace experiment. If a tracepoint's passcount is
14659 @var{n}, then the trace experiment will be automatically stopped on
14660 the @var{n}'th time that tracepoint is hit. If the tracepoint number
14661 @var{num} is not specified, the @code{passcount} command sets the
14662 passcount of the most recently defined tracepoint. If no passcount is
14663 given, the trace experiment will run until stopped explicitly by the
14664 user.
14665
14666 Examples:
14667
14668 @smallexample
14669 (@value{GDBP}) @b{passcount 5 2} // Stop on the 5th execution of
14670 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// tracepoint 2}
14671
14672 (@value{GDBP}) @b{passcount 12} // Stop on the 12th execution of the
14673 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// most recently defined tracepoint.}
14674 (@value{GDBP}) @b{trace foo}
14675 (@value{GDBP}) @b{pass 3}
14676 (@value{GDBP}) @b{trace bar}
14677 (@value{GDBP}) @b{pass 2}
14678 (@value{GDBP}) @b{trace baz}
14679 (@value{GDBP}) @b{pass 1} // Stop tracing when foo has been
14680 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// executed 3 times OR when bar has}
14681 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// been executed 2 times}
14682 @exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// OR when baz has been executed 1 time.}
14683 @end smallexample
14684 @end table
14685
14686 @node Tracepoint Conditions
14687 @subsection Tracepoint Conditions
14688 @cindex conditional tracepoints
14689 @cindex tracepoint conditions
14690
14691 The simplest sort of tracepoint collects data every time your program
14692 reaches a specified place. You can also specify a @dfn{condition} for
14693 a tracepoint. A condition is just a Boolean expression in your
14694 programming language (@pxref{Expressions, ,Expressions}). A
14695 tracepoint with a condition evaluates the expression each time your
14696 program reaches it, and data collection happens only if the condition
14697 is true.
14698
14699 Tracepoint conditions can be specified when a tracepoint is set, by
14700 using @samp{if} in the arguments to the @code{trace} command.
14701 @xref{Create and Delete Tracepoints, ,Setting Tracepoints}. They can
14702 also be set or changed at any time with the @code{condition} command,
14703 just as with breakpoints.
14704
14705 Unlike breakpoint conditions, @value{GDBN} does not actually evaluate
14706 the conditional expression itself. Instead, @value{GDBN} encodes the
14707 expression into an agent expression (@pxref{Agent Expressions})
14708 suitable for execution on the target, independently of @value{GDBN}.
14709 Global variables become raw memory locations, locals become stack
14710 accesses, and so forth.
14711
14712 For instance, suppose you have a function that is usually called
14713 frequently, but should not be called after an error has occurred. You
14714 could use the following tracepoint command to collect data about calls
14715 of that function that happen while the error code is propagating
14716 through the program; an unconditional tracepoint could end up
14717 collecting thousands of useless trace frames that you would have to
14718 search through.
14719
14720 @smallexample
14721 (@value{GDBP}) @kbd{trace normal_operation if errcode > 0}
14722 @end smallexample
14723
14724 @node Trace State Variables
14725 @subsection Trace State Variables
14726 @cindex trace state variables
14727
14728 A @dfn{trace state variable} is a special type of variable that is
14729 created and managed by target-side code. The syntax is the same as
14730 that for GDB's convenience variables (a string prefixed with ``$''),
14731 but they are stored on the target. They must be created explicitly,
14732 using a @code{tvariable} command. They are always 64-bit signed
14733 integers.
14734
14735 Trace state variables are remembered by @value{GDBN}, and downloaded
14736 to the target along with tracepoint information when the trace
14737 experiment starts. There are no intrinsic limits on the number of
14738 trace state variables, beyond memory limitations of the target.
14739
14740 @cindex convenience variables, and trace state variables
14741 Although trace state variables are managed by the target, you can use
14742 them in print commands and expressions as if they were convenience
14743 variables; @value{GDBN} will get the current value from the target
14744 while the trace experiment is running. Trace state variables share
14745 the same namespace as other ``$'' variables, which means that you
14746 cannot have trace state variables with names like @code{$23} or
14747 @code{$pc}, nor can you have a trace state variable and a convenience
14748 variable with the same name.
14749
14750 @table @code
14751
14752 @item tvariable $@var{name} [ = @var{expression} ]
14753 @kindex tvariable
14754 The @code{tvariable} command creates a new trace state variable named
14755 @code{$@var{name}}, and optionally gives it an initial value of
14756 @var{expression}. The @var{expression} is evaluated when this command is
14757 entered; the result will be converted to an integer if possible,
14758 otherwise @value{GDBN} will report an error. A subsequent
14759 @code{tvariable} command specifying the same name does not create a
14760 variable, but instead assigns the supplied initial value to the
14761 existing variable of that name, overwriting any previous initial
14762 value. The default initial value is 0.
14763
14764 @item info tvariables
14765 @kindex info tvariables
14766 List all the trace state variables along with their initial values.
14767 Their current values may also be displayed, if the trace experiment is
14768 currently running.
14769
14770 @item delete tvariable @r{[} $@var{name} @dots{} @r{]}
14771 @kindex delete tvariable
14772 Delete the given trace state variables, or all of them if no arguments
14773 are specified.
14774
14775 @end table
14776
14777 @node Tracepoint Actions
14778 @subsection Tracepoint Action Lists
14779
14780 @table @code
14781 @kindex actions
14782 @cindex tracepoint actions
14783 @item actions @r{[}@var{num}@r{]}
14784 This command will prompt for a list of actions to be taken when the
14785 tracepoint is hit. If the tracepoint number @var{num} is not
14786 specified, this command sets the actions for the one that was most
14787 recently defined (so that you can define a tracepoint and then say
14788 @code{actions} without bothering about its number). You specify the
14789 actions themselves on the following lines, one action at a time, and
14790 terminate the actions list with a line containing just @code{end}. So
14791 far, the only defined actions are @code{collect}, @code{teval}, and
14792 @code{while-stepping}.
14793
14794 @code{actions} is actually equivalent to @code{commands} (@pxref{Break
14795 Commands, ,Breakpoint Command Lists}), except that only the defined
14796 actions are allowed; any other @value{GDBN} command is rejected.
14797
14798 @cindex remove actions from a tracepoint
14799 To remove all actions from a tracepoint, type @samp{actions @var{num}}
14800 and follow it immediately with @samp{end}.
14801
14802 @smallexample
14803 (@value{GDBP}) @b{collect @var{data}} // collect some data
14804
14805 (@value{GDBP}) @b{while-stepping 5} // single-step 5 times, collect data
14806
14807 (@value{GDBP}) @b{end} // signals the end of actions.
14808 @end smallexample
14809
14810 In the following example, the action list begins with @code{collect}
14811 commands indicating the things to be collected when the tracepoint is
14812 hit. Then, in order to single-step and collect additional data
14813 following the tracepoint, a @code{while-stepping} command is used,
14814 followed by the list of things to be collected after each step in a
14815 sequence of single steps. The @code{while-stepping} command is
14816 terminated by its own separate @code{end} command. Lastly, the action
14817 list is terminated by an @code{end} command.
14818
14819 @smallexample
14820 (@value{GDBP}) @b{trace foo}
14821 (@value{GDBP}) @b{actions}
14822 Enter actions for tracepoint 1, one per line:
14823 > collect bar,baz
14824 > collect $regs
14825 > while-stepping 12
14826 > collect $pc, arr[i]
14827 > end
14828 end
14829 @end smallexample
14830
14831 @kindex collect @r{(tracepoints)}
14832 @item collect@r{[}/@var{mods}@r{]} @var{expr1}, @var{expr2}, @dots{}
14833 Collect values of the given expressions when the tracepoint is hit.
14834 This command accepts a comma-separated list of any valid expressions.
14835 In addition to global, static, or local variables, the following
14836 special arguments are supported:
14837
14838 @table @code
14839 @item $regs
14840 Collect all registers.
14841
14842 @item $args
14843 Collect all function arguments.
14844
14845 @item $locals
14846 Collect all local variables.
14847
14848 @item $_ret
14849 Collect the return address. This is helpful if you want to see more
14850 of a backtrace.
14851
14852 @emph{Note:} The return address location can not always be reliably
14853 determined up front, and the wrong address / registers may end up
14854 collected instead. On some architectures the reliability is higher
14855 for tracepoints at function entry, while on others it's the opposite.
14856 When this happens, backtracing will stop because the return address is
14857 found unavailable (unless another collect rule happened to match it).
14858
14859 @item $_probe_argc
14860 Collects the number of arguments from the static probe at which the
14861 tracepoint is located.
14862 @xref{Static Probe Points}.
14863
14864 @item $_probe_arg@var{n}
14865 @var{n} is an integer between 0 and 11. Collects the @var{n}th argument
14866 from the static probe at which the tracepoint is located.
14867 @xref{Static Probe Points}.
14868
14869 @item $_sdata
14870 @vindex $_sdata@r{, collect}
14871 Collect static tracepoint marker specific data. Only available for
14872 static tracepoints. @xref{Tracepoint Actions,,Tracepoint Action
14873 Lists}. On the UST static tracepoints library backend, an
14874 instrumentation point resembles a @code{printf} function call. The
14875 tracing library is able to collect user specified data formatted to a
14876 character string using the format provided by the programmer that
14877 instrumented the program. Other backends have similar mechanisms.
14878 Here's an example of a UST marker call:
14879
14880 @smallexample
14881 const char master_name[] = "$your_name";
14882 trace_mark(channel1, marker1, "hello %s", master_name)
14883 @end smallexample
14884
14885 In this case, collecting @code{$_sdata} collects the string
14886 @samp{hello $yourname}. When analyzing the trace buffer, you can
14887 inspect @samp{$_sdata} like any other variable available to
14888 @value{GDBN}.
14889 @end table
14890
14891 You can give several consecutive @code{collect} commands, each one
14892 with a single argument, or one @code{collect} command with several
14893 arguments separated by commas; the effect is the same.
14894
14895 The optional @var{mods} changes the usual handling of the arguments.
14896 @code{s} requests that pointers to chars be handled as strings, in
14897 particular collecting the contents of the memory being pointed at, up
14898 to the first zero. The upper bound is by default the value of the
14899 @code{print elements} variable; if @code{s} is followed by a decimal
14900 number, that is the upper bound instead. So for instance
14901 @samp{collect/s25 mystr} collects as many as 25 characters at
14902 @samp{mystr}.
14903
14904 The command @code{info scope} (@pxref{Symbols, info scope}) is
14905 particularly useful for figuring out what data to collect.
14906
14907 @kindex teval @r{(tracepoints)}
14908 @item teval @var{expr1}, @var{expr2}, @dots{}
14909 Evaluate the given expressions when the tracepoint is hit. This
14910 command accepts a comma-separated list of expressions. The results
14911 are discarded, so this is mainly useful for assigning values to trace
14912 state variables (@pxref{Trace State Variables}) without adding those
14913 values to the trace buffer, as would be the case if the @code{collect}
14914 action were used.
14915
14916 @kindex while-stepping @r{(tracepoints)}
14917 @item while-stepping @var{n}
14918 Perform @var{n} single-step instruction traces after the tracepoint,
14919 collecting new data after each step. The @code{while-stepping}
14920 command is followed by the list of what to collect while stepping
14921 (followed by its own @code{end} command):
14922
14923 @smallexample
14924 > while-stepping 12
14925 > collect $regs, myglobal
14926 > end
14927 >
14928 @end smallexample
14929
14930 @noindent
14931 Note that @code{$pc} is not automatically collected by
14932 @code{while-stepping}; you need to explicitly collect that register if
14933 you need it. You may abbreviate @code{while-stepping} as @code{ws} or
14934 @code{stepping}.
14935
14936 @item set default-collect @var{expr1}, @var{expr2}, @dots{}
14937 @kindex set default-collect
14938 @cindex default collection action
14939 This variable is a list of expressions to collect at each tracepoint
14940 hit. It is effectively an additional @code{collect} action prepended
14941 to every tracepoint action list. The expressions are parsed
14942 individually for each tracepoint, so for instance a variable named
14943 @code{xyz} may be interpreted as a global for one tracepoint, and a
14944 local for another, as appropriate to the tracepoint's location.
14945
14946 @item show default-collect
14947 @kindex show default-collect
14948 Show the list of expressions that are collected by default at each
14949 tracepoint hit.
14950
14951 @end table
14952
14953 @node Listing Tracepoints
14954 @subsection Listing Tracepoints
14955
14956 @table @code
14957 @kindex info tracepoints @r{[}@var{n}@dots{}@r{]}
14958 @kindex info tp @r{[}@var{n}@dots{}@r{]}
14959 @cindex information about tracepoints
14960 @item info tracepoints @r{[}@var{num}@dots{}@r{]}
14961 Display information about the tracepoint @var{num}. If you don't
14962 specify a tracepoint number, displays information about all the
14963 tracepoints defined so far. The format is similar to that used for
14964 @code{info breakpoints}; in fact, @code{info tracepoints} is the same
14965 command, simply restricting itself to tracepoints.
14966
14967 A tracepoint's listing may include additional information specific to
14968 tracing:
14969
14970 @itemize @bullet
14971 @item
14972 its passcount as given by the @code{passcount @var{n}} command
14973
14974 @item
14975 the state about installed on target of each location
14976 @end itemize
14977
14978 @smallexample
14979 (@value{GDBP}) @b{info trace}
14980 Num Type Disp Enb Address What
14981 1 tracepoint keep y 0x0804ab57 in foo() at main.cxx:7
14982 while-stepping 20
14983 collect globfoo, $regs
14984 end
14985 collect globfoo2
14986 end
14987 pass count 1200
14988 2 tracepoint keep y <MULTIPLE>
14989 collect $eip
14990 2.1 y 0x0804859c in func4 at change-loc.h:35
14991 installed on target
14992 2.2 y 0xb7ffc480 in func4 at change-loc.h:35
14993 installed on target
14994 2.3 y <PENDING> set_tracepoint
14995 3 tracepoint keep y 0x080485b1 in foo at change-loc.c:29
14996 not installed on target
14997 (@value{GDBP})
14998 @end smallexample
14999
15000 @noindent
15001 This command can be abbreviated @code{info tp}.
15002 @end table
15003
15004 @node Listing Static Tracepoint Markers
15005 @subsection Listing Static Tracepoint Markers
15006
15007 @table @code
15008 @kindex info static-tracepoint-markers
15009 @cindex information about static tracepoint markers
15010 @item info static-tracepoint-markers
15011 Display information about all static tracepoint markers defined in the
15012 program.
15013
15014 For each marker, the following columns are printed:
15015
15016 @table @emph
15017 @item Count
15018 An incrementing counter, output to help readability. This is not a
15019 stable identifier.
15020 @item ID
15021 The marker ID, as reported by the target.
15022 @item Enabled or Disabled
15023 Probed markers are tagged with @samp{y}. @samp{n} identifies marks
15024 that are not enabled.
15025 @item Address
15026 Where the marker is in your program, as a memory address.
15027 @item What
15028 Where the marker is in the source for your program, as a file and line
15029 number. If the debug information included in the program does not
15030 allow @value{GDBN} to locate the source of the marker, this column
15031 will be left blank.
15032 @end table
15033
15034 @noindent
15035 In addition, the following information may be printed for each marker:
15036
15037 @table @emph
15038 @item Data
15039 User data passed to the tracing library by the marker call. In the
15040 UST backend, this is the format string passed as argument to the
15041 marker call.
15042 @item Static tracepoints probing the marker
15043 The list of static tracepoints attached to the marker.
15044 @end table
15045
15046 @smallexample
15047 (@value{GDBP}) info static-tracepoint-markers
15048 Cnt ID Enb Address What
15049 1 ust/bar2 y 0x0000000000400e1a in main at stexample.c:25
15050 Data: number1 %d number2 %d
15051 Probed by static tracepoints: #2
15052 2 ust/bar33 n 0x0000000000400c87 in main at stexample.c:24
15053 Data: str %s
15054 (@value{GDBP})
15055 @end smallexample
15056 @end table
15057
15058 @node Starting and Stopping Trace Experiments
15059 @subsection Starting and Stopping Trace Experiments
15060
15061 @table @code
15062 @kindex tstart [ @var{notes} ]
15063 @cindex start a new trace experiment
15064 @cindex collected data discarded
15065 @item tstart
15066 This command starts the trace experiment, and begins collecting data.
15067 It has the side effect of discarding all the data collected in the
15068 trace buffer during the previous trace experiment. If any arguments
15069 are supplied, they are taken as a note and stored with the trace
15070 experiment's state. The notes may be arbitrary text, and are
15071 especially useful with disconnected tracing in a multi-user context;
15072 the notes can explain what the trace is doing, supply user contact
15073 information, and so forth.
15074
15075 @kindex tstop [ @var{notes} ]
15076 @cindex stop a running trace experiment
15077 @item tstop
15078 This command stops the trace experiment. If any arguments are
15079 supplied, they are recorded with the experiment as a note. This is
15080 useful if you are stopping a trace started by someone else, for
15081 instance if the trace is interfering with the system's behavior and
15082 needs to be stopped quickly.
15083
15084 @strong{Note}: a trace experiment and data collection may stop
15085 automatically if any tracepoint's passcount is reached
15086 (@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
15087
15088 @kindex tstatus
15089 @cindex status of trace data collection
15090 @cindex trace experiment, status of
15091 @item tstatus
15092 This command displays the status of the current trace data
15093 collection.
15094 @end table
15095
15096 Here is an example of the commands we described so far:
15097
15098 @smallexample
15099 (@value{GDBP}) @b{trace gdb_c_test}
15100 (@value{GDBP}) @b{actions}
15101 Enter actions for tracepoint #1, one per line.
15102 > collect $regs,$locals,$args
15103 > while-stepping 11
15104 > collect $regs
15105 > end
15106 > end
15107 (@value{GDBP}) @b{tstart}
15108 [time passes @dots{}]
15109 (@value{GDBP}) @b{tstop}
15110 @end smallexample
15111
15112 @anchor{disconnected tracing}
15113 @cindex disconnected tracing
15114 You can choose to continue running the trace experiment even if
15115 @value{GDBN} disconnects from the target, voluntarily or
15116 involuntarily. For commands such as @code{detach}, the debugger will
15117 ask what you want to do with the trace. But for unexpected
15118 terminations (@value{GDBN} crash, network outage), it would be
15119 unfortunate to lose hard-won trace data, so the variable
15120 @code{disconnected-tracing} lets you decide whether the trace should
15121 continue running without @value{GDBN}.
15122
15123 @table @code
15124 @item set disconnected-tracing on
15125 @itemx set disconnected-tracing off
15126 @kindex set disconnected-tracing
15127 Choose whether a tracing run should continue to run if @value{GDBN}
15128 has disconnected from the target. Note that @code{detach} or
15129 @code{quit} will ask you directly what to do about a running trace no
15130 matter what this variable's setting, so the variable is mainly useful
15131 for handling unexpected situations, such as loss of the network.
15132
15133 @item show disconnected-tracing
15134 @kindex show disconnected-tracing
15135 Show the current choice for disconnected tracing.
15136
15137 @end table
15138
15139 When you reconnect to the target, the trace experiment may or may not
15140 still be running; it might have filled the trace buffer in the
15141 meantime, or stopped for one of the other reasons. If it is running,
15142 it will continue after reconnection.
15143
15144 Upon reconnection, the target will upload information about the
15145 tracepoints in effect. @value{GDBN} will then compare that
15146 information to the set of tracepoints currently defined, and attempt
15147 to match them up, allowing for the possibility that the numbers may
15148 have changed due to creation and deletion in the meantime. If one of
15149 the target's tracepoints does not match any in @value{GDBN}, the
15150 debugger will create a new tracepoint, so that you have a number with
15151 which to specify that tracepoint. This matching-up process is
15152 necessarily heuristic, and it may result in useless tracepoints being
15153 created; you may simply delete them if they are of no use.
15154
15155 @cindex circular trace buffer
15156 If your target agent supports a @dfn{circular trace buffer}, then you
15157 can run a trace experiment indefinitely without filling the trace
15158 buffer; when space runs out, the agent deletes already-collected trace
15159 frames, oldest first, until there is enough room to continue
15160 collecting. This is especially useful if your tracepoints are being
15161 hit too often, and your trace gets terminated prematurely because the
15162 buffer is full. To ask for a circular trace buffer, simply set
15163 @samp{circular-trace-buffer} to on. You can set this at any time,
15164 including during tracing; if the agent can do it, it will change
15165 buffer handling on the fly, otherwise it will not take effect until
15166 the next run.
15167
15168 @table @code
15169 @item set circular-trace-buffer on
15170 @itemx set circular-trace-buffer off
15171 @kindex set circular-trace-buffer
15172 Choose whether a tracing run should use a linear or circular buffer
15173 for trace data. A linear buffer will not lose any trace data, but may
15174 fill up prematurely, while a circular buffer will discard old trace
15175 data, but it will have always room for the latest tracepoint hits.
15176
15177 @item show circular-trace-buffer
15178 @kindex show circular-trace-buffer
15179 Show the current choice for the trace buffer. Note that this may not
15180 match the agent's current buffer handling, nor is it guaranteed to
15181 match the setting that might have been in effect during a past run,
15182 for instance if you are looking at frames from a trace file.
15183
15184 @end table
15185
15186 @table @code
15187 @item set trace-buffer-size @var{n}
15188 @itemx set trace-buffer-size unlimited
15189 @kindex set trace-buffer-size
15190 Request that the target use a trace buffer of @var{n} bytes. Not all
15191 targets will honor the request; they may have a compiled-in size for
15192 the trace buffer, or some other limitation. Set to a value of
15193 @code{unlimited} or @code{-1} to let the target use whatever size it
15194 likes. This is also the default.
15195
15196 @item show trace-buffer-size
15197 @kindex show trace-buffer-size
15198 Show the current requested size for the trace buffer. Note that this
15199 will only match the actual size if the target supports size-setting,
15200 and was able to handle the requested size. For instance, if the
15201 target can only change buffer size between runs, this variable will
15202 not reflect the change until the next run starts. Use @code{tstatus}
15203 to get a report of the actual buffer size.
15204 @end table
15205
15206 @table @code
15207 @item set trace-user @var{text}
15208 @kindex set trace-user
15209
15210 @item show trace-user
15211 @kindex show trace-user
15212
15213 @item set trace-notes @var{text}
15214 @kindex set trace-notes
15215 Set the trace run's notes.
15216
15217 @item show trace-notes
15218 @kindex show trace-notes
15219 Show the trace run's notes.
15220
15221 @item set trace-stop-notes @var{text}
15222 @kindex set trace-stop-notes
15223 Set the trace run's stop notes. The handling of the note is as for
15224 @code{tstop} arguments; the set command is convenient way to fix a
15225 stop note that is mistaken or incomplete.
15226
15227 @item show trace-stop-notes
15228 @kindex show trace-stop-notes
15229 Show the trace run's stop notes.
15230
15231 @end table
15232
15233 @node Tracepoint Restrictions
15234 @subsection Tracepoint Restrictions
15235
15236 @cindex tracepoint restrictions
15237 There are a number of restrictions on the use of tracepoints. As
15238 described above, tracepoint data gathering occurs on the target
15239 without interaction from @value{GDBN}. Thus the full capabilities of
15240 the debugger are not available during data gathering, and then at data
15241 examination time, you will be limited by only having what was
15242 collected. The following items describe some common problems, but it
15243 is not exhaustive, and you may run into additional difficulties not
15244 mentioned here.
15245
15246 @itemize @bullet
15247
15248 @item
15249 Tracepoint expressions are intended to gather objects (lvalues). Thus
15250 the full flexibility of GDB's expression evaluator is not available.
15251 You cannot call functions, cast objects to aggregate types, access
15252 convenience variables or modify values (except by assignment to trace
15253 state variables). Some language features may implicitly call
15254 functions (for instance Objective-C fields with accessors), and therefore
15255 cannot be collected either.
15256
15257 @item
15258 Collection of local variables, either individually or in bulk with
15259 @code{$locals} or @code{$args}, during @code{while-stepping} may
15260 behave erratically. The stepping action may enter a new scope (for
15261 instance by stepping into a function), or the location of the variable
15262 may change (for instance it is loaded into a register). The
15263 tracepoint data recorded uses the location information for the
15264 variables that is correct for the tracepoint location. When the
15265 tracepoint is created, it is not possible, in general, to determine
15266 where the steps of a @code{while-stepping} sequence will advance the
15267 program---particularly if a conditional branch is stepped.
15268
15269 @item
15270 Collection of an incompletely-initialized or partially-destroyed object
15271 may result in something that @value{GDBN} cannot display, or displays
15272 in a misleading way.
15273
15274 @item
15275 When @value{GDBN} displays a pointer to character it automatically
15276 dereferences the pointer to also display characters of the string
15277 being pointed to. However, collecting the pointer during tracing does
15278 not automatically collect the string. You need to explicitly
15279 dereference the pointer and provide size information if you want to
15280 collect not only the pointer, but the memory pointed to. For example,
15281 @code{*ptr@@50} can be used to collect the 50 element array pointed to
15282 by @code{ptr}.
15283
15284 @item
15285 It is not possible to collect a complete stack backtrace at a
15286 tracepoint. Instead, you may collect the registers and a few hundred
15287 bytes from the stack pointer with something like @code{*(unsigned char *)$esp@@300}
15288 (adjust to use the name of the actual stack pointer register on your
15289 target architecture, and the amount of stack you wish to capture).
15290 Then the @code{backtrace} command will show a partial backtrace when
15291 using a trace frame. The number of stack frames that can be examined
15292 depends on the sizes of the frames in the collected stack. Note that
15293 if you ask for a block so large that it goes past the bottom of the
15294 stack, the target agent may report an error trying to read from an
15295 invalid address.
15296
15297 @item
15298 If you do not collect registers at a tracepoint, @value{GDBN} can
15299 infer that the value of @code{$pc} must be the same as the address of
15300 the tracepoint and use that when you are looking at a trace frame
15301 for that tracepoint. However, this cannot work if the tracepoint has
15302 multiple locations (for instance if it was set in a function that was
15303 inlined), or if it has a @code{while-stepping} loop. In those cases
15304 @value{GDBN} will warn you that it can't infer @code{$pc}, and default
15305 it to zero.
15306
15307 @end itemize
15308
15309 @node Analyze Collected Data
15310 @section Using the Collected Data
15311
15312 After the tracepoint experiment ends, you use @value{GDBN} commands
15313 for examining the trace data. The basic idea is that each tracepoint
15314 collects a trace @dfn{snapshot} every time it is hit and another
15315 snapshot every time it single-steps. All these snapshots are
15316 consecutively numbered from zero and go into a buffer, and you can
15317 examine them later. The way you examine them is to @dfn{focus} on a
15318 specific trace snapshot. When the remote stub is focused on a trace
15319 snapshot, it will respond to all @value{GDBN} requests for memory and
15320 registers by reading from the buffer which belongs to that snapshot,
15321 rather than from @emph{real} memory or registers of the program being
15322 debugged. This means that @strong{all} @value{GDBN} commands
15323 (@code{print}, @code{info registers}, @code{backtrace}, etc.) will
15324 behave as if we were currently debugging the program state as it was
15325 when the tracepoint occurred. Any requests for data that are not in
15326 the buffer will fail.
15327
15328 @menu
15329 * tfind:: How to select a trace snapshot
15330 * tdump:: How to display all data for a snapshot
15331 * save tracepoints:: How to save tracepoints for a future run
15332 @end menu
15333
15334 @node tfind
15335 @subsection @code{tfind @var{n}}
15336
15337 @kindex tfind
15338 @cindex select trace snapshot
15339 @cindex find trace snapshot
15340 The basic command for selecting a trace snapshot from the buffer is
15341 @code{tfind @var{n}}, which finds trace snapshot number @var{n},
15342 counting from zero. If no argument @var{n} is given, the next
15343 snapshot is selected.
15344
15345 Here are the various forms of using the @code{tfind} command.
15346
15347 @table @code
15348 @item tfind start
15349 Find the first snapshot in the buffer. This is a synonym for
15350 @code{tfind 0} (since 0 is the number of the first snapshot).
15351
15352 @item tfind none
15353 Stop debugging trace snapshots, resume @emph{live} debugging.
15354
15355 @item tfind end
15356 Same as @samp{tfind none}.
15357
15358 @item tfind
15359 No argument means find the next trace snapshot or find the first
15360 one if no trace snapshot is selected.
15361
15362 @item tfind -
15363 Find the previous trace snapshot before the current one. This permits
15364 retracing earlier steps.
15365
15366 @item tfind tracepoint @var{num}
15367 Find the next snapshot associated with tracepoint @var{num}. Search
15368 proceeds forward from the last examined trace snapshot. If no
15369 argument @var{num} is given, it means find the next snapshot collected
15370 for the same tracepoint as the current snapshot.
15371
15372 @item tfind pc @var{addr}
15373 Find the next snapshot associated with the value @var{addr} of the
15374 program counter. Search proceeds forward from the last examined trace
15375 snapshot. If no argument @var{addr} is given, it means find the next
15376 snapshot with the same value of PC as the current snapshot.
15377
15378 @item tfind outside @var{addr1}, @var{addr2}
15379 Find the next snapshot whose PC is outside the given range of
15380 addresses (exclusive).
15381
15382 @item tfind range @var{addr1}, @var{addr2}
15383 Find the next snapshot whose PC is between @var{addr1} and
15384 @var{addr2} (inclusive).
15385
15386 @item tfind line @r{[}@var{file}:@r{]}@var{n}
15387 Find the next snapshot associated with the source line @var{n}. If
15388 the optional argument @var{file} is given, refer to line @var{n} in
15389 that source file. Search proceeds forward from the last examined
15390 trace snapshot. If no argument @var{n} is given, it means find the
15391 next line other than the one currently being examined; thus saying
15392 @code{tfind line} repeatedly can appear to have the same effect as
15393 stepping from line to line in a @emph{live} debugging session.
15394 @end table
15395
15396 The default arguments for the @code{tfind} commands are specifically
15397 designed to make it easy to scan through the trace buffer. For
15398 instance, @code{tfind} with no argument selects the next trace
15399 snapshot, and @code{tfind -} with no argument selects the previous
15400 trace snapshot. So, by giving one @code{tfind} command, and then
15401 simply hitting @key{RET} repeatedly you can examine all the trace
15402 snapshots in order. Or, by saying @code{tfind -} and then hitting
15403 @key{RET} repeatedly you can examine the snapshots in reverse order.
15404 The @code{tfind line} command with no argument selects the snapshot
15405 for the next source line executed. The @code{tfind pc} command with
15406 no argument selects the next snapshot with the same program counter
15407 (PC) as the current frame. The @code{tfind tracepoint} command with
15408 no argument selects the next trace snapshot collected by the same
15409 tracepoint as the current one.
15410
15411 In addition to letting you scan through the trace buffer manually,
15412 these commands make it easy to construct @value{GDBN} scripts that
15413 scan through the trace buffer and print out whatever collected data
15414 you are interested in. Thus, if we want to examine the PC, FP, and SP
15415 registers from each trace frame in the buffer, we can say this:
15416
15417 @smallexample
15418 (@value{GDBP}) @b{tfind start}
15419 (@value{GDBP}) @b{while ($trace_frame != -1)}
15420 > printf "Frame %d, PC = %08X, SP = %08X, FP = %08X\n", \
15421 $trace_frame, $pc, $sp, $fp
15422 > tfind
15423 > end
15424
15425 Frame 0, PC = 0020DC64, SP = 0030BF3C, FP = 0030BF44
15426 Frame 1, PC = 0020DC6C, SP = 0030BF38, FP = 0030BF44
15427 Frame 2, PC = 0020DC70, SP = 0030BF34, FP = 0030BF44
15428 Frame 3, PC = 0020DC74, SP = 0030BF30, FP = 0030BF44
15429 Frame 4, PC = 0020DC78, SP = 0030BF2C, FP = 0030BF44
15430 Frame 5, PC = 0020DC7C, SP = 0030BF28, FP = 0030BF44
15431 Frame 6, PC = 0020DC80, SP = 0030BF24, FP = 0030BF44
15432 Frame 7, PC = 0020DC84, SP = 0030BF20, FP = 0030BF44
15433 Frame 8, PC = 0020DC88, SP = 0030BF1C, FP = 0030BF44
15434 Frame 9, PC = 0020DC8E, SP = 0030BF18, FP = 0030BF44
15435 Frame 10, PC = 00203F6C, SP = 0030BE3C, FP = 0030BF14
15436 @end smallexample
15437
15438 Or, if we want to examine the variable @code{X} at each source line in
15439 the buffer:
15440
15441 @smallexample
15442 (@value{GDBP}) @b{tfind start}
15443 (@value{GDBP}) @b{while ($trace_frame != -1)}
15444 > printf "Frame %d, X == %d\n", $trace_frame, X
15445 > tfind line
15446 > end
15447
15448 Frame 0, X = 1
15449 Frame 7, X = 2
15450 Frame 13, X = 255
15451 @end smallexample
15452
15453 @node tdump
15454 @subsection @code{tdump}
15455 @kindex tdump
15456 @cindex dump all data collected at tracepoint
15457 @cindex tracepoint data, display
15458
15459 This command takes no arguments. It prints all the data collected at
15460 the current trace snapshot.
15461
15462 @smallexample
15463 (@value{GDBP}) @b{trace 444}
15464 (@value{GDBP}) @b{actions}
15465 Enter actions for tracepoint #2, one per line:
15466 > collect $regs, $locals, $args, gdb_long_test
15467 > end
15468
15469 (@value{GDBP}) @b{tstart}
15470
15471 (@value{GDBP}) @b{tfind line 444}
15472 #0 gdb_test (p1=0x11, p2=0x22, p3=0x33, p4=0x44, p5=0x55, p6=0x66)
15473 at gdb_test.c:444
15474 444 printp( "%s: arguments = 0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n", )
15475
15476 (@value{GDBP}) @b{tdump}
15477 Data collected at tracepoint 2, trace frame 1:
15478 d0 0xc4aa0085 -995491707
15479 d1 0x18 24
15480 d2 0x80 128
15481 d3 0x33 51
15482 d4 0x71aea3d 119204413
15483 d5 0x22 34
15484 d6 0xe0 224
15485 d7 0x380035 3670069
15486 a0 0x19e24a 1696330
15487 a1 0x3000668 50333288
15488 a2 0x100 256
15489 a3 0x322000 3284992
15490 a4 0x3000698 50333336
15491 a5 0x1ad3cc 1758156
15492 fp 0x30bf3c 0x30bf3c
15493 sp 0x30bf34 0x30bf34
15494 ps 0x0 0
15495 pc 0x20b2c8 0x20b2c8
15496 fpcontrol 0x0 0
15497 fpstatus 0x0 0
15498 fpiaddr 0x0 0
15499 p = 0x20e5b4 "gdb-test"
15500 p1 = (void *) 0x11
15501 p2 = (void *) 0x22
15502 p3 = (void *) 0x33
15503 p4 = (void *) 0x44
15504 p5 = (void *) 0x55
15505 p6 = (void *) 0x66
15506 gdb_long_test = 17 '\021'
15507
15508 (@value{GDBP})
15509 @end smallexample
15510
15511 @code{tdump} works by scanning the tracepoint's current collection
15512 actions and printing the value of each expression listed. So
15513 @code{tdump} can fail, if after a run, you change the tracepoint's
15514 actions to mention variables that were not collected during the run.
15515
15516 Also, for tracepoints with @code{while-stepping} loops, @code{tdump}
15517 uses the collected value of @code{$pc} to distinguish between trace
15518 frames that were collected at the tracepoint hit, and frames that were
15519 collected while stepping. This allows it to correctly choose whether
15520 to display the basic list of collections, or the collections from the
15521 body of the while-stepping loop. However, if @code{$pc} was not collected,
15522 then @code{tdump} will always attempt to dump using the basic collection
15523 list, and may fail if a while-stepping frame does not include all the
15524 same data that is collected at the tracepoint hit.
15525 @c This is getting pretty arcane, example would be good.
15526
15527 @node save tracepoints
15528 @subsection @code{save tracepoints @var{filename}}
15529 @kindex save tracepoints
15530 @kindex save-tracepoints
15531 @cindex save tracepoints for future sessions
15532
15533 This command saves all current tracepoint definitions together with
15534 their actions and passcounts, into a file @file{@var{filename}}
15535 suitable for use in a later debugging session. To read the saved
15536 tracepoint definitions, use the @code{source} command (@pxref{Command
15537 Files}). The @w{@code{save-tracepoints}} command is a deprecated
15538 alias for @w{@code{save tracepoints}}
15539
15540 @node Tracepoint Variables
15541 @section Convenience Variables for Tracepoints
15542 @cindex tracepoint variables
15543 @cindex convenience variables for tracepoints
15544
15545 @table @code
15546 @vindex $trace_frame
15547 @item (int) $trace_frame
15548 The current trace snapshot (a.k.a.@: @dfn{frame}) number, or -1 if no
15549 snapshot is selected.
15550
15551 @vindex $tracepoint
15552 @item (int) $tracepoint
15553 The tracepoint for the current trace snapshot.
15554
15555 @vindex $trace_line
15556 @item (int) $trace_line
15557 The line number for the current trace snapshot.
15558
15559 @vindex $trace_file
15560 @item (char []) $trace_file
15561 The source file for the current trace snapshot.
15562
15563 @vindex $trace_func
15564 @item (char []) $trace_func
15565 The name of the function containing @code{$tracepoint}.
15566 @end table
15567
15568 Note: @code{$trace_file} is not suitable for use in @code{printf},
15569 use @code{output} instead.
15570
15571 Here's a simple example of using these convenience variables for
15572 stepping through all the trace snapshots and printing some of their
15573 data. Note that these are not the same as trace state variables,
15574 which are managed by the target.
15575
15576 @smallexample
15577 (@value{GDBP}) @b{tfind start}
15578
15579 (@value{GDBP}) @b{while $trace_frame != -1}
15580 > output $trace_file
15581 > printf ", line %d (tracepoint #%d)\n", $trace_line, $tracepoint
15582 > tfind
15583 > end
15584 @end smallexample
15585
15586 @node Trace Files
15587 @section Using Trace Files
15588 @cindex trace files
15589
15590 In some situations, the target running a trace experiment may no
15591 longer be available; perhaps it crashed, or the hardware was needed
15592 for a different activity. To handle these cases, you can arrange to
15593 dump the trace data into a file, and later use that file as a source
15594 of trace data, via the @code{target tfile} command.
15595
15596 @table @code
15597
15598 @kindex tsave
15599 @item tsave [ -r ] @var{filename}
15600 @itemx tsave [-ctf] @var{dirname}
15601 Save the trace data to @var{filename}. By default, this command
15602 assumes that @var{filename} refers to the host filesystem, so if
15603 necessary @value{GDBN} will copy raw trace data up from the target and
15604 then save it. If the target supports it, you can also supply the
15605 optional argument @code{-r} (``remote'') to direct the target to save
15606 the data directly into @var{filename} in its own filesystem, which may be
15607 more efficient if the trace buffer is very large. (Note, however, that
15608 @code{target tfile} can only read from files accessible to the host.)
15609 By default, this command will save trace frame in tfile format.
15610 You can supply the optional argument @code{-ctf} to save data in CTF
15611 format. The @dfn{Common Trace Format} (CTF) is proposed as a trace format
15612 that can be shared by multiple debugging and tracing tools. Please go to
15613 @indicateurl{http://www.efficios.com/ctf} to get more information.
15614
15615 @kindex target tfile
15616 @kindex tfile
15617 @kindex target ctf
15618 @kindex ctf
15619 @item target tfile @var{filename}
15620 @itemx target ctf @var{dirname}
15621 Use the file named @var{filename} or directory named @var{dirname} as
15622 a source of trace data. Commands that examine data work as they do with
15623 a live target, but it is not possible to run any new trace experiments.
15624 @code{tstatus} will report the state of the trace run at the moment
15625 the data was saved, as well as the current trace frame you are examining.
15626 Both @var{filename} and @var{dirname} must be on a filesystem accessible to
15627 the host.
15628
15629 @smallexample
15630 (@value{GDBP}) target ctf ctf.ctf
15631 (@value{GDBP}) tfind
15632 Found trace frame 0, tracepoint 2
15633 39 ++a; /* set tracepoint 1 here */
15634 (@value{GDBP}) tdump
15635 Data collected at tracepoint 2, trace frame 0:
15636 i = 0
15637 a = 0
15638 b = 1 '\001'
15639 c = @{"123", "456", "789", "123", "456", "789"@}
15640 d = @{@{@{a = 1, b = 2@}, @{a = 3, b = 4@}@}, @{@{a = 5, b = 6@}, @{a = 7, b = 8@}@}@}
15641 (@value{GDBP}) p b
15642 $1 = 1
15643 @end smallexample
15644
15645 @end table
15646
15647 @node Overlays
15648 @chapter Debugging Programs That Use Overlays
15649 @cindex overlays
15650
15651 If your program is too large to fit completely in your target system's
15652 memory, you can sometimes use @dfn{overlays} to work around this
15653 problem. @value{GDBN} provides some support for debugging programs that
15654 use overlays.
15655
15656 @menu
15657 * How Overlays Work:: A general explanation of overlays.
15658 * Overlay Commands:: Managing overlays in @value{GDBN}.
15659 * Automatic Overlay Debugging:: @value{GDBN} can find out which overlays are
15660 mapped by asking the inferior.
15661 * Overlay Sample Program:: A sample program using overlays.
15662 @end menu
15663
15664 @node How Overlays Work
15665 @section How Overlays Work
15666 @cindex mapped overlays
15667 @cindex unmapped overlays
15668 @cindex load address, overlay's
15669 @cindex mapped address
15670 @cindex overlay area
15671
15672 Suppose you have a computer whose instruction address space is only 64
15673 kilobytes long, but which has much more memory which can be accessed by
15674 other means: special instructions, segment registers, or memory
15675 management hardware, for example. Suppose further that you want to
15676 adapt a program which is larger than 64 kilobytes to run on this system.
15677
15678 One solution is to identify modules of your program which are relatively
15679 independent, and need not call each other directly; call these modules
15680 @dfn{overlays}. Separate the overlays from the main program, and place
15681 their machine code in the larger memory. Place your main program in
15682 instruction memory, but leave at least enough space there to hold the
15683 largest overlay as well.
15684
15685 Now, to call a function located in an overlay, you must first copy that
15686 overlay's machine code from the large memory into the space set aside
15687 for it in the instruction memory, and then jump to its entry point
15688 there.
15689
15690 @c NB: In the below the mapped area's size is greater or equal to the
15691 @c size of all overlays. This is intentional to remind the developer
15692 @c that overlays don't necessarily need to be the same size.
15693
15694 @smallexample
15695 @group
15696 Data Instruction Larger
15697 Address Space Address Space Address Space
15698 +-----------+ +-----------+ +-----------+
15699 | | | | | |
15700 +-----------+ +-----------+ +-----------+<-- overlay 1
15701 | program | | main | .----| overlay 1 | load address
15702 | variables | | program | | +-----------+
15703 | and heap | | | | | |
15704 +-----------+ | | | +-----------+<-- overlay 2
15705 | | +-----------+ | | | load address
15706 +-----------+ | | | .-| overlay 2 |
15707 | | | | | |
15708 mapped --->+-----------+ | | +-----------+
15709 address | | | | | |
15710 | overlay | <-' | | |
15711 | area | <---' +-----------+<-- overlay 3
15712 | | <---. | | load address
15713 +-----------+ `--| overlay 3 |
15714 | | | |
15715 +-----------+ | |
15716 +-----------+
15717 | |
15718 +-----------+
15719
15720 @anchor{A code overlay}A code overlay
15721 @end group
15722 @end smallexample
15723
15724 The diagram (@pxref{A code overlay}) shows a system with separate data
15725 and instruction address spaces. To map an overlay, the program copies
15726 its code from the larger address space to the instruction address space.
15727 Since the overlays shown here all use the same mapped address, only one
15728 may be mapped at a time. For a system with a single address space for
15729 data and instructions, the diagram would be similar, except that the
15730 program variables and heap would share an address space with the main
15731 program and the overlay area.
15732
15733 An overlay loaded into instruction memory and ready for use is called a
15734 @dfn{mapped} overlay; its @dfn{mapped address} is its address in the
15735 instruction memory. An overlay not present (or only partially present)
15736 in instruction memory is called @dfn{unmapped}; its @dfn{load address}
15737 is its address in the larger memory. The mapped address is also called
15738 the @dfn{virtual memory address}, or @dfn{VMA}; the load address is also
15739 called the @dfn{load memory address}, or @dfn{LMA}.
15740
15741 Unfortunately, overlays are not a completely transparent way to adapt a
15742 program to limited instruction memory. They introduce a new set of
15743 global constraints you must keep in mind as you design your program:
15744
15745 @itemize @bullet
15746
15747 @item
15748 Before calling or returning to a function in an overlay, your program
15749 must make sure that overlay is actually mapped. Otherwise, the call or
15750 return will transfer control to the right address, but in the wrong
15751 overlay, and your program will probably crash.
15752
15753 @item
15754 If the process of mapping an overlay is expensive on your system, you
15755 will need to choose your overlays carefully to minimize their effect on
15756 your program's performance.
15757
15758 @item
15759 The executable file you load onto your system must contain each
15760 overlay's instructions, appearing at the overlay's load address, not its
15761 mapped address. However, each overlay's instructions must be relocated
15762 and its symbols defined as if the overlay were at its mapped address.
15763 You can use GNU linker scripts to specify different load and relocation
15764 addresses for pieces of your program; see @ref{Overlay Description,,,
15765 ld.info, Using ld: the GNU linker}.
15766
15767 @item
15768 The procedure for loading executable files onto your system must be able
15769 to load their contents into the larger address space as well as the
15770 instruction and data spaces.
15771
15772 @end itemize
15773
15774 The overlay system described above is rather simple, and could be
15775 improved in many ways:
15776
15777 @itemize @bullet
15778
15779 @item
15780 If your system has suitable bank switch registers or memory management
15781 hardware, you could use those facilities to make an overlay's load area
15782 contents simply appear at their mapped address in instruction space.
15783 This would probably be faster than copying the overlay to its mapped
15784 area in the usual way.
15785
15786 @item
15787 If your overlays are small enough, you could set aside more than one
15788 overlay area, and have more than one overlay mapped at a time.
15789
15790 @item
15791 You can use overlays to manage data, as well as instructions. In
15792 general, data overlays are even less transparent to your design than
15793 code overlays: whereas code overlays only require care when you call or
15794 return to functions, data overlays require care every time you access
15795 the data. Also, if you change the contents of a data overlay, you
15796 must copy its contents back out to its load address before you can copy a
15797 different data overlay into the same mapped area.
15798
15799 @end itemize
15800
15801
15802 @node Overlay Commands
15803 @section Overlay Commands
15804
15805 To use @value{GDBN}'s overlay support, each overlay in your program must
15806 correspond to a separate section of the executable file. The section's
15807 virtual memory address and load memory address must be the overlay's
15808 mapped and load addresses. Identifying overlays with sections allows
15809 @value{GDBN} to determine the appropriate address of a function or
15810 variable, depending on whether the overlay is mapped or not.
15811
15812 @value{GDBN}'s overlay commands all start with the word @code{overlay};
15813 you can abbreviate this as @code{ov} or @code{ovly}. The commands are:
15814
15815 @table @code
15816 @item overlay off
15817 @kindex overlay
15818 Disable @value{GDBN}'s overlay support. When overlay support is
15819 disabled, @value{GDBN} assumes that all functions and variables are
15820 always present at their mapped addresses. By default, @value{GDBN}'s
15821 overlay support is disabled.
15822
15823 @item overlay manual
15824 @cindex manual overlay debugging
15825 Enable @dfn{manual} overlay debugging. In this mode, @value{GDBN}
15826 relies on you to tell it which overlays are mapped, and which are not,
15827 using the @code{overlay map-overlay} and @code{overlay unmap-overlay}
15828 commands described below.
15829
15830 @item overlay map-overlay @var{overlay}
15831 @itemx overlay map @var{overlay}
15832 @cindex map an overlay
15833 Tell @value{GDBN} that @var{overlay} is now mapped; @var{overlay} must
15834 be the name of the object file section containing the overlay. When an
15835 overlay is mapped, @value{GDBN} assumes it can find the overlay's
15836 functions and variables at their mapped addresses. @value{GDBN} assumes
15837 that any other overlays whose mapped ranges overlap that of
15838 @var{overlay} are now unmapped.
15839
15840 @item overlay unmap-overlay @var{overlay}
15841 @itemx overlay unmap @var{overlay}
15842 @cindex unmap an overlay
15843 Tell @value{GDBN} that @var{overlay} is no longer mapped; @var{overlay}
15844 must be the name of the object file section containing the overlay.
15845 When an overlay is unmapped, @value{GDBN} assumes it can find the
15846 overlay's functions and variables at their load addresses.
15847
15848 @item overlay auto
15849 Enable @dfn{automatic} overlay debugging. In this mode, @value{GDBN}
15850 consults a data structure the overlay manager maintains in the inferior
15851 to see which overlays are mapped. For details, see @ref{Automatic
15852 Overlay Debugging}.
15853
15854 @item overlay load-target
15855 @itemx overlay load
15856 @cindex reloading the overlay table
15857 Re-read the overlay table from the inferior. Normally, @value{GDBN}
15858 re-reads the table @value{GDBN} automatically each time the inferior
15859 stops, so this command should only be necessary if you have changed the
15860 overlay mapping yourself using @value{GDBN}. This command is only
15861 useful when using automatic overlay debugging.
15862
15863 @item overlay list-overlays
15864 @itemx overlay list
15865 @cindex listing mapped overlays
15866 Display a list of the overlays currently mapped, along with their mapped
15867 addresses, load addresses, and sizes.
15868
15869 @end table
15870
15871 Normally, when @value{GDBN} prints a code address, it includes the name
15872 of the function the address falls in:
15873
15874 @smallexample
15875 (@value{GDBP}) print main
15876 $3 = @{int ()@} 0x11a0 <main>
15877 @end smallexample
15878 @noindent
15879 When overlay debugging is enabled, @value{GDBN} recognizes code in
15880 unmapped overlays, and prints the names of unmapped functions with
15881 asterisks around them. For example, if @code{foo} is a function in an
15882 unmapped overlay, @value{GDBN} prints it this way:
15883
15884 @smallexample
15885 (@value{GDBP}) overlay list
15886 No sections are mapped.
15887 (@value{GDBP}) print foo
15888 $5 = @{int (int)@} 0x100000 <*foo*>
15889 @end smallexample
15890 @noindent
15891 When @code{foo}'s overlay is mapped, @value{GDBN} prints the function's
15892 name normally:
15893
15894 @smallexample
15895 (@value{GDBP}) overlay list
15896 Section .ov.foo.text, loaded at 0x100000 - 0x100034,
15897 mapped at 0x1016 - 0x104a
15898 (@value{GDBP}) print foo
15899 $6 = @{int (int)@} 0x1016 <foo>
15900 @end smallexample
15901
15902 When overlay debugging is enabled, @value{GDBN} can find the correct
15903 address for functions and variables in an overlay, whether or not the
15904 overlay is mapped. This allows most @value{GDBN} commands, like
15905 @code{break} and @code{disassemble}, to work normally, even on unmapped
15906 code. However, @value{GDBN}'s breakpoint support has some limitations:
15907
15908 @itemize @bullet
15909 @item
15910 @cindex breakpoints in overlays
15911 @cindex overlays, setting breakpoints in
15912 You can set breakpoints in functions in unmapped overlays, as long as
15913 @value{GDBN} can write to the overlay at its load address.
15914 @item
15915 @value{GDBN} can not set hardware or simulator-based breakpoints in
15916 unmapped overlays. However, if you set a breakpoint at the end of your
15917 overlay manager (and tell @value{GDBN} which overlays are now mapped, if
15918 you are using manual overlay management), @value{GDBN} will re-set its
15919 breakpoints properly.
15920 @end itemize
15921
15922
15923 @node Automatic Overlay Debugging
15924 @section Automatic Overlay Debugging
15925 @cindex automatic overlay debugging
15926
15927 @value{GDBN} can automatically track which overlays are mapped and which
15928 are not, given some simple co-operation from the overlay manager in the
15929 inferior. If you enable automatic overlay debugging with the
15930 @code{overlay auto} command (@pxref{Overlay Commands}), @value{GDBN}
15931 looks in the inferior's memory for certain variables describing the
15932 current state of the overlays.
15933
15934 Here are the variables your overlay manager must define to support
15935 @value{GDBN}'s automatic overlay debugging:
15936
15937 @table @asis
15938
15939 @item @code{_ovly_table}:
15940 This variable must be an array of the following structures:
15941
15942 @smallexample
15943 struct
15944 @{
15945 /* The overlay's mapped address. */
15946 unsigned long vma;
15947
15948 /* The size of the overlay, in bytes. */
15949 unsigned long size;
15950
15951 /* The overlay's load address. */
15952 unsigned long lma;
15953
15954 /* Non-zero if the overlay is currently mapped;
15955 zero otherwise. */
15956 unsigned long mapped;
15957 @}
15958 @end smallexample
15959
15960 @item @code{_novlys}:
15961 This variable must be a four-byte signed integer, holding the total
15962 number of elements in @code{_ovly_table}.
15963
15964 @end table
15965
15966 To decide whether a particular overlay is mapped or not, @value{GDBN}
15967 looks for an entry in @w{@code{_ovly_table}} whose @code{vma} and
15968 @code{lma} members equal the VMA and LMA of the overlay's section in the
15969 executable file. When @value{GDBN} finds a matching entry, it consults
15970 the entry's @code{mapped} member to determine whether the overlay is
15971 currently mapped.
15972
15973 In addition, your overlay manager may define a function called
15974 @code{_ovly_debug_event}. If this function is defined, @value{GDBN}
15975 will silently set a breakpoint there. If the overlay manager then
15976 calls this function whenever it has changed the overlay table, this
15977 will enable @value{GDBN} to accurately keep track of which overlays
15978 are in program memory, and update any breakpoints that may be set
15979 in overlays. This will allow breakpoints to work even if the
15980 overlays are kept in ROM or other non-writable memory while they
15981 are not being executed.
15982
15983 @node Overlay Sample Program
15984 @section Overlay Sample Program
15985 @cindex overlay example program
15986
15987 When linking a program which uses overlays, you must place the overlays
15988 at their load addresses, while relocating them to run at their mapped
15989 addresses. To do this, you must write a linker script (@pxref{Overlay
15990 Description,,, ld.info, Using ld: the GNU linker}). Unfortunately,
15991 since linker scripts are specific to a particular host system, target
15992 architecture, and target memory layout, this manual cannot provide
15993 portable sample code demonstrating @value{GDBN}'s overlay support.
15994
15995 However, the @value{GDBN} source distribution does contain an overlaid
15996 program, with linker scripts for a few systems, as part of its test
15997 suite. The program consists of the following files from
15998 @file{gdb/testsuite/gdb.base}:
15999
16000 @table @file
16001 @item overlays.c
16002 The main program file.
16003 @item ovlymgr.c
16004 A simple overlay manager, used by @file{overlays.c}.
16005 @item foo.c
16006 @itemx bar.c
16007 @itemx baz.c
16008 @itemx grbx.c
16009 Overlay modules, loaded and used by @file{overlays.c}.
16010 @item d10v.ld
16011 @itemx m32r.ld
16012 Linker scripts for linking the test program on the @code{d10v-elf}
16013 and @code{m32r-elf} targets.
16014 @end table
16015
16016 You can build the test program using the @code{d10v-elf} GCC
16017 cross-compiler like this:
16018
16019 @smallexample
16020 $ d10v-elf-gcc -g -c overlays.c
16021 $ d10v-elf-gcc -g -c ovlymgr.c
16022 $ d10v-elf-gcc -g -c foo.c
16023 $ d10v-elf-gcc -g -c bar.c
16024 $ d10v-elf-gcc -g -c baz.c
16025 $ d10v-elf-gcc -g -c grbx.c
16026 $ d10v-elf-gcc -g overlays.o ovlymgr.o foo.o bar.o \
16027 baz.o grbx.o -Wl,-Td10v.ld -o overlays
16028 @end smallexample
16029
16030 The build process is identical for any other architecture, except that
16031 you must substitute the appropriate compiler and linker script for the
16032 target system for @code{d10v-elf-gcc} and @code{d10v.ld}.
16033
16034
16035 @node Languages
16036 @chapter Using @value{GDBN} with Different Languages
16037 @cindex languages
16038
16039 Although programming languages generally have common aspects, they are
16040 rarely expressed in the same manner. For instance, in ANSI C,
16041 dereferencing a pointer @code{p} is accomplished by @code{*p}, but in
16042 Modula-2, it is accomplished by @code{p^}. Values can also be
16043 represented (and displayed) differently. Hex numbers in C appear as
16044 @samp{0x1ae}, while in Modula-2 they appear as @samp{1AEH}.
16045
16046 @cindex working language
16047 Language-specific information is built into @value{GDBN} for some languages,
16048 allowing you to express operations like the above in your program's
16049 native language, and allowing @value{GDBN} to output values in a manner
16050 consistent with the syntax of your program's native language. The
16051 language you use to build expressions is called the @dfn{working
16052 language}.
16053
16054 @menu
16055 * Setting:: Switching between source languages
16056 * Show:: Displaying the language
16057 * Checks:: Type and range checks
16058 * Supported Languages:: Supported languages
16059 * Unsupported Languages:: Unsupported languages
16060 @end menu
16061
16062 @node Setting
16063 @section Switching Between Source Languages
16064
16065 There are two ways to control the working language---either have @value{GDBN}
16066 set it automatically, or select it manually yourself. You can use the
16067 @code{set language} command for either purpose. On startup, @value{GDBN}
16068 defaults to setting the language automatically. The working language is
16069 used to determine how expressions you type are interpreted, how values
16070 are printed, etc.
16071
16072 In addition to the working language, every source file that
16073 @value{GDBN} knows about has its own working language. For some object
16074 file formats, the compiler might indicate which language a particular
16075 source file is in. However, most of the time @value{GDBN} infers the
16076 language from the name of the file. The language of a source file
16077 controls whether C@t{++} names are demangled---this way @code{backtrace} can
16078 show each frame appropriately for its own language. There is no way to
16079 set the language of a source file from within @value{GDBN}, but you can
16080 set the language associated with a filename extension. @xref{Show, ,
16081 Displaying the Language}.
16082
16083 This is most commonly a problem when you use a program, such
16084 as @code{cfront} or @code{f2c}, that generates C but is written in
16085 another language. In that case, make the
16086 program use @code{#line} directives in its C output; that way
16087 @value{GDBN} will know the correct language of the source code of the original
16088 program, and will display that source code, not the generated C code.
16089
16090 @menu
16091 * Filenames:: Filename extensions and languages.
16092 * Manually:: Setting the working language manually
16093 * Automatically:: Having @value{GDBN} infer the source language
16094 @end menu
16095
16096 @node Filenames
16097 @subsection List of Filename Extensions and Languages
16098
16099 If a source file name ends in one of the following extensions, then
16100 @value{GDBN} infers that its language is the one indicated.
16101
16102 @table @file
16103 @item .ada
16104 @itemx .ads
16105 @itemx .adb
16106 @itemx .a
16107 Ada source file.
16108
16109 @item .c
16110 C source file
16111
16112 @item .C
16113 @itemx .cc
16114 @itemx .cp
16115 @itemx .cpp
16116 @itemx .cxx
16117 @itemx .c++
16118 C@t{++} source file
16119
16120 @item .d
16121 D source file
16122
16123 @item .m
16124 Objective-C source file
16125
16126 @item .f
16127 @itemx .F
16128 Fortran source file
16129
16130 @item .mod
16131 Modula-2 source file
16132
16133 @item .s
16134 @itemx .S
16135 Assembler source file. This actually behaves almost like C, but
16136 @value{GDBN} does not skip over function prologues when stepping.
16137 @end table
16138
16139 In addition, you may set the language associated with a filename
16140 extension. @xref{Show, , Displaying the Language}.
16141
16142 @node Manually
16143 @subsection Setting the Working Language
16144
16145 If you allow @value{GDBN} to set the language automatically,
16146 expressions are interpreted the same way in your debugging session and
16147 your program.
16148
16149 @kindex set language
16150 If you wish, you may set the language manually. To do this, issue the
16151 command @samp{set language @var{lang}}, where @var{lang} is the name of
16152 a language, such as
16153 @code{c} or @code{modula-2}.
16154 For a list of the supported languages, type @samp{set language}.
16155
16156 Setting the language manually prevents @value{GDBN} from updating the working
16157 language automatically. This can lead to confusion if you try
16158 to debug a program when the working language is not the same as the
16159 source language, when an expression is acceptable to both
16160 languages---but means different things. For instance, if the current
16161 source file were written in C, and @value{GDBN} was parsing Modula-2, a
16162 command such as:
16163
16164 @smallexample
16165 print a = b + c
16166 @end smallexample
16167
16168 @noindent
16169 might not have the effect you intended. In C, this means to add
16170 @code{b} and @code{c} and place the result in @code{a}. The result
16171 printed would be the value of @code{a}. In Modula-2, this means to compare
16172 @code{a} to the result of @code{b+c}, yielding a @code{BOOLEAN} value.
16173
16174 @node Automatically
16175 @subsection Having @value{GDBN} Infer the Source Language
16176
16177 To have @value{GDBN} set the working language automatically, use
16178 @samp{set language local} or @samp{set language auto}. @value{GDBN}
16179 then infers the working language. That is, when your program stops in a
16180 frame (usually by encountering a breakpoint), @value{GDBN} sets the
16181 working language to the language recorded for the function in that
16182 frame. If the language for a frame is unknown (that is, if the function
16183 or block corresponding to the frame was defined in a source file that
16184 does not have a recognized extension), the current working language is
16185 not changed, and @value{GDBN} issues a warning.
16186
16187 This may not seem necessary for most programs, which are written
16188 entirely in one source language. However, program modules and libraries
16189 written in one source language can be used by a main program written in
16190 a different source language. Using @samp{set language auto} in this
16191 case frees you from having to set the working language manually.
16192
16193 @node Show
16194 @section Displaying the Language
16195
16196 The following commands help you find out which language is the
16197 working language, and also what language source files were written in.
16198
16199 @table @code
16200 @item show language
16201 @anchor{show language}
16202 @kindex show language
16203 Display the current working language. This is the
16204 language you can use with commands such as @code{print} to
16205 build and compute expressions that may involve variables in your program.
16206
16207 @item info frame
16208 @kindex info frame@r{, show the source language}
16209 Display the source language for this frame. This language becomes the
16210 working language if you use an identifier from this frame.
16211 @xref{Frame Info, ,Information about a Frame}, to identify the other
16212 information listed here.
16213
16214 @item info source
16215 @kindex info source@r{, show the source language}
16216 Display the source language of this source file.
16217 @xref{Symbols, ,Examining the Symbol Table}, to identify the other
16218 information listed here.
16219 @end table
16220
16221 In unusual circumstances, you may have source files with extensions
16222 not in the standard list. You can then set the extension associated
16223 with a language explicitly:
16224
16225 @table @code
16226 @item set extension-language @var{ext} @var{language}
16227 @kindex set extension-language
16228 Tell @value{GDBN} that source files with extension @var{ext} are to be
16229 assumed as written in the source language @var{language}.
16230
16231 @item info extensions
16232 @kindex info extensions
16233 List all the filename extensions and the associated languages.
16234 @end table
16235
16236 @node Checks
16237 @section Type and Range Checking
16238
16239 Some languages are designed to guard you against making seemingly common
16240 errors through a series of compile- and run-time checks. These include
16241 checking the type of arguments to functions and operators and making
16242 sure mathematical overflows are caught at run time. Checks such as
16243 these help to ensure a program's correctness once it has been compiled
16244 by eliminating type mismatches and providing active checks for range
16245 errors when your program is running.
16246
16247 By default @value{GDBN} checks for these errors according to the
16248 rules of the current source language. Although @value{GDBN} does not check
16249 the statements in your program, it can check expressions entered directly
16250 into @value{GDBN} for evaluation via the @code{print} command, for example.
16251
16252 @menu
16253 * Type Checking:: An overview of type checking
16254 * Range Checking:: An overview of range checking
16255 @end menu
16256
16257 @cindex type checking
16258 @cindex checks, type
16259 @node Type Checking
16260 @subsection An Overview of Type Checking
16261
16262 Some languages, such as C and C@t{++}, are strongly typed, meaning that the
16263 arguments to operators and functions have to be of the correct type,
16264 otherwise an error occurs. These checks prevent type mismatch
16265 errors from ever causing any run-time problems. For example,
16266
16267 @smallexample
16268 int klass::my_method(char *b) @{ return b ? 1 : 2; @}
16269
16270 (@value{GDBP}) print obj.my_method (0)
16271 $1 = 2
16272 @exdent but
16273 (@value{GDBP}) print obj.my_method (0x1234)
16274 Cannot resolve method klass::my_method to any overloaded instance
16275 @end smallexample
16276
16277 The second example fails because in C@t{++} the integer constant
16278 @samp{0x1234} is not type-compatible with the pointer parameter type.
16279
16280 For the expressions you use in @value{GDBN} commands, you can tell
16281 @value{GDBN} to not enforce strict type checking or
16282 to treat any mismatches as errors and abandon the expression;
16283 When type checking is disabled, @value{GDBN} successfully evaluates
16284 expressions like the second example above.
16285
16286 Even if type checking is off, there may be other reasons
16287 related to type that prevent @value{GDBN} from evaluating an expression.
16288 For instance, @value{GDBN} does not know how to add an @code{int} and
16289 a @code{struct foo}. These particular type errors have nothing to do
16290 with the language in use and usually arise from expressions which make
16291 little sense to evaluate anyway.
16292
16293 @value{GDBN} provides some additional commands for controlling type checking:
16294
16295 @kindex set check type
16296 @kindex show check type
16297 @table @code
16298 @item set check type on
16299 @itemx set check type off
16300 Set strict type checking on or off. If any type mismatches occur in
16301 evaluating an expression while type checking is on, @value{GDBN} prints a
16302 message and aborts evaluation of the expression.
16303
16304 @item show check type
16305 Show the current setting of type checking and whether @value{GDBN}
16306 is enforcing strict type checking rules.
16307 @end table
16308
16309 @cindex range checking
16310 @cindex checks, range
16311 @node Range Checking
16312 @subsection An Overview of Range Checking
16313
16314 In some languages (such as Modula-2), it is an error to exceed the
16315 bounds of a type; this is enforced with run-time checks. Such range
16316 checking is meant to ensure program correctness by making sure
16317 computations do not overflow, or indices on an array element access do
16318 not exceed the bounds of the array.
16319
16320 For expressions you use in @value{GDBN} commands, you can tell
16321 @value{GDBN} to treat range errors in one of three ways: ignore them,
16322 always treat them as errors and abandon the expression, or issue
16323 warnings but evaluate the expression anyway.
16324
16325 A range error can result from numerical overflow, from exceeding an
16326 array index bound, or when you type a constant that is not a member
16327 of any type. Some languages, however, do not treat overflows as an
16328 error. In many implementations of C, mathematical overflow causes the
16329 result to ``wrap around'' to lower values---for example, if @var{m} is
16330 the largest integer value, and @var{s} is the smallest, then
16331
16332 @smallexample
16333 @var{m} + 1 @result{} @var{s}
16334 @end smallexample
16335
16336 This, too, is specific to individual languages, and in some cases
16337 specific to individual compilers or machines. @xref{Supported Languages, ,
16338 Supported Languages}, for further details on specific languages.
16339
16340 @value{GDBN} provides some additional commands for controlling the range checker:
16341
16342 @kindex set check range
16343 @kindex show check range
16344 @table @code
16345 @item set check range auto
16346 Set range checking on or off based on the current working language.
16347 @xref{Supported Languages, ,Supported Languages}, for the default settings for
16348 each language.
16349
16350 @item set check range on
16351 @itemx set check range off
16352 Set range checking on or off, overriding the default setting for the
16353 current working language. A warning is issued if the setting does not
16354 match the language default. If a range error occurs and range checking is on,
16355 then a message is printed and evaluation of the expression is aborted.
16356
16357 @item set check range warn
16358 Output messages when the @value{GDBN} range checker detects a range error,
16359 but attempt to evaluate the expression anyway. Evaluating the
16360 expression may still be impossible for other reasons, such as accessing
16361 memory that the process does not own (a typical example from many Unix
16362 systems).
16363
16364 @item show check range
16365 Show the current setting of the range checker, and whether or not it is
16366 being set automatically by @value{GDBN}.
16367 @end table
16368
16369 @node Supported Languages
16370 @section Supported Languages
16371
16372 @value{GDBN} supports C, C@t{++}, D, Go, Objective-C, Fortran,
16373 OpenCL C, Pascal, Rust, assembly, Modula-2, and Ada.
16374 @c This is false ...
16375 Some @value{GDBN} features may be used in expressions regardless of the
16376 language you use: the @value{GDBN} @code{@@} and @code{::} operators,
16377 and the @samp{@{type@}addr} construct (@pxref{Expressions,
16378 ,Expressions}) can be used with the constructs of any supported
16379 language.
16380
16381 The following sections detail to what degree each source language is
16382 supported by @value{GDBN}. These sections are not meant to be language
16383 tutorials or references, but serve only as a reference guide to what the
16384 @value{GDBN} expression parser accepts, and what input and output
16385 formats should look like for different languages. There are many good
16386 books written on each of these languages; please look to these for a
16387 language reference or tutorial.
16388
16389 @menu
16390 * C:: C and C@t{++}
16391 * D:: D
16392 * Go:: Go
16393 * Objective-C:: Objective-C
16394 * OpenCL C:: OpenCL C
16395 * Fortran:: Fortran
16396 * Pascal:: Pascal
16397 * Rust:: Rust
16398 * Modula-2:: Modula-2
16399 * Ada:: Ada
16400 @end menu
16401
16402 @node C
16403 @subsection C and C@t{++}
16404
16405 @cindex C and C@t{++}
16406 @cindex expressions in C or C@t{++}
16407
16408 Since C and C@t{++} are so closely related, many features of @value{GDBN} apply
16409 to both languages. Whenever this is the case, we discuss those languages
16410 together.
16411
16412 @cindex C@t{++}
16413 @cindex @code{g++}, @sc{gnu} C@t{++} compiler
16414 @cindex @sc{gnu} C@t{++}
16415 The C@t{++} debugging facilities are jointly implemented by the C@t{++}
16416 compiler and @value{GDBN}. Therefore, to debug your C@t{++} code
16417 effectively, you must compile your C@t{++} programs with a supported
16418 C@t{++} compiler, such as @sc{gnu} @code{g++}, or the HP ANSI C@t{++}
16419 compiler (@code{aCC}).
16420
16421 @menu
16422 * C Operators:: C and C@t{++} operators
16423 * C Constants:: C and C@t{++} constants
16424 * C Plus Plus Expressions:: C@t{++} expressions
16425 * C Defaults:: Default settings for C and C@t{++}
16426 * C Checks:: C and C@t{++} type and range checks
16427 * Debugging C:: @value{GDBN} and C
16428 * Debugging C Plus Plus:: @value{GDBN} features for C@t{++}
16429 * Decimal Floating Point:: Numbers in Decimal Floating Point format
16430 @end menu
16431
16432 @node C Operators
16433 @subsubsection C and C@t{++} Operators
16434
16435 @cindex C and C@t{++} operators
16436
16437 Operators must be defined on values of specific types. For instance,
16438 @code{+} is defined on numbers, but not on structures. Operators are
16439 often defined on groups of types.
16440
16441 For the purposes of C and C@t{++}, the following definitions hold:
16442
16443 @itemize @bullet
16444
16445 @item
16446 @emph{Integral types} include @code{int} with any of its storage-class
16447 specifiers; @code{char}; @code{enum}; and, for C@t{++}, @code{bool}.
16448
16449 @item
16450 @emph{Floating-point types} include @code{float}, @code{double}, and
16451 @code{long double} (if supported by the target platform).
16452
16453 @item
16454 @emph{Pointer types} include all types defined as @code{(@var{type} *)}.
16455
16456 @item
16457 @emph{Scalar types} include all of the above.
16458
16459 @end itemize
16460
16461 @noindent
16462 The following operators are supported. They are listed here
16463 in order of increasing precedence:
16464
16465 @table @code
16466 @item ,
16467 The comma or sequencing operator. Expressions in a comma-separated list
16468 are evaluated from left to right, with the result of the entire
16469 expression being the last expression evaluated.
16470
16471 @item =
16472 Assignment. The value of an assignment expression is the value
16473 assigned. Defined on scalar types.
16474
16475 @item @var{op}=
16476 Used in an expression of the form @w{@code{@var{a} @var{op}= @var{b}}},
16477 and translated to @w{@code{@var{a} = @var{a op b}}}.
16478 @w{@code{@var{op}=}} and @code{=} have the same precedence. The operator
16479 @var{op} is any one of the operators @code{|}, @code{^}, @code{&},
16480 @code{<<}, @code{>>}, @code{+}, @code{-}, @code{*}, @code{/}, @code{%}.
16481
16482 @item ?:
16483 The ternary operator. @code{@var{a} ? @var{b} : @var{c}} can be thought
16484 of as: if @var{a} then @var{b} else @var{c}. The argument @var{a}
16485 should be of an integral type.
16486
16487 @item ||
16488 Logical @sc{or}. Defined on integral types.
16489
16490 @item &&
16491 Logical @sc{and}. Defined on integral types.
16492
16493 @item |
16494 Bitwise @sc{or}. Defined on integral types.
16495
16496 @item ^
16497 Bitwise exclusive-@sc{or}. Defined on integral types.
16498
16499 @item &
16500 Bitwise @sc{and}. Defined on integral types.
16501
16502 @item ==@r{, }!=
16503 Equality and inequality. Defined on scalar types. The value of these
16504 expressions is 0 for false and non-zero for true.
16505
16506 @item <@r{, }>@r{, }<=@r{, }>=
16507 Less than, greater than, less than or equal, greater than or equal.
16508 Defined on scalar types. The value of these expressions is 0 for false
16509 and non-zero for true.
16510
16511 @item <<@r{, }>>
16512 left shift, and right shift. Defined on integral types.
16513
16514 @item @@
16515 The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
16516
16517 @item +@r{, }-
16518 Addition and subtraction. Defined on integral types, floating-point types and
16519 pointer types.
16520
16521 @item *@r{, }/@r{, }%
16522 Multiplication, division, and modulus. Multiplication and division are
16523 defined on integral and floating-point types. Modulus is defined on
16524 integral types.
16525
16526 @item ++@r{, }--
16527 Increment and decrement. When appearing before a variable, the
16528 operation is performed before the variable is used in an expression;
16529 when appearing after it, the variable's value is used before the
16530 operation takes place.
16531
16532 @item *
16533 Pointer dereferencing. Defined on pointer types. Same precedence as
16534 @code{++}.
16535
16536 @item &
16537 Address operator. Defined on variables. Same precedence as @code{++}.
16538
16539 For debugging C@t{++}, @value{GDBN} implements a use of @samp{&} beyond what is
16540 allowed in the C@t{++} language itself: you can use @samp{&(&@var{ref})}
16541 to examine the address
16542 where a C@t{++} reference variable (declared with @samp{&@var{ref}}) is
16543 stored.
16544
16545 @item -
16546 Negative. Defined on integral and floating-point types. Same
16547 precedence as @code{++}.
16548
16549 @item !
16550 Logical negation. Defined on integral types. Same precedence as
16551 @code{++}.
16552
16553 @item ~
16554 Bitwise complement operator. Defined on integral types. Same precedence as
16555 @code{++}.
16556
16557
16558 @item .@r{, }->
16559 Structure member, and pointer-to-structure member. For convenience,
16560 @value{GDBN} regards the two as equivalent, choosing whether to dereference a
16561 pointer based on the stored type information.
16562 Defined on @code{struct} and @code{union} data.
16563
16564 @item .*@r{, }->*
16565 Dereferences of pointers to members.
16566
16567 @item []
16568 Array indexing. @code{@var{a}[@var{i}]} is defined as
16569 @code{*(@var{a}+@var{i})}. Same precedence as @code{->}.
16570
16571 @item ()
16572 Function parameter list. Same precedence as @code{->}.
16573
16574 @item ::
16575 C@t{++} scope resolution operator. Defined on @code{struct}, @code{union},
16576 and @code{class} types.
16577
16578 @item ::
16579 Doubled colons also represent the @value{GDBN} scope operator
16580 (@pxref{Expressions, ,Expressions}). Same precedence as @code{::},
16581 above.
16582 @end table
16583
16584 If an operator is redefined in the user code, @value{GDBN} usually
16585 attempts to invoke the redefined version instead of using the operator's
16586 predefined meaning.
16587
16588 @node C Constants
16589 @subsubsection C and C@t{++} Constants
16590
16591 @cindex C and C@t{++} constants
16592
16593 @value{GDBN} allows you to express the constants of C and C@t{++} in the
16594 following ways:
16595
16596 @itemize @bullet
16597 @item
16598 Integer constants are a sequence of digits. Octal constants are
16599 specified by a leading @samp{0} (i.e.@: zero), and hexadecimal constants
16600 by a leading @samp{0x} or @samp{0X}. Constants may also end with a letter
16601 @samp{l}, specifying that the constant should be treated as a
16602 @code{long} value.
16603
16604 @item
16605 Floating point constants are a sequence of digits, followed by a decimal
16606 point, followed by a sequence of digits, and optionally followed by an
16607 exponent. An exponent is of the form:
16608 @samp{@w{e@r{[[}+@r{]|}-@r{]}@var{nnn}}}, where @var{nnn} is another
16609 sequence of digits. The @samp{+} is optional for positive exponents.
16610 A floating-point constant may also end with a letter @samp{f} or
16611 @samp{F}, specifying that the constant should be treated as being of
16612 the @code{float} (as opposed to the default @code{double}) type; or with
16613 a letter @samp{l} or @samp{L}, which specifies a @code{long double}
16614 constant.
16615
16616 @item
16617 Enumerated constants consist of enumerated identifiers, or their
16618 integral equivalents.
16619
16620 @item
16621 Character constants are a single character surrounded by single quotes
16622 (@code{'}), or a number---the ordinal value of the corresponding character
16623 (usually its @sc{ascii} value). Within quotes, the single character may
16624 be represented by a letter or by @dfn{escape sequences}, which are of
16625 the form @samp{\@var{nnn}}, where @var{nnn} is the octal representation
16626 of the character's ordinal value; or of the form @samp{\@var{x}}, where
16627 @samp{@var{x}} is a predefined special character---for example,
16628 @samp{\n} for newline.
16629
16630 Wide character constants can be written by prefixing a character
16631 constant with @samp{L}, as in C. For example, @samp{L'x'} is the wide
16632 form of @samp{x}. The target wide character set is used when
16633 computing the value of this constant (@pxref{Character Sets}).
16634
16635 @item
16636 String constants are a sequence of character constants surrounded by
16637 double quotes (@code{"}). Any valid character constant (as described
16638 above) may appear. Double quotes within the string must be preceded by
16639 a backslash, so for instance @samp{"a\"b'c"} is a string of five
16640 characters.
16641
16642 Wide string constants can be written by prefixing a string constant
16643 with @samp{L}, as in C. The target wide character set is used when
16644 computing the value of this constant (@pxref{Character Sets}).
16645
16646 @item
16647 Pointer constants are an integral value. You can also write pointers
16648 to constants using the C operator @samp{&}.
16649
16650 @item
16651 Array constants are comma-separated lists surrounded by braces @samp{@{}
16652 and @samp{@}}; for example, @samp{@{1,2,3@}} is a three-element array of
16653 integers, @samp{@{@{1,2@}, @{3,4@}, @{5,6@}@}} is a three-by-two array,
16654 and @samp{@{&"hi", &"there", &"fred"@}} is a three-element array of pointers.
16655 @end itemize
16656
16657 @node C Plus Plus Expressions
16658 @subsubsection C@t{++} Expressions
16659
16660 @cindex expressions in C@t{++}
16661 @value{GDBN} expression handling can interpret most C@t{++} expressions.
16662
16663 @cindex debugging C@t{++} programs
16664 @cindex C@t{++} compilers
16665 @cindex debug formats and C@t{++}
16666 @cindex @value{NGCC} and C@t{++}
16667 @quotation
16668 @emph{Warning:} @value{GDBN} can only debug C@t{++} code if you use
16669 the proper compiler and the proper debug format. Currently,
16670 @value{GDBN} works best when debugging C@t{++} code that is compiled
16671 with the most recent version of @value{NGCC} possible. The DWARF
16672 debugging format is preferred; @value{NGCC} defaults to this on most
16673 popular platforms. Other compilers and/or debug formats are likely to
16674 work badly or not at all when using @value{GDBN} to debug C@t{++}
16675 code. @xref{Compilation}.
16676 @end quotation
16677
16678 @enumerate
16679
16680 @cindex member functions
16681 @item
16682 Member function calls are allowed; you can use expressions like
16683
16684 @smallexample
16685 count = aml->GetOriginal(x, y)
16686 @end smallexample
16687
16688 @vindex this@r{, inside C@t{++} member functions}
16689 @cindex namespace in C@t{++}
16690 @item
16691 While a member function is active (in the selected stack frame), your
16692 expressions have the same namespace available as the member function;
16693 that is, @value{GDBN} allows implicit references to the class instance
16694 pointer @code{this} following the same rules as C@t{++}. @code{using}
16695 declarations in the current scope are also respected by @value{GDBN}.
16696
16697 @cindex call overloaded functions
16698 @cindex overloaded functions, calling
16699 @cindex type conversions in C@t{++}
16700 @item
16701 You can call overloaded functions; @value{GDBN} resolves the function
16702 call to the right definition, with some restrictions. @value{GDBN} does not
16703 perform overload resolution involving user-defined type conversions,
16704 calls to constructors, or instantiations of templates that do not exist
16705 in the program. It also cannot handle ellipsis argument lists or
16706 default arguments.
16707
16708 It does perform integral conversions and promotions, floating-point
16709 promotions, arithmetic conversions, pointer conversions, conversions of
16710 class objects to base classes, and standard conversions such as those of
16711 functions or arrays to pointers; it requires an exact match on the
16712 number of function arguments.
16713
16714 Overload resolution is always performed, unless you have specified
16715 @code{set overload-resolution off}. @xref{Debugging C Plus Plus,
16716 ,@value{GDBN} Features for C@t{++}}.
16717
16718 You must specify @code{set overload-resolution off} in order to use an
16719 explicit function signature to call an overloaded function, as in
16720 @smallexample
16721 p 'foo(char,int)'('x', 13)
16722 @end smallexample
16723
16724 The @value{GDBN} command-completion facility can simplify this;
16725 see @ref{Completion, ,Command Completion}.
16726
16727 @cindex reference declarations
16728 @item
16729 @value{GDBN} understands variables declared as C@t{++} lvalue or rvalue
16730 references; you can use them in expressions just as you do in C@t{++}
16731 source---they are automatically dereferenced.
16732
16733 In the parameter list shown when @value{GDBN} displays a frame, the values of
16734 reference variables are not displayed (unlike other variables); this
16735 avoids clutter, since references are often used for large structures.
16736 The @emph{address} of a reference variable is always shown, unless
16737 you have specified @samp{set print address off}.
16738
16739 @item
16740 @value{GDBN} supports the C@t{++} name resolution operator @code{::}---your
16741 expressions can use it just as expressions in your program do. Since
16742 one scope may be defined in another, you can use @code{::} repeatedly if
16743 necessary, for example in an expression like
16744 @samp{@var{scope1}::@var{scope2}::@var{name}}. @value{GDBN} also allows
16745 resolving name scope by reference to source files, in both C and C@t{++}
16746 debugging (@pxref{Variables, ,Program Variables}).
16747
16748 @item
16749 @value{GDBN} performs argument-dependent lookup, following the C@t{++}
16750 specification.
16751 @end enumerate
16752
16753 @node C Defaults
16754 @subsubsection C and C@t{++} Defaults
16755
16756 @cindex C and C@t{++} defaults
16757
16758 If you allow @value{GDBN} to set range checking automatically, it
16759 defaults to @code{off} whenever the working language changes to
16760 C or C@t{++}. This happens regardless of whether you or @value{GDBN}
16761 selects the working language.
16762
16763 If you allow @value{GDBN} to set the language automatically, it
16764 recognizes source files whose names end with @file{.c}, @file{.C}, or
16765 @file{.cc}, etc, and when @value{GDBN} enters code compiled from one of
16766 these files, it sets the working language to C or C@t{++}.
16767 @xref{Automatically, ,Having @value{GDBN} Infer the Source Language},
16768 for further details.
16769
16770 @node C Checks
16771 @subsubsection C and C@t{++} Type and Range Checks
16772
16773 @cindex C and C@t{++} checks
16774
16775 By default, when @value{GDBN} parses C or C@t{++} expressions, strict type
16776 checking is used. However, if you turn type checking off, @value{GDBN}
16777 will allow certain non-standard conversions, such as promoting integer
16778 constants to pointers.
16779
16780 Range checking, if turned on, is done on mathematical operations. Array
16781 indices are not checked, since they are often used to index a pointer
16782 that is not itself an array.
16783
16784 @node Debugging C
16785 @subsubsection @value{GDBN} and C
16786
16787 The @code{set print union} and @code{show print union} commands apply to
16788 the @code{union} type. When set to @samp{on}, any @code{union} that is
16789 inside a @code{struct} or @code{class} is also printed. Otherwise, it
16790 appears as @samp{@{...@}}.
16791
16792 The @code{@@} operator aids in the debugging of dynamic arrays, formed
16793 with pointers and a memory allocation function. @xref{Expressions,
16794 ,Expressions}.
16795
16796 @node Debugging C Plus Plus
16797 @subsubsection @value{GDBN} Features for C@t{++}
16798
16799 @cindex commands for C@t{++}
16800
16801 Some @value{GDBN} commands are particularly useful with C@t{++}, and some are
16802 designed specifically for use with C@t{++}. Here is a summary:
16803
16804 @table @code
16805 @cindex break in overloaded functions
16806 @item @r{breakpoint menus}
16807 When you want a breakpoint in a function whose name is overloaded,
16808 @value{GDBN} has the capability to display a menu of possible breakpoint
16809 locations to help you specify which function definition you want.
16810 @xref{Ambiguous Expressions,,Ambiguous Expressions}.
16811
16812 @cindex overloading in C@t{++}
16813 @item rbreak @var{regex}
16814 Setting breakpoints using regular expressions is helpful for setting
16815 breakpoints on overloaded functions that are not members of any special
16816 classes.
16817 @xref{Set Breaks, ,Setting Breakpoints}.
16818
16819 @cindex C@t{++} exception handling
16820 @item catch throw
16821 @itemx catch rethrow
16822 @itemx catch catch
16823 Debug C@t{++} exception handling using these commands. @xref{Set
16824 Catchpoints, , Setting Catchpoints}.
16825
16826 @cindex inheritance
16827 @item ptype @var{typename}
16828 Print inheritance relationships as well as other information for type
16829 @var{typename}.
16830 @xref{Symbols, ,Examining the Symbol Table}.
16831
16832 @item info vtbl @var{expression}.
16833 The @code{info vtbl} command can be used to display the virtual
16834 method tables of the object computed by @var{expression}. This shows
16835 one entry per virtual table; there may be multiple virtual tables when
16836 multiple inheritance is in use.
16837
16838 @cindex C@t{++} demangling
16839 @item demangle @var{name}
16840 Demangle @var{name}.
16841 @xref{Symbols}, for a more complete description of the @code{demangle} command.
16842
16843 @cindex C@t{++} symbol display
16844 @item set print demangle
16845 @itemx show print demangle
16846 @itemx set print asm-demangle
16847 @itemx show print asm-demangle
16848 Control whether C@t{++} symbols display in their source form, both when
16849 displaying code as C@t{++} source and when displaying disassemblies.
16850 @xref{Print Settings, ,Print Settings}.
16851
16852 @item set print object
16853 @itemx show print object
16854 Choose whether to print derived (actual) or declared types of objects.
16855 @xref{Print Settings, ,Print Settings}.
16856
16857 @item set print vtbl
16858 @itemx show print vtbl
16859 Control the format for printing virtual function tables.
16860 @xref{Print Settings, ,Print Settings}.
16861 (The @code{vtbl} commands do not work on programs compiled with the HP
16862 ANSI C@t{++} compiler (@code{aCC}).)
16863
16864 @kindex set overload-resolution
16865 @cindex overloaded functions, overload resolution
16866 @item set overload-resolution on
16867 Enable overload resolution for C@t{++} expression evaluation. The default
16868 is on. For overloaded functions, @value{GDBN} evaluates the arguments
16869 and searches for a function whose signature matches the argument types,
16870 using the standard C@t{++} conversion rules (see @ref{C Plus Plus
16871 Expressions, ,C@t{++} Expressions}, for details).
16872 If it cannot find a match, it emits a message.
16873
16874 @item set overload-resolution off
16875 Disable overload resolution for C@t{++} expression evaluation. For
16876 overloaded functions that are not class member functions, @value{GDBN}
16877 chooses the first function of the specified name that it finds in the
16878 symbol table, whether or not its arguments are of the correct type. For
16879 overloaded functions that are class member functions, @value{GDBN}
16880 searches for a function whose signature @emph{exactly} matches the
16881 argument types.
16882
16883 @kindex show overload-resolution
16884 @item show overload-resolution
16885 Show the current setting of overload resolution.
16886
16887 @item @r{Overloaded symbol names}
16888 You can specify a particular definition of an overloaded symbol, using
16889 the same notation that is used to declare such symbols in C@t{++}: type
16890 @code{@var{symbol}(@var{types})} rather than just @var{symbol}. You can
16891 also use the @value{GDBN} command-line word completion facilities to list the
16892 available choices, or to finish the type list for you.
16893 @xref{Completion,, Command Completion}, for details on how to do this.
16894
16895 @item @r{Breakpoints in template functions}
16896
16897 Similar to how overloaded symbols are handled, @value{GDBN} will ignore
16898 template parameter lists when it encounters a symbol which includes a
16899 C@t{++} template. This permits setting breakpoints on families of template functions
16900 or functions whose parameters include template types.
16901
16902 The @kbd{-qualified} flag may be used to override this behavior, causing
16903 @value{GDBN} to search for a specific function or type.
16904
16905 The @value{GDBN} command-line word completion facility also understands
16906 template parameters and may be used to list available choices or finish
16907 template parameter lists for you. @xref{Completion,, Command Completion}, for
16908 details on how to do this.
16909
16910 @item @r{Breakpoints in functions with ABI tags}
16911
16912 The GNU C@t{++} compiler introduced the notion of ABI ``tags'', which
16913 correspond to changes in the ABI of a type, function, or variable that
16914 would not otherwise be reflected in a mangled name. See
16915 @url{https://developers.redhat.com/blog/2015/02/05/gcc5-and-the-c11-abi/}
16916 for more detail.
16917
16918 The ABI tags are visible in C@t{++} demangled names. For example, a
16919 function that returns a std::string:
16920
16921 @smallexample
16922 std::string function(int);
16923 @end smallexample
16924
16925 @noindent
16926 when compiled for the C++11 ABI is marked with the @code{cxx11} ABI
16927 tag, and @value{GDBN} displays the symbol like this:
16928
16929 @smallexample
16930 function[abi:cxx11](int)
16931 @end smallexample
16932
16933 You can set a breakpoint on such functions simply as if they had no
16934 tag. For example:
16935
16936 @smallexample
16937 (gdb) b function(int)
16938 Breakpoint 2 at 0x40060d: file main.cc, line 10.
16939 (gdb) info breakpoints
16940 Num Type Disp Enb Address What
16941 1 breakpoint keep y 0x0040060d in function[abi:cxx11](int)
16942 at main.cc:10
16943 @end smallexample
16944
16945 On the rare occasion you need to disambiguate between different ABI
16946 tags, you can do so by simply including the ABI tag in the function
16947 name, like:
16948
16949 @smallexample
16950 (@value{GDBP}) b ambiguous[abi:other_tag](int)
16951 @end smallexample
16952 @end table
16953
16954 @node Decimal Floating Point
16955 @subsubsection Decimal Floating Point format
16956 @cindex decimal floating point format
16957
16958 @value{GDBN} can examine, set and perform computations with numbers in
16959 decimal floating point format, which in the C language correspond to the
16960 @code{_Decimal32}, @code{_Decimal64} and @code{_Decimal128} types as
16961 specified by the extension to support decimal floating-point arithmetic.
16962
16963 There are two encodings in use, depending on the architecture: BID (Binary
16964 Integer Decimal) for x86 and x86-64, and DPD (Densely Packed Decimal) for
16965 PowerPC and S/390. @value{GDBN} will use the appropriate encoding for the
16966 configured target.
16967
16968 Because of a limitation in @file{libdecnumber}, the library used by @value{GDBN}
16969 to manipulate decimal floating point numbers, it is not possible to convert
16970 (using a cast, for example) integers wider than 32-bit to decimal float.
16971
16972 In addition, in order to imitate @value{GDBN}'s behaviour with binary floating
16973 point computations, error checking in decimal float operations ignores
16974 underflow, overflow and divide by zero exceptions.
16975
16976 In the PowerPC architecture, @value{GDBN} provides a set of pseudo-registers
16977 to inspect @code{_Decimal128} values stored in floating point registers.
16978 See @ref{PowerPC,,PowerPC} for more details.
16979
16980 @node D
16981 @subsection D
16982
16983 @cindex D
16984 @value{GDBN} can be used to debug programs written in D and compiled with
16985 GDC, LDC or DMD compilers. Currently @value{GDBN} supports only one D
16986 specific feature --- dynamic arrays.
16987
16988 @node Go
16989 @subsection Go
16990
16991 @cindex Go (programming language)
16992 @value{GDBN} can be used to debug programs written in Go and compiled with
16993 @file{gccgo} or @file{6g} compilers.
16994
16995 Here is a summary of the Go-specific features and restrictions:
16996
16997 @table @code
16998 @cindex current Go package
16999 @item The current Go package
17000 The name of the current package does not need to be specified when
17001 specifying global variables and functions.
17002
17003 For example, given the program:
17004
17005 @example
17006 package main
17007 var myglob = "Shall we?"
17008 func main () @{
17009 // ...
17010 @}
17011 @end example
17012
17013 When stopped inside @code{main} either of these work:
17014
17015 @example
17016 (gdb) p myglob
17017 (gdb) p main.myglob
17018 @end example
17019
17020 @cindex builtin Go types
17021 @item Builtin Go types
17022 The @code{string} type is recognized by @value{GDBN} and is printed
17023 as a string.
17024
17025 @cindex builtin Go functions
17026 @item Builtin Go functions
17027 The @value{GDBN} expression parser recognizes the @code{unsafe.Sizeof}
17028 function and handles it internally.
17029
17030 @cindex restrictions on Go expressions
17031 @item Restrictions on Go expressions
17032 All Go operators are supported except @code{&^}.
17033 The Go @code{_} ``blank identifier'' is not supported.
17034 Automatic dereferencing of pointers is not supported.
17035 @end table
17036
17037 @node Objective-C
17038 @subsection Objective-C
17039
17040 @cindex Objective-C
17041 This section provides information about some commands and command
17042 options that are useful for debugging Objective-C code. See also
17043 @ref{Symbols, info classes}, and @ref{Symbols, info selectors}, for a
17044 few more commands specific to Objective-C support.
17045
17046 @menu
17047 * Method Names in Commands::
17048 * The Print Command with Objective-C::
17049 @end menu
17050
17051 @node Method Names in Commands
17052 @subsubsection Method Names in Commands
17053
17054 The following commands have been extended to accept Objective-C method
17055 names as line specifications:
17056
17057 @kindex clear@r{, and Objective-C}
17058 @kindex break@r{, and Objective-C}
17059 @kindex info line@r{, and Objective-C}
17060 @kindex jump@r{, and Objective-C}
17061 @kindex list@r{, and Objective-C}
17062 @itemize
17063 @item @code{clear}
17064 @item @code{break}
17065 @item @code{info line}
17066 @item @code{jump}
17067 @item @code{list}
17068 @end itemize
17069
17070 A fully qualified Objective-C method name is specified as
17071
17072 @smallexample
17073 -[@var{Class} @var{methodName}]
17074 @end smallexample
17075
17076 where the minus sign is used to indicate an instance method and a
17077 plus sign (not shown) is used to indicate a class method. The class
17078 name @var{Class} and method name @var{methodName} are enclosed in
17079 brackets, similar to the way messages are specified in Objective-C
17080 source code. For example, to set a breakpoint at the @code{create}
17081 instance method of class @code{Fruit} in the program currently being
17082 debugged, enter:
17083
17084 @smallexample
17085 break -[Fruit create]
17086 @end smallexample
17087
17088 To list ten program lines around the @code{initialize} class method,
17089 enter:
17090
17091 @smallexample
17092 list +[NSText initialize]
17093 @end smallexample
17094
17095 In the current version of @value{GDBN}, the plus or minus sign is
17096 required. In future versions of @value{GDBN}, the plus or minus
17097 sign will be optional, but you can use it to narrow the search. It
17098 is also possible to specify just a method name:
17099
17100 @smallexample
17101 break create
17102 @end smallexample
17103
17104 You must specify the complete method name, including any colons. If
17105 your program's source files contain more than one @code{create} method,
17106 you'll be presented with a numbered list of classes that implement that
17107 method. Indicate your choice by number, or type @samp{0} to exit if
17108 none apply.
17109
17110 As another example, to clear a breakpoint established at the
17111 @code{makeKeyAndOrderFront:} method of the @code{NSWindow} class, enter:
17112
17113 @smallexample
17114 clear -[NSWindow makeKeyAndOrderFront:]
17115 @end smallexample
17116
17117 @node The Print Command with Objective-C
17118 @subsubsection The Print Command With Objective-C
17119 @cindex Objective-C, print objects
17120 @kindex print-object
17121 @kindex po @r{(@code{print-object})}
17122
17123 The print command has also been extended to accept methods. For example:
17124
17125 @smallexample
17126 print -[@var{object} hash]
17127 @end smallexample
17128
17129 @cindex print an Objective-C object description
17130 @cindex @code{_NSPrintForDebugger}, and printing Objective-C objects
17131 @noindent
17132 will tell @value{GDBN} to send the @code{hash} message to @var{object}
17133 and print the result. Also, an additional command has been added,
17134 @code{print-object} or @code{po} for short, which is meant to print
17135 the description of an object. However, this command may only work
17136 with certain Objective-C libraries that have a particular hook
17137 function, @code{_NSPrintForDebugger}, defined.
17138
17139 @node OpenCL C
17140 @subsection OpenCL C
17141
17142 @cindex OpenCL C
17143 This section provides information about @value{GDBN}s OpenCL C support.
17144
17145 @menu
17146 * OpenCL C Datatypes::
17147 * OpenCL C Expressions::
17148 * OpenCL C Operators::
17149 @end menu
17150
17151 @node OpenCL C Datatypes
17152 @subsubsection OpenCL C Datatypes
17153
17154 @cindex OpenCL C Datatypes
17155 @value{GDBN} supports the builtin scalar and vector datatypes specified
17156 by OpenCL 1.1. In addition the half- and double-precision floating point
17157 data types of the @code{cl_khr_fp16} and @code{cl_khr_fp64} OpenCL
17158 extensions are also known to @value{GDBN}.
17159
17160 @node OpenCL C Expressions
17161 @subsubsection OpenCL C Expressions
17162
17163 @cindex OpenCL C Expressions
17164 @value{GDBN} supports accesses to vector components including the access as
17165 lvalue where possible. Since OpenCL C is based on C99 most C expressions
17166 supported by @value{GDBN} can be used as well.
17167
17168 @node OpenCL C Operators
17169 @subsubsection OpenCL C Operators
17170
17171 @cindex OpenCL C Operators
17172 @value{GDBN} supports the operators specified by OpenCL 1.1 for scalar and
17173 vector data types.
17174
17175 @node Fortran
17176 @subsection Fortran
17177 @cindex Fortran-specific support in @value{GDBN}
17178
17179 @value{GDBN} can be used to debug programs written in Fortran. Note, that not
17180 all Fortran language features are available yet.
17181
17182 @cindex trailing underscore, in Fortran symbols
17183 Some Fortran compilers (@sc{gnu} Fortran 77 and Fortran 95 compilers
17184 among them) append an underscore to the names of variables and
17185 functions. When you debug programs compiled by those compilers, you
17186 will need to refer to variables and functions with a trailing
17187 underscore.
17188
17189 @cindex Fortran Defaults
17190 Fortran symbols are usually case-insensitive, so @value{GDBN} by
17191 default uses case-insensitive matching for Fortran symbols. You can
17192 change that with the @samp{set case-insensitive} command, see
17193 @ref{Symbols}, for the details.
17194
17195 @menu
17196 * Fortran Types:: Fortran builtin types
17197 * Fortran Operators:: Fortran operators and expressions
17198 * Fortran Intrinsics:: Fortran intrinsic functions
17199 * Special Fortran Commands:: Special @value{GDBN} commands for Fortran
17200 @end menu
17201
17202 @node Fortran Types
17203 @subsubsection Fortran Types
17204
17205 @cindex Fortran Types
17206
17207 In Fortran the primitive data-types have an associated @code{KIND} type
17208 parameter, written as @samp{@var{type}*@var{kindparam}},
17209 @samp{@var{type}*@var{kindparam}}, or in the @value{GDBN}-only dialect
17210 @samp{@var{type}_@var{kindparam}}. A concrete example would be
17211 @samp{@code{Real*4}}, @samp{@code{Real(kind=4)}}, and @samp{@code{Real_4}}.
17212 The kind of a type can be retrieved by using the intrinsic function
17213 @code{KIND}, see @ref{Fortran Intrinsics}.
17214
17215 Generally, the actual implementation of the @code{KIND} type parameter is
17216 compiler specific. In @value{GDBN} the kind parameter is implemented in
17217 accordance with its use in the @sc{gnu} @command{gfortran} compiler. Here, the
17218 kind parameter for a given @var{type} specifies its size in memory --- a
17219 Fortran @code{Integer*4} or @code{Integer(kind=4)} would be an integer type
17220 occupying 4 bytes of memory. An exception to this rule is the @code{Complex}
17221 type for which the kind of the type does not specify its entire size, but
17222 the size of each of the two @code{Real}'s it is composed of. A
17223 @code{Complex*4} would thus consist of two @code{Real*4}s and occupy 8 bytes
17224 of memory.
17225
17226 For every type there is also a default kind associated with it, e.g.@
17227 @code{Integer} in @value{GDBN} will internally be an @code{Integer*4} (see the
17228 table below for default types). The default types are the same as in @sc{gnu}
17229 compilers but note, that the @sc{gnu} default types can actually be changed by
17230 compiler flags such as @option{-fdefault-integer-8} and
17231 @option{-fdefault-real-8}.
17232
17233 Not every kind parameter is valid for every type and in @value{GDBN} the
17234 following type kinds are available.
17235
17236 @table @code
17237 @item Integer
17238 @code{Integer*1}, @code{Integer*2}, @code{Integer*4}, @code{Integer*8}, and
17239 @code{Integer} = @code{Integer*4}.
17240
17241 @item Logical
17242 @code{Logical*1}, @code{Logical*2}, @code{Logical*4}, @code{Logical*8}, and
17243 @code{Logical} = @code{Logical*4}.
17244
17245 @item Real
17246 @code{Real*4}, @code{Real*8}, @code{Real*16}, and @code{Real} = @code{Real*4}.
17247
17248 @item Complex
17249 @code{Complex*4}, @code{Complex*8}, @code{Complex*16}, and @code{Complex} =
17250 @code{Complex*4}.
17251
17252 @end table
17253
17254 @node Fortran Operators
17255 @subsubsection Fortran Operators and Expressions
17256
17257 @cindex Fortran operators and expressions
17258
17259 Operators must be defined on values of specific types. For instance,
17260 @code{+} is defined on numbers, but not on characters or other non-
17261 arithmetic types. Operators are often defined on groups of types.
17262
17263 @table @code
17264 @item **
17265 The exponentiation operator. It raises the first operand to the power
17266 of the second one.
17267
17268 @item :
17269 The range operator. Normally used in the form of array(low:high) to
17270 represent a section of array.
17271
17272 @item %
17273 The access component operator. Normally used to access elements in derived
17274 types. Also suitable for unions. As unions aren't part of regular Fortran,
17275 this can only happen when accessing a register that uses a gdbarch-defined
17276 union type.
17277 @item ::
17278 The scope operator. Normally used to access variables in modules or
17279 to set breakpoints on subroutines nested in modules or in other
17280 subroutines (internal subroutines).
17281 @end table
17282
17283 @node Fortran Intrinsics
17284 @subsubsection Fortran Intrinsics
17285
17286 @cindex Fortran Intrinsics
17287
17288 Fortran provides a large set of intrinsic procedures. @value{GDBN} implements
17289 an incomplete subset of those procedures and their overloads. Some of these
17290 procedures take an optional @code{KIND} parameter, see @ref{Fortran Types}.
17291
17292 @table @code
17293 @item ABS(@var{a})
17294 Computes the absolute value of its argument @var{a}. Currently not supported
17295 for @code{Complex} arguments.
17296
17297 @item ALLOCATE(@var{array})
17298 Returns whether @var{array} is allocated or not.
17299
17300 @item ASSOCIATED(@var{pointer} [, @var{target}])
17301 Returns the association status of the pointer @var{pointer} or, if @var{target}
17302 is present, whether @var{pointer} is associated with the target @var{target}.
17303
17304 @item CEILING(@var{a} [, @var{kind}])
17305 Computes the least integer greater than or equal to @var{a}. The optional
17306 parameter @var{kind} specifies the kind of the return type
17307 @code{Integer(@var{kind})}.
17308
17309 @item CMPLX(@var{x} [, @var{y} [, @var{kind}]])
17310 Returns a complex number where @var{x} is converted to the real component. If
17311 @var{y} is present it is converted to the imaginary component. If @var{y} is
17312 not present then the imaginary component is set to @code{0.0} except if @var{x}
17313 itself is of @code{Complex} type. The optional parameter @var{kind} specifies
17314 the kind of the return type @code{Complex(@var{kind})}.
17315
17316 @item FLOOR(@var{a} [, @var{kind}])
17317 Computes the greatest integer less than or equal to @var{a}. The optional
17318 parameter @var{kind} specifies the kind of the return type
17319 @code{Integer(@var{kind})}.
17320
17321 @item KIND(@var{a})
17322 Returns the kind value of the argument @var{a}, see @ref{Fortran Types}.
17323
17324 @item LBOUND(@var{array} [, @var{dim} [, @var{kind}]])
17325 Returns the lower bounds of an @var{array}, or a single lower bound along the
17326 @var{dim} dimension if present. The optional parameter @var{kind} specifies
17327 the kind of the return type @code{Integer(@var{kind})}.
17328
17329 @item LOC(@var{x})
17330 Returns the address of @var{x} as an @code{Integer}.
17331
17332 @item MOD(@var{a}, @var{p})
17333 Computes the remainder of the division of @var{a} by @var{p}.
17334
17335 @item MODULO(@var{a}, @var{p})
17336 Computes the @var{a} modulo @var{p}.
17337
17338 @item RANK(@var{a})
17339 Returns the rank of a scalar or array (scalars have rank @code{0}).
17340
17341 @item SHAPE(@var{a})
17342 Returns the shape of a scalar or array (scalars have shape @samp{()}).
17343
17344 @item SIZE(@var{array}[, @var{dim} [, @var{kind}]])
17345 Returns the extent of @var{array} along a specified dimension @var{dim}, or the
17346 total number of elements in @var{array} if @var{dim} is absent. The optional
17347 parameter @var{kind} specifies the kind of the return type
17348 @code{Integer(@var{kind})}.
17349
17350 @item UBOUND(@var{array} [, @var{dim} [, @var{kind}]])
17351 Returns the upper bounds of an @var{array}, or a single upper bound along the
17352 @var{dim} dimension if present. The optional parameter @var{kind} specifies
17353 the kind of the return type @code{Integer(@var{kind})}.
17354
17355 @end table
17356
17357 @node Special Fortran Commands
17358 @subsubsection Special Fortran Commands
17359
17360 @cindex Special Fortran commands
17361
17362 @value{GDBN} has some commands to support Fortran-specific features,
17363 such as displaying common blocks.
17364
17365 @table @code
17366 @cindex @code{COMMON} blocks, Fortran
17367 @kindex info common
17368 @item info common @r{[}@var{common-name}@r{]}
17369 This command prints the values contained in the Fortran @code{COMMON}
17370 block whose name is @var{common-name}. With no argument, the names of
17371 all @code{COMMON} blocks visible at the current program location are
17372 printed.
17373 @cindex arrays slices (Fortran)
17374 @kindex set fortran repack-array-slices
17375 @kindex show fortran repack-array-slices
17376 @item set fortran repack-array-slices [on|off]
17377 @item show fortran repack-array-slices
17378 When taking a slice from an array, a Fortran compiler can choose to
17379 either produce an array descriptor that describes the slice in place,
17380 or it may repack the slice, copying the elements of the slice into a
17381 new region of memory.
17382
17383 When this setting is on, then @value{GDBN} will also repack array
17384 slices in some situations. When this setting is off, then
17385 @value{GDBN} will create array descriptors for slices that reference
17386 the original data in place.
17387
17388 @value{GDBN} will never repack an array slice if the data for the
17389 slice is contiguous within the original array.
17390
17391 @value{GDBN} will always repack string slices if the data for the
17392 slice is non-contiguous within the original string as @value{GDBN}
17393 does not support printing non-contiguous strings.
17394
17395 The default for this setting is @code{off}.
17396 @end table
17397
17398 @node Pascal
17399 @subsection Pascal
17400
17401 @cindex Pascal support in @value{GDBN}, limitations
17402 Debugging Pascal programs which use sets, subranges, file variables, or
17403 nested functions does not currently work. @value{GDBN} does not support
17404 entering expressions, printing values, or similar features using Pascal
17405 syntax.
17406
17407 The Pascal-specific command @code{set print pascal_static-members}
17408 controls whether static members of Pascal objects are displayed.
17409 @xref{Print Settings, pascal_static-members}.
17410
17411 @node Rust
17412 @subsection Rust
17413
17414 @value{GDBN} supports the @url{https://www.rust-lang.org/, Rust
17415 Programming Language}. Type- and value-printing, and expression
17416 parsing, are reasonably complete. However, there are a few
17417 peculiarities and holes to be aware of.
17418
17419 @itemize @bullet
17420 @item
17421 Linespecs (@pxref{Specify Location}) are never relative to the current
17422 crate. Instead, they act as if there were a global namespace of
17423 crates, somewhat similar to the way @code{extern crate} behaves.
17424
17425 That is, if @value{GDBN} is stopped at a breakpoint in a function in
17426 crate @samp{A}, module @samp{B}, then @code{break B::f} will attempt
17427 to set a breakpoint in a function named @samp{f} in a crate named
17428 @samp{B}.
17429
17430 As a consequence of this approach, linespecs also cannot refer to
17431 items using @samp{self::} or @samp{super::}.
17432
17433 @item
17434 Because @value{GDBN} implements Rust name-lookup semantics in
17435 expressions, it will sometimes prepend the current crate to a name.
17436 For example, if @value{GDBN} is stopped at a breakpoint in the crate
17437 @samp{K}, then @code{print ::x::y} will try to find the symbol
17438 @samp{K::x::y}.
17439
17440 However, since it is useful to be able to refer to other crates when
17441 debugging, @value{GDBN} provides the @code{extern} extension to
17442 circumvent this. To use the extension, just put @code{extern} before
17443 a path expression to refer to the otherwise unavailable ``global''
17444 scope.
17445
17446 In the above example, if you wanted to refer to the symbol @samp{y} in
17447 the crate @samp{x}, you would use @code{print extern x::y}.
17448
17449 @item
17450 The Rust expression evaluator does not support ``statement-like''
17451 expressions such as @code{if} or @code{match}, or lambda expressions.
17452
17453 @item
17454 Tuple expressions are not implemented.
17455
17456 @item
17457 The Rust expression evaluator does not currently implement the
17458 @code{Drop} trait. Objects that may be created by the evaluator will
17459 never be destroyed.
17460
17461 @item
17462 @value{GDBN} does not implement type inference for generics. In order
17463 to call generic functions or otherwise refer to generic items, you
17464 will have to specify the type parameters manually.
17465
17466 @item
17467 @value{GDBN} currently uses the C@t{++} demangler for Rust. In most
17468 cases this does not cause any problems. However, in an expression
17469 context, completing a generic function name will give syntactically
17470 invalid results. This happens because Rust requires the @samp{::}
17471 operator between the function name and its generic arguments. For
17472 example, @value{GDBN} might provide a completion like
17473 @code{crate::f<u32>}, where the parser would require
17474 @code{crate::f::<u32>}.
17475
17476 @item
17477 As of this writing, the Rust compiler (version 1.8) has a few holes in
17478 the debugging information it generates. These holes prevent certain
17479 features from being implemented by @value{GDBN}:
17480 @itemize @bullet
17481
17482 @item
17483 Method calls cannot be made via traits.
17484
17485 @item
17486 Operator overloading is not implemented.
17487
17488 @item
17489 When debugging in a monomorphized function, you cannot use the generic
17490 type names.
17491
17492 @item
17493 The type @code{Self} is not available.
17494
17495 @item
17496 @code{use} statements are not available, so some names may not be
17497 available in the crate.
17498 @end itemize
17499 @end itemize
17500
17501 @node Modula-2
17502 @subsection Modula-2
17503
17504 @cindex Modula-2, @value{GDBN} support
17505
17506 The extensions made to @value{GDBN} to support Modula-2 only support
17507 output from the @sc{gnu} Modula-2 compiler (which is currently being
17508 developed). Other Modula-2 compilers are not currently supported, and
17509 attempting to debug executables produced by them is most likely
17510 to give an error as @value{GDBN} reads in the executable's symbol
17511 table.
17512
17513 @cindex expressions in Modula-2
17514 @menu
17515 * M2 Operators:: Built-in operators
17516 * Built-In Func/Proc:: Built-in functions and procedures
17517 * M2 Constants:: Modula-2 constants
17518 * M2 Types:: Modula-2 types
17519 * M2 Defaults:: Default settings for Modula-2
17520 * Deviations:: Deviations from standard Modula-2
17521 * M2 Checks:: Modula-2 type and range checks
17522 * M2 Scope:: The scope operators @code{::} and @code{.}
17523 * GDB/M2:: @value{GDBN} and Modula-2
17524 @end menu
17525
17526 @node M2 Operators
17527 @subsubsection Operators
17528 @cindex Modula-2 operators
17529
17530 Operators must be defined on values of specific types. For instance,
17531 @code{+} is defined on numbers, but not on structures. Operators are
17532 often defined on groups of types. For the purposes of Modula-2, the
17533 following definitions hold:
17534
17535 @itemize @bullet
17536
17537 @item
17538 @emph{Integral types} consist of @code{INTEGER}, @code{CARDINAL}, and
17539 their subranges.
17540
17541 @item
17542 @emph{Character types} consist of @code{CHAR} and its subranges.
17543
17544 @item
17545 @emph{Floating-point types} consist of @code{REAL}.
17546
17547 @item
17548 @emph{Pointer types} consist of anything declared as @code{POINTER TO
17549 @var{type}}.
17550
17551 @item
17552 @emph{Scalar types} consist of all of the above.
17553
17554 @item
17555 @emph{Set types} consist of @code{SET} and @code{BITSET} types.
17556
17557 @item
17558 @emph{Boolean types} consist of @code{BOOLEAN}.
17559 @end itemize
17560
17561 @noindent
17562 The following operators are supported, and appear in order of
17563 increasing precedence:
17564
17565 @table @code
17566 @item ,
17567 Function argument or array index separator.
17568
17569 @item :=
17570 Assignment. The value of @var{var} @code{:=} @var{value} is
17571 @var{value}.
17572
17573 @item <@r{, }>
17574 Less than, greater than on integral, floating-point, or enumerated
17575 types.
17576
17577 @item <=@r{, }>=
17578 Less than or equal to, greater than or equal to
17579 on integral, floating-point and enumerated types, or set inclusion on
17580 set types. Same precedence as @code{<}.
17581
17582 @item =@r{, }<>@r{, }#
17583 Equality and two ways of expressing inequality, valid on scalar types.
17584 Same precedence as @code{<}. In @value{GDBN} scripts, only @code{<>} is
17585 available for inequality, since @code{#} conflicts with the script
17586 comment character.
17587
17588 @item IN
17589 Set membership. Defined on set types and the types of their members.
17590 Same precedence as @code{<}.
17591
17592 @item OR
17593 Boolean disjunction. Defined on boolean types.
17594
17595 @item AND@r{, }&
17596 Boolean conjunction. Defined on boolean types.
17597
17598 @item @@
17599 The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
17600
17601 @item +@r{, }-
17602 Addition and subtraction on integral and floating-point types, or union
17603 and difference on set types.
17604
17605 @item *
17606 Multiplication on integral and floating-point types, or set intersection
17607 on set types.
17608
17609 @item /
17610 Division on floating-point types, or symmetric set difference on set
17611 types. Same precedence as @code{*}.
17612
17613 @item DIV@r{, }MOD
17614 Integer division and remainder. Defined on integral types. Same
17615 precedence as @code{*}.
17616
17617 @item -
17618 Negative. Defined on @code{INTEGER} and @code{REAL} data.
17619
17620 @item ^
17621 Pointer dereferencing. Defined on pointer types.
17622
17623 @item NOT
17624 Boolean negation. Defined on boolean types. Same precedence as
17625 @code{^}.
17626
17627 @item .
17628 @code{RECORD} field selector. Defined on @code{RECORD} data. Same
17629 precedence as @code{^}.
17630
17631 @item []
17632 Array indexing. Defined on @code{ARRAY} data. Same precedence as @code{^}.
17633
17634 @item ()
17635 Procedure argument list. Defined on @code{PROCEDURE} objects. Same precedence
17636 as @code{^}.
17637
17638 @item ::@r{, }.
17639 @value{GDBN} and Modula-2 scope operators.
17640 @end table
17641
17642 @quotation
17643 @emph{Warning:} Set expressions and their operations are not yet supported, so @value{GDBN}
17644 treats the use of the operator @code{IN}, or the use of operators
17645 @code{+}, @code{-}, @code{*}, @code{/}, @code{=}, , @code{<>}, @code{#},
17646 @code{<=}, and @code{>=} on sets as an error.
17647 @end quotation
17648
17649
17650 @node Built-In Func/Proc
17651 @subsubsection Built-in Functions and Procedures
17652 @cindex Modula-2 built-ins
17653
17654 Modula-2 also makes available several built-in procedures and functions.
17655 In describing these, the following metavariables are used:
17656
17657 @table @var
17658
17659 @item a
17660 represents an @code{ARRAY} variable.
17661
17662 @item c
17663 represents a @code{CHAR} constant or variable.
17664
17665 @item i
17666 represents a variable or constant of integral type.
17667
17668 @item m
17669 represents an identifier that belongs to a set. Generally used in the
17670 same function with the metavariable @var{s}. The type of @var{s} should
17671 be @code{SET OF @var{mtype}} (where @var{mtype} is the type of @var{m}).
17672
17673 @item n
17674 represents a variable or constant of integral or floating-point type.
17675
17676 @item r
17677 represents a variable or constant of floating-point type.
17678
17679 @item t
17680 represents a type.
17681
17682 @item v
17683 represents a variable.
17684
17685 @item x
17686 represents a variable or constant of one of many types. See the
17687 explanation of the function for details.
17688 @end table
17689
17690 All Modula-2 built-in procedures also return a result, described below.
17691
17692 @table @code
17693 @item ABS(@var{n})
17694 Returns the absolute value of @var{n}.
17695
17696 @item CAP(@var{c})
17697 If @var{c} is a lower case letter, it returns its upper case
17698 equivalent, otherwise it returns its argument.
17699
17700 @item CHR(@var{i})
17701 Returns the character whose ordinal value is @var{i}.
17702
17703 @item DEC(@var{v})
17704 Decrements the value in the variable @var{v} by one. Returns the new value.
17705
17706 @item DEC(@var{v},@var{i})
17707 Decrements the value in the variable @var{v} by @var{i}. Returns the
17708 new value.
17709
17710 @item EXCL(@var{m},@var{s})
17711 Removes the element @var{m} from the set @var{s}. Returns the new
17712 set.
17713
17714 @item FLOAT(@var{i})
17715 Returns the floating point equivalent of the integer @var{i}.
17716
17717 @item HIGH(@var{a})
17718 Returns the index of the last member of @var{a}.
17719
17720 @item INC(@var{v})
17721 Increments the value in the variable @var{v} by one. Returns the new value.
17722
17723 @item INC(@var{v},@var{i})
17724 Increments the value in the variable @var{v} by @var{i}. Returns the
17725 new value.
17726
17727 @item INCL(@var{m},@var{s})
17728 Adds the element @var{m} to the set @var{s} if it is not already
17729 there. Returns the new set.
17730
17731 @item MAX(@var{t})
17732 Returns the maximum value of the type @var{t}.
17733
17734 @item MIN(@var{t})
17735 Returns the minimum value of the type @var{t}.
17736
17737 @item ODD(@var{i})
17738 Returns boolean TRUE if @var{i} is an odd number.
17739
17740 @item ORD(@var{x})
17741 Returns the ordinal value of its argument. For example, the ordinal
17742 value of a character is its @sc{ascii} value (on machines supporting
17743 the @sc{ascii} character set). The argument @var{x} must be of an
17744 ordered type, which include integral, character and enumerated types.
17745
17746 @item SIZE(@var{x})
17747 Returns the size of its argument. The argument @var{x} can be a
17748 variable or a type.
17749
17750 @item TRUNC(@var{r})
17751 Returns the integral part of @var{r}.
17752
17753 @item TSIZE(@var{x})
17754 Returns the size of its argument. The argument @var{x} can be a
17755 variable or a type.
17756
17757 @item VAL(@var{t},@var{i})
17758 Returns the member of the type @var{t} whose ordinal value is @var{i}.
17759 @end table
17760
17761 @quotation
17762 @emph{Warning:} Sets and their operations are not yet supported, so
17763 @value{GDBN} treats the use of procedures @code{INCL} and @code{EXCL} as
17764 an error.
17765 @end quotation
17766
17767 @cindex Modula-2 constants
17768 @node M2 Constants
17769 @subsubsection Constants
17770
17771 @value{GDBN} allows you to express the constants of Modula-2 in the following
17772 ways:
17773
17774 @itemize @bullet
17775
17776 @item
17777 Integer constants are simply a sequence of digits. When used in an
17778 expression, a constant is interpreted to be type-compatible with the
17779 rest of the expression. Hexadecimal integers are specified by a
17780 trailing @samp{H}, and octal integers by a trailing @samp{B}.
17781
17782 @item
17783 Floating point constants appear as a sequence of digits, followed by a
17784 decimal point and another sequence of digits. An optional exponent can
17785 then be specified, in the form @samp{E@r{[}+@r{|}-@r{]}@var{nnn}}, where
17786 @samp{@r{[}+@r{|}-@r{]}@var{nnn}} is the desired exponent. All of the
17787 digits of the floating point constant must be valid decimal (base 10)
17788 digits.
17789
17790 @item
17791 Character constants consist of a single character enclosed by a pair of
17792 like quotes, either single (@code{'}) or double (@code{"}). They may
17793 also be expressed by their ordinal value (their @sc{ascii} value, usually)
17794 followed by a @samp{C}.
17795
17796 @item
17797 String constants consist of a sequence of characters enclosed by a
17798 pair of like quotes, either single (@code{'}) or double (@code{"}).
17799 Escape sequences in the style of C are also allowed. @xref{C
17800 Constants, ,C and C@t{++} Constants}, for a brief explanation of escape
17801 sequences.
17802
17803 @item
17804 Enumerated constants consist of an enumerated identifier.
17805
17806 @item
17807 Boolean constants consist of the identifiers @code{TRUE} and
17808 @code{FALSE}.
17809
17810 @item
17811 Pointer constants consist of integral values only.
17812
17813 @item
17814 Set constants are not yet supported.
17815 @end itemize
17816
17817 @node M2 Types
17818 @subsubsection Modula-2 Types
17819 @cindex Modula-2 types
17820
17821 Currently @value{GDBN} can print the following data types in Modula-2
17822 syntax: array types, record types, set types, pointer types, procedure
17823 types, enumerated types, subrange types and base types. You can also
17824 print the contents of variables declared using these type.
17825 This section gives a number of simple source code examples together with
17826 sample @value{GDBN} sessions.
17827
17828 The first example contains the following section of code:
17829
17830 @smallexample
17831 VAR
17832 s: SET OF CHAR ;
17833 r: [20..40] ;
17834 @end smallexample
17835
17836 @noindent
17837 and you can request @value{GDBN} to interrogate the type and value of
17838 @code{r} and @code{s}.
17839
17840 @smallexample
17841 (@value{GDBP}) print s
17842 @{'A'..'C', 'Z'@}
17843 (@value{GDBP}) ptype s
17844 SET OF CHAR
17845 (@value{GDBP}) print r
17846 21
17847 (@value{GDBP}) ptype r
17848 [20..40]
17849 @end smallexample
17850
17851 @noindent
17852 Likewise if your source code declares @code{s} as:
17853
17854 @smallexample
17855 VAR
17856 s: SET ['A'..'Z'] ;
17857 @end smallexample
17858
17859 @noindent
17860 then you may query the type of @code{s} by:
17861
17862 @smallexample
17863 (@value{GDBP}) ptype s
17864 type = SET ['A'..'Z']
17865 @end smallexample
17866
17867 @noindent
17868 Note that at present you cannot interactively manipulate set
17869 expressions using the debugger.
17870
17871 The following example shows how you might declare an array in Modula-2
17872 and how you can interact with @value{GDBN} to print its type and contents:
17873
17874 @smallexample
17875 VAR
17876 s: ARRAY [-10..10] OF CHAR ;
17877 @end smallexample
17878
17879 @smallexample
17880 (@value{GDBP}) ptype s
17881 ARRAY [-10..10] OF CHAR
17882 @end smallexample
17883
17884 Note that the array handling is not yet complete and although the type
17885 is printed correctly, expression handling still assumes that all
17886 arrays have a lower bound of zero and not @code{-10} as in the example
17887 above.
17888
17889 Here are some more type related Modula-2 examples:
17890
17891 @smallexample
17892 TYPE
17893 colour = (blue, red, yellow, green) ;
17894 t = [blue..yellow] ;
17895 VAR
17896 s: t ;
17897 BEGIN
17898 s := blue ;
17899 @end smallexample
17900
17901 @noindent
17902 The @value{GDBN} interaction shows how you can query the data type
17903 and value of a variable.
17904
17905 @smallexample
17906 (@value{GDBP}) print s
17907 $1 = blue
17908 (@value{GDBP}) ptype t
17909 type = [blue..yellow]
17910 @end smallexample
17911
17912 @noindent
17913 In this example a Modula-2 array is declared and its contents
17914 displayed. Observe that the contents are written in the same way as
17915 their @code{C} counterparts.
17916
17917 @smallexample
17918 VAR
17919 s: ARRAY [1..5] OF CARDINAL ;
17920 BEGIN
17921 s[1] := 1 ;
17922 @end smallexample
17923
17924 @smallexample
17925 (@value{GDBP}) print s
17926 $1 = @{1, 0, 0, 0, 0@}
17927 (@value{GDBP}) ptype s
17928 type = ARRAY [1..5] OF CARDINAL
17929 @end smallexample
17930
17931 The Modula-2 language interface to @value{GDBN} also understands
17932 pointer types as shown in this example:
17933
17934 @smallexample
17935 VAR
17936 s: POINTER TO ARRAY [1..5] OF CARDINAL ;
17937 BEGIN
17938 NEW(s) ;
17939 s^[1] := 1 ;
17940 @end smallexample
17941
17942 @noindent
17943 and you can request that @value{GDBN} describes the type of @code{s}.
17944
17945 @smallexample
17946 (@value{GDBP}) ptype s
17947 type = POINTER TO ARRAY [1..5] OF CARDINAL
17948 @end smallexample
17949
17950 @value{GDBN} handles compound types as we can see in this example.
17951 Here we combine array types, record types, pointer types and subrange
17952 types:
17953
17954 @smallexample
17955 TYPE
17956 foo = RECORD
17957 f1: CARDINAL ;
17958 f2: CHAR ;
17959 f3: myarray ;
17960 END ;
17961
17962 myarray = ARRAY myrange OF CARDINAL ;
17963 myrange = [-2..2] ;
17964 VAR
17965 s: POINTER TO ARRAY myrange OF foo ;
17966 @end smallexample
17967
17968 @noindent
17969 and you can ask @value{GDBN} to describe the type of @code{s} as shown
17970 below.
17971
17972 @smallexample
17973 (@value{GDBP}) ptype s
17974 type = POINTER TO ARRAY [-2..2] OF foo = RECORD
17975 f1 : CARDINAL;
17976 f2 : CHAR;
17977 f3 : ARRAY [-2..2] OF CARDINAL;
17978 END
17979 @end smallexample
17980
17981 @node M2 Defaults
17982 @subsubsection Modula-2 Defaults
17983 @cindex Modula-2 defaults
17984
17985 If type and range checking are set automatically by @value{GDBN}, they
17986 both default to @code{on} whenever the working language changes to
17987 Modula-2. This happens regardless of whether you or @value{GDBN}
17988 selected the working language.
17989
17990 If you allow @value{GDBN} to set the language automatically, then entering
17991 code compiled from a file whose name ends with @file{.mod} sets the
17992 working language to Modula-2. @xref{Automatically, ,Having @value{GDBN}
17993 Infer the Source Language}, for further details.
17994
17995 @node Deviations
17996 @subsubsection Deviations from Standard Modula-2
17997 @cindex Modula-2, deviations from
17998
17999 A few changes have been made to make Modula-2 programs easier to debug.
18000 This is done primarily via loosening its type strictness:
18001
18002 @itemize @bullet
18003 @item
18004 Unlike in standard Modula-2, pointer constants can be formed by
18005 integers. This allows you to modify pointer variables during
18006 debugging. (In standard Modula-2, the actual address contained in a
18007 pointer variable is hidden from you; it can only be modified
18008 through direct assignment to another pointer variable or expression that
18009 returned a pointer.)
18010
18011 @item
18012 C escape sequences can be used in strings and characters to represent
18013 non-printable characters. @value{GDBN} prints out strings with these
18014 escape sequences embedded. Single non-printable characters are
18015 printed using the @samp{CHR(@var{nnn})} format.
18016
18017 @item
18018 The assignment operator (@code{:=}) returns the value of its right-hand
18019 argument.
18020
18021 @item
18022 All built-in procedures both modify @emph{and} return their argument.
18023 @end itemize
18024
18025 @node M2 Checks
18026 @subsubsection Modula-2 Type and Range Checks
18027 @cindex Modula-2 checks
18028
18029 @quotation
18030 @emph{Warning:} in this release, @value{GDBN} does not yet perform type or
18031 range checking.
18032 @end quotation
18033 @c FIXME remove warning when type/range checks added
18034
18035 @value{GDBN} considers two Modula-2 variables type equivalent if:
18036
18037 @itemize @bullet
18038 @item
18039 They are of types that have been declared equivalent via a @code{TYPE
18040 @var{t1} = @var{t2}} statement
18041
18042 @item
18043 They have been declared on the same line. (Note: This is true of the
18044 @sc{gnu} Modula-2 compiler, but it may not be true of other compilers.)
18045 @end itemize
18046
18047 As long as type checking is enabled, any attempt to combine variables
18048 whose types are not equivalent is an error.
18049
18050 Range checking is done on all mathematical operations, assignment, array
18051 index bounds, and all built-in functions and procedures.
18052
18053 @node M2 Scope
18054 @subsubsection The Scope Operators @code{::} and @code{.}
18055 @cindex scope
18056 @cindex @code{.}, Modula-2 scope operator
18057 @cindex colon, doubled as scope operator
18058 @ifinfo
18059 @vindex colon-colon@r{, in Modula-2}
18060 @c Info cannot handle :: but TeX can.
18061 @end ifinfo
18062 @ifnotinfo
18063 @vindex ::@r{, in Modula-2}
18064 @end ifnotinfo
18065
18066 There are a few subtle differences between the Modula-2 scope operator
18067 (@code{.}) and the @value{GDBN} scope operator (@code{::}). The two have
18068 similar syntax:
18069
18070 @smallexample
18071
18072 @var{module} . @var{id}
18073 @var{scope} :: @var{id}
18074 @end smallexample
18075
18076 @noindent
18077 where @var{scope} is the name of a module or a procedure,
18078 @var{module} the name of a module, and @var{id} is any declared
18079 identifier within your program, except another module.
18080
18081 Using the @code{::} operator makes @value{GDBN} search the scope
18082 specified by @var{scope} for the identifier @var{id}. If it is not
18083 found in the specified scope, then @value{GDBN} searches all scopes
18084 enclosing the one specified by @var{scope}.
18085
18086 Using the @code{.} operator makes @value{GDBN} search the current scope for
18087 the identifier specified by @var{id} that was imported from the
18088 definition module specified by @var{module}. With this operator, it is
18089 an error if the identifier @var{id} was not imported from definition
18090 module @var{module}, or if @var{id} is not an identifier in
18091 @var{module}.
18092
18093 @node GDB/M2
18094 @subsubsection @value{GDBN} and Modula-2
18095
18096 Some @value{GDBN} commands have little use when debugging Modula-2 programs.
18097 Five subcommands of @code{set print} and @code{show print} apply
18098 specifically to C and C@t{++}: @samp{vtbl}, @samp{demangle},
18099 @samp{asm-demangle}, @samp{object}, and @samp{union}. The first four
18100 apply to C@t{++}, and the last to the C @code{union} type, which has no direct
18101 analogue in Modula-2.
18102
18103 The @code{@@} operator (@pxref{Expressions, ,Expressions}), while available
18104 with any language, is not useful with Modula-2. Its
18105 intent is to aid the debugging of @dfn{dynamic arrays}, which cannot be
18106 created in Modula-2 as they can in C or C@t{++}. However, because an
18107 address can be specified by an integral constant, the construct
18108 @samp{@{@var{type}@}@var{adrexp}} is still useful.
18109
18110 @cindex @code{#} in Modula-2
18111 In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is
18112 interpreted as the beginning of a comment. Use @code{<>} instead.
18113
18114 @node Ada
18115 @subsection Ada
18116 @cindex Ada
18117
18118 The extensions made to @value{GDBN} for Ada only support
18119 output from the @sc{gnu} Ada (GNAT) compiler.
18120 Other Ada compilers are not currently supported, and
18121 attempting to debug executables produced by them is most likely
18122 to be difficult.
18123
18124
18125 @cindex expressions in Ada
18126 @menu
18127 * Ada Mode Intro:: General remarks on the Ada syntax
18128 and semantics supported by Ada mode
18129 in @value{GDBN}.
18130 * Omissions from Ada:: Restrictions on the Ada expression syntax.
18131 * Additions to Ada:: Extensions of the Ada expression syntax.
18132 * Overloading support for Ada:: Support for expressions involving overloaded
18133 subprograms.
18134 * Stopping Before Main Program:: Debugging the program during elaboration.
18135 * Ada Exceptions:: Ada Exceptions
18136 * Ada Tasks:: Listing and setting breakpoints in tasks.
18137 * Ada Tasks and Core Files:: Tasking Support when Debugging Core Files
18138 * Ravenscar Profile:: Tasking Support when using the Ravenscar
18139 Profile
18140 * Ada Source Character Set:: Character set of Ada source files.
18141 * Ada Glitches:: Known peculiarities of Ada mode.
18142 @end menu
18143
18144 @node Ada Mode Intro
18145 @subsubsection Introduction
18146 @cindex Ada mode, general
18147
18148 The Ada mode of @value{GDBN} supports a fairly large subset of Ada expression
18149 syntax, with some extensions.
18150 The philosophy behind the design of this subset is
18151
18152 @itemize @bullet
18153 @item
18154 That @value{GDBN} should provide basic literals and access to operations for
18155 arithmetic, dereferencing, field selection, indexing, and subprogram calls,
18156 leaving more sophisticated computations to subprograms written into the
18157 program (which therefore may be called from @value{GDBN}).
18158
18159 @item
18160 That type safety and strict adherence to Ada language restrictions
18161 are not particularly important to the @value{GDBN} user.
18162
18163 @item
18164 That brevity is important to the @value{GDBN} user.
18165 @end itemize
18166
18167 Thus, for brevity, the debugger acts as if all names declared in
18168 user-written packages are directly visible, even if they are not visible
18169 according to Ada rules, thus making it unnecessary to fully qualify most
18170 names with their packages, regardless of context. Where this causes
18171 ambiguity, @value{GDBN} asks the user's intent.
18172
18173 The debugger will start in Ada mode if it detects an Ada main program.
18174 As for other languages, it will enter Ada mode when stopped in a program that
18175 was translated from an Ada source file.
18176
18177 While in Ada mode, you may use `@t{--}' for comments. This is useful
18178 mostly for documenting command files. The standard @value{GDBN} comment
18179 (@samp{#}) still works at the beginning of a line in Ada mode, but not in the
18180 middle (to allow based literals).
18181
18182 @node Omissions from Ada
18183 @subsubsection Omissions from Ada
18184 @cindex Ada, omissions from
18185
18186 Here are the notable omissions from the subset:
18187
18188 @itemize @bullet
18189 @item
18190 Only a subset of the attributes are supported:
18191
18192 @itemize @minus
18193 @item
18194 @t{'First}, @t{'Last}, and @t{'Length}
18195 on array objects (not on types and subtypes).
18196
18197 @item
18198 @t{'Min} and @t{'Max}.
18199
18200 @item
18201 @t{'Pos} and @t{'Val}.
18202
18203 @item
18204 @t{'Tag}.
18205
18206 @item
18207 @t{'Range} on array objects (not subtypes), but only as the right
18208 operand of the membership (@code{in}) operator.
18209
18210 @item
18211 @t{'Access}, @t{'Unchecked_Access}, and
18212 @t{'Unrestricted_Access} (a GNAT extension).
18213
18214 @item
18215 @t{'Address}.
18216 @end itemize
18217
18218 @item
18219 The names in @code{Characters.Latin_1} are not available.
18220
18221 @item
18222 Equality tests (@samp{=} and @samp{/=}) on arrays test for bitwise
18223 equality of representations. They will generally work correctly
18224 for strings and arrays whose elements have integer or enumeration types.
18225 They may not work correctly for arrays whose element
18226 types have user-defined equality, for arrays of real values
18227 (in particular, IEEE-conformant floating point, because of negative
18228 zeroes and NaNs), and for arrays whose elements contain unused bits with
18229 indeterminate values.
18230
18231 @item
18232 The other component-by-component array operations (@code{and}, @code{or},
18233 @code{xor}, @code{not}, and relational tests other than equality)
18234 are not implemented.
18235
18236 @item
18237 @cindex array aggregates (Ada)
18238 @cindex record aggregates (Ada)
18239 @cindex aggregates (Ada)
18240 There is limited support for array and record aggregates. They are
18241 permitted only on the right sides of assignments, as in these examples:
18242
18243 @smallexample
18244 (@value{GDBP}) set An_Array := (1, 2, 3, 4, 5, 6)
18245 (@value{GDBP}) set An_Array := (1, others => 0)
18246 (@value{GDBP}) set An_Array := (0|4 => 1, 1..3 => 2, 5 => 6)
18247 (@value{GDBP}) set A_2D_Array := ((1, 2, 3), (4, 5, 6), (7, 8, 9))
18248 (@value{GDBP}) set A_Record := (1, "Peter", True);
18249 (@value{GDBP}) set A_Record := (Name => "Peter", Id => 1, Alive => True)
18250 @end smallexample
18251
18252 Changing a
18253 discriminant's value by assigning an aggregate has an
18254 undefined effect if that discriminant is used within the record.
18255 However, you can first modify discriminants by directly assigning to
18256 them (which normally would not be allowed in Ada), and then performing an
18257 aggregate assignment. For example, given a variable @code{A_Rec}
18258 declared to have a type such as:
18259
18260 @smallexample
18261 type Rec (Len : Small_Integer := 0) is record
18262 Id : Integer;
18263 Vals : IntArray (1 .. Len);
18264 end record;
18265 @end smallexample
18266
18267 you can assign a value with a different size of @code{Vals} with two
18268 assignments:
18269
18270 @smallexample
18271 (@value{GDBP}) set A_Rec.Len := 4
18272 (@value{GDBP}) set A_Rec := (Id => 42, Vals => (1, 2, 3, 4))
18273 @end smallexample
18274
18275 As this example also illustrates, @value{GDBN} is very loose about the usual
18276 rules concerning aggregates. You may leave out some of the
18277 components of an array or record aggregate (such as the @code{Len}
18278 component in the assignment to @code{A_Rec} above); they will retain their
18279 original values upon assignment. You may freely use dynamic values as
18280 indices in component associations. You may even use overlapping or
18281 redundant component associations, although which component values are
18282 assigned in such cases is not defined.
18283
18284 @item
18285 Calls to dispatching subprograms are not implemented.
18286
18287 @item
18288 The overloading algorithm is much more limited (i.e., less selective)
18289 than that of real Ada. It makes only limited use of the context in
18290 which a subexpression appears to resolve its meaning, and it is much
18291 looser in its rules for allowing type matches. As a result, some
18292 function calls will be ambiguous, and the user will be asked to choose
18293 the proper resolution.
18294
18295 @item
18296 The @code{new} operator is not implemented.
18297
18298 @item
18299 Entry calls are not implemented.
18300
18301 @item
18302 Aside from printing, arithmetic operations on the native VAX floating-point
18303 formats are not supported.
18304
18305 @item
18306 It is not possible to slice a packed array.
18307
18308 @item
18309 The names @code{True} and @code{False}, when not part of a qualified name,
18310 are interpreted as if implicitly prefixed by @code{Standard}, regardless of
18311 context.
18312 Should your program
18313 redefine these names in a package or procedure (at best a dubious practice),
18314 you will have to use fully qualified names to access their new definitions.
18315
18316 @item
18317 Based real literals are not implemented.
18318 @end itemize
18319
18320 @node Additions to Ada
18321 @subsubsection Additions to Ada
18322 @cindex Ada, deviations from
18323
18324 As it does for other languages, @value{GDBN} makes certain generic
18325 extensions to Ada (@pxref{Expressions}):
18326
18327 @itemize @bullet
18328 @item
18329 If the expression @var{E} is a variable residing in memory (typically
18330 a local variable or array element) and @var{N} is a positive integer,
18331 then @code{@var{E}@@@var{N}} displays the values of @var{E} and the
18332 @var{N}-1 adjacent variables following it in memory as an array. In
18333 Ada, this operator is generally not necessary, since its prime use is
18334 in displaying parts of an array, and slicing will usually do this in
18335 Ada. However, there are occasional uses when debugging programs in
18336 which certain debugging information has been optimized away.
18337
18338 @item
18339 @code{@var{B}::@var{var}} means ``the variable named @var{var} that
18340 appears in function or file @var{B}.'' When @var{B} is a file name,
18341 you must typically surround it in single quotes.
18342
18343 @item
18344 The expression @code{@{@var{type}@} @var{addr}} means ``the variable of type
18345 @var{type} that appears at address @var{addr}.''
18346
18347 @item
18348 A name starting with @samp{$} is a convenience variable
18349 (@pxref{Convenience Vars}) or a machine register (@pxref{Registers}).
18350 @end itemize
18351
18352 In addition, @value{GDBN} provides a few other shortcuts and outright
18353 additions specific to Ada:
18354
18355 @itemize @bullet
18356 @item
18357 The assignment statement is allowed as an expression, returning
18358 its right-hand operand as its value. Thus, you may enter
18359
18360 @smallexample
18361 (@value{GDBP}) set x := y + 3
18362 (@value{GDBP}) print A(tmp := y + 1)
18363 @end smallexample
18364
18365 @item
18366 The semicolon is allowed as an ``operator,'' returning as its value
18367 the value of its right-hand operand.
18368 This allows, for example,
18369 complex conditional breaks:
18370
18371 @smallexample
18372 (@value{GDBP}) break f
18373 (@value{GDBP}) condition 1 (report(i); k += 1; A(k) > 100)
18374 @end smallexample
18375
18376 @item
18377 An extension to based literals can be used to specify the exact byte
18378 contents of a floating-point literal. After the base, you can use
18379 from zero to two @samp{l} characters, followed by an @samp{f}. The
18380 number of @samp{l} characters controls the width of the resulting real
18381 constant: zero means @code{Float} is used, one means
18382 @code{Long_Float}, and two means @code{Long_Long_Float}.
18383
18384 @smallexample
18385 (@value{GDBP}) print 16f#41b80000#
18386 $1 = 23.0
18387 @end smallexample
18388
18389 @item
18390 Rather than use catenation and symbolic character names to introduce special
18391 characters into strings, one may instead use a special bracket notation,
18392 which is also used to print strings. A sequence of characters of the form
18393 @samp{["@var{XX}"]} within a string or character literal denotes the
18394 (single) character whose numeric encoding is @var{XX} in hexadecimal. The
18395 sequence of characters @samp{["""]} also denotes a single quotation mark
18396 in strings. For example,
18397 @smallexample
18398 "One line.["0a"]Next line.["0a"]"
18399 @end smallexample
18400 @noindent
18401 contains an ASCII newline character (@code{Ada.Characters.Latin_1.LF})
18402 after each period.
18403
18404 @item
18405 The subtype used as a prefix for the attributes @t{'Pos}, @t{'Min}, and
18406 @t{'Max} is optional (and is ignored in any case). For example, it is valid
18407 to write
18408
18409 @smallexample
18410 (@value{GDBP}) print 'max(x, y)
18411 @end smallexample
18412
18413 @item
18414 When printing arrays, @value{GDBN} uses positional notation when the
18415 array has a lower bound of 1, and uses a modified named notation otherwise.
18416 For example, a one-dimensional array of three integers with a lower bound
18417 of 3 might print as
18418
18419 @smallexample
18420 (3 => 10, 17, 1)
18421 @end smallexample
18422
18423 @noindent
18424 That is, in contrast to valid Ada, only the first component has a @code{=>}
18425 clause.
18426
18427 @item
18428 You may abbreviate attributes in expressions with any unique,
18429 multi-character subsequence of
18430 their names (an exact match gets preference).
18431 For example, you may use @t{a'len}, @t{a'gth}, or @t{a'lh}
18432 in place of @t{a'length}.
18433
18434 @item
18435 @cindex quoting Ada internal identifiers
18436 Since Ada is case-insensitive, the debugger normally maps identifiers you type
18437 to lower case. The GNAT compiler uses upper-case characters for
18438 some of its internal identifiers, which are normally of no interest to users.
18439 For the rare occasions when you actually have to look at them,
18440 enclose them in angle brackets to avoid the lower-case mapping.
18441 For example,
18442 @smallexample
18443 (@value{GDBP}) print <JMPBUF_SAVE>[0]
18444 @end smallexample
18445
18446 @item
18447 Printing an object of class-wide type or dereferencing an
18448 access-to-class-wide value will display all the components of the object's
18449 specific type (as indicated by its run-time tag). Likewise, component
18450 selection on such a value will operate on the specific type of the
18451 object.
18452
18453 @end itemize
18454
18455 @node Overloading support for Ada
18456 @subsubsection Overloading support for Ada
18457 @cindex overloading, Ada
18458
18459 The debugger supports limited overloading. Given a subprogram call in which
18460 the function symbol has multiple definitions, it will use the number of
18461 actual parameters and some information about their types to attempt to narrow
18462 the set of definitions. It also makes very limited use of context, preferring
18463 procedures to functions in the context of the @code{call} command, and
18464 functions to procedures elsewhere.
18465
18466 If, after narrowing, the set of matching definitions still contains more than
18467 one definition, @value{GDBN} will display a menu to query which one it should
18468 use, for instance:
18469
18470 @smallexample
18471 (@value{GDBP}) print f(1)
18472 Multiple matches for f
18473 [0] cancel
18474 [1] foo.f (integer) return boolean at foo.adb:23
18475 [2] foo.f (foo.new_integer) return boolean at foo.adb:28
18476 >
18477 @end smallexample
18478
18479 In this case, just select one menu entry either to cancel expression evaluation
18480 (type @kbd{0} and press @key{RET}) or to continue evaluation with a specific
18481 instance (type the corresponding number and press @key{RET}).
18482
18483 Here are a couple of commands to customize @value{GDBN}'s behavior in this
18484 case:
18485
18486 @table @code
18487
18488 @kindex set ada print-signatures
18489 @item set ada print-signatures
18490 Control whether parameter types and return types are displayed in overloads
18491 selection menus. It is @code{on} by default.
18492 @xref{Overloading support for Ada}.
18493
18494 @kindex show ada print-signatures
18495 @item show ada print-signatures
18496 Show the current setting for displaying parameter types and return types in
18497 overloads selection menu.
18498 @xref{Overloading support for Ada}.
18499
18500 @end table
18501
18502 @node Stopping Before Main Program
18503 @subsubsection Stopping at the Very Beginning
18504
18505 @cindex breakpointing Ada elaboration code
18506 It is sometimes necessary to debug the program during elaboration, and
18507 before reaching the main procedure.
18508 As defined in the Ada Reference
18509 Manual, the elaboration code is invoked from a procedure called
18510 @code{adainit}. To run your program up to the beginning of
18511 elaboration, simply use the following two commands:
18512 @code{tbreak adainit} and @code{run}.
18513
18514 @node Ada Exceptions
18515 @subsubsection Ada Exceptions
18516
18517 A command is provided to list all Ada exceptions:
18518
18519 @table @code
18520 @kindex info exceptions
18521 @item info exceptions
18522 @itemx info exceptions @var{regexp}
18523 The @code{info exceptions} command allows you to list all Ada exceptions
18524 defined within the program being debugged, as well as their addresses.
18525 With a regular expression, @var{regexp}, as argument, only those exceptions
18526 whose names match @var{regexp} are listed.
18527 @end table
18528
18529 Below is a small example, showing how the command can be used, first
18530 without argument, and next with a regular expression passed as an
18531 argument.
18532
18533 @smallexample
18534 (@value{GDBP}) info exceptions
18535 All defined Ada exceptions:
18536 constraint_error: 0x613da0
18537 program_error: 0x613d20
18538 storage_error: 0x613ce0
18539 tasking_error: 0x613ca0
18540 const.aint_global_e: 0x613b00
18541 (@value{GDBP}) info exceptions const.aint
18542 All Ada exceptions matching regular expression "const.aint":
18543 constraint_error: 0x613da0
18544 const.aint_global_e: 0x613b00
18545 @end smallexample
18546
18547 It is also possible to ask @value{GDBN} to stop your program's execution
18548 when an exception is raised. For more details, see @ref{Set Catchpoints}.
18549
18550 @node Ada Tasks
18551 @subsubsection Extensions for Ada Tasks
18552 @cindex Ada, tasking
18553
18554 Support for Ada tasks is analogous to that for threads (@pxref{Threads}).
18555 @value{GDBN} provides the following task-related commands:
18556
18557 @table @code
18558 @kindex info tasks
18559 @item info tasks
18560 This command shows a list of current Ada tasks, as in the following example:
18561
18562
18563 @smallexample
18564 @iftex
18565 @leftskip=0.5cm
18566 @end iftex
18567 (@value{GDBP}) info tasks
18568 ID TID P-ID Pri State Name
18569 1 8088000 0 15 Child Activation Wait main_task
18570 2 80a4000 1 15 Accept Statement b
18571 3 809a800 1 15 Child Activation Wait a
18572 * 4 80ae800 3 15 Runnable c
18573
18574 @end smallexample
18575
18576 @noindent
18577 In this listing, the asterisk before the last task indicates it to be the
18578 task currently being inspected.
18579
18580 @table @asis
18581 @item ID
18582 Represents @value{GDBN}'s internal task number.
18583
18584 @item TID
18585 The Ada task ID.
18586
18587 @item P-ID
18588 The parent's task ID (@value{GDBN}'s internal task number).
18589
18590 @item Pri
18591 The base priority of the task.
18592
18593 @item State
18594 Current state of the task.
18595
18596 @table @code
18597 @item Unactivated
18598 The task has been created but has not been activated. It cannot be
18599 executing.
18600
18601 @item Runnable
18602 The task is not blocked for any reason known to Ada. (It may be waiting
18603 for a mutex, though.) It is conceptually "executing" in normal mode.
18604
18605 @item Terminated
18606 The task is terminated, in the sense of ARM 9.3 (5). Any dependents
18607 that were waiting on terminate alternatives have been awakened and have
18608 terminated themselves.
18609
18610 @item Child Activation Wait
18611 The task is waiting for created tasks to complete activation.
18612
18613 @item Accept Statement
18614 The task is waiting on an accept or selective wait statement.
18615
18616 @item Waiting on entry call
18617 The task is waiting on an entry call.
18618
18619 @item Async Select Wait
18620 The task is waiting to start the abortable part of an asynchronous
18621 select statement.
18622
18623 @item Delay Sleep
18624 The task is waiting on a select statement with only a delay
18625 alternative open.
18626
18627 @item Child Termination Wait
18628 The task is sleeping having completed a master within itself, and is
18629 waiting for the tasks dependent on that master to become terminated or
18630 waiting on a terminate Phase.
18631
18632 @item Wait Child in Term Alt
18633 The task is sleeping waiting for tasks on terminate alternatives to
18634 finish terminating.
18635
18636 @item Accepting RV with @var{taskno}
18637 The task is accepting a rendez-vous with the task @var{taskno}.
18638 @end table
18639
18640 @item Name
18641 Name of the task in the program.
18642
18643 @end table
18644
18645 @kindex info task @var{taskno}
18646 @item info task @var{taskno}
18647 This command shows detailed informations on the specified task, as in
18648 the following example:
18649 @smallexample
18650 @iftex
18651 @leftskip=0.5cm
18652 @end iftex
18653 (@value{GDBP}) info tasks
18654 ID TID P-ID Pri State Name
18655 1 8077880 0 15 Child Activation Wait main_task
18656 * 2 807c468 1 15 Runnable task_1
18657 (@value{GDBP}) info task 2
18658 Ada Task: 0x807c468
18659 Name: "task_1"
18660 Thread: 0
18661 LWP: 0x1fac
18662 Parent: 1 ("main_task")
18663 Base Priority: 15
18664 State: Runnable
18665 @end smallexample
18666
18667 @item task
18668 @kindex task@r{ (Ada)}
18669 @cindex current Ada task ID
18670 This command prints the ID and name of the current task.
18671
18672 @smallexample
18673 @iftex
18674 @leftskip=0.5cm
18675 @end iftex
18676 (@value{GDBP}) info tasks
18677 ID TID P-ID Pri State Name
18678 1 8077870 0 15 Child Activation Wait main_task
18679 * 2 807c458 1 15 Runnable some_task
18680 (@value{GDBP}) task
18681 [Current task is 2 "some_task"]
18682 @end smallexample
18683
18684 @item task @var{taskno}
18685 @cindex Ada task switching
18686 This command is like the @code{thread @var{thread-id}}
18687 command (@pxref{Threads}). It switches the context of debugging
18688 from the current task to the given task.
18689
18690 @smallexample
18691 @iftex
18692 @leftskip=0.5cm
18693 @end iftex
18694 (@value{GDBP}) info tasks
18695 ID TID P-ID Pri State Name
18696 1 8077870 0 15 Child Activation Wait main_task
18697 * 2 807c458 1 15 Runnable some_task
18698 (@value{GDBP}) task 1
18699 [Switching to task 1 "main_task"]
18700 #0 0x8067726 in pthread_cond_wait ()
18701 (@value{GDBP}) bt
18702 #0 0x8067726 in pthread_cond_wait ()
18703 #1 0x8056714 in system.os_interface.pthread_cond_wait ()
18704 #2 0x805cb63 in system.task_primitives.operations.sleep ()
18705 #3 0x806153e in system.tasking.stages.activate_tasks ()
18706 #4 0x804aacc in un () at un.adb:5
18707 @end smallexample
18708
18709 @item task apply [@var{task-id-list} | all] [@var{flag}]@dots{} @var{command}
18710 The @code{task apply} command is the Ada tasking analogue of
18711 @code{thread apply} (@pxref{Threads}). It allows you to apply the
18712 named @var{command} to one or more tasks. Specify the tasks that you
18713 want affected using a list of task IDs, or specify @code{all} to apply
18714 to all tasks.
18715
18716 The @var{flag} arguments control what output to produce and how to
18717 handle errors raised when applying @var{command} to a task.
18718 @var{flag} must start with a @code{-} directly followed by one letter
18719 in @code{qcs}. If several flags are provided, they must be given
18720 individually, such as @code{-c -q}.
18721
18722 By default, @value{GDBN} displays some task information before the
18723 output produced by @var{command}, and an error raised during the
18724 execution of a @var{command} will abort @code{task apply}. The
18725 following flags can be used to fine-tune this behavior:
18726
18727 @table @code
18728 @item -c
18729 The flag @code{-c}, which stands for @samp{continue}, causes any
18730 errors in @var{command} to be displayed, and the execution of
18731 @code{task apply} then continues.
18732 @item -s
18733 The flag @code{-s}, which stands for @samp{silent}, causes any errors
18734 or empty output produced by a @var{command} to be silently ignored.
18735 That is, the execution continues, but the task information and errors
18736 are not printed.
18737 @item -q
18738 The flag @code{-q} (@samp{quiet}) disables printing the task
18739 information.
18740 @end table
18741
18742 Flags @code{-c} and @code{-s} cannot be used together.
18743
18744 @item break @var{location} task @var{taskno}
18745 @itemx break @var{location} task @var{taskno} if @dots{}
18746 @cindex breakpoints and tasks, in Ada
18747 @cindex task breakpoints, in Ada
18748 @kindex break @dots{} task @var{taskno}@r{ (Ada)}
18749 These commands are like the @code{break @dots{} thread @dots{}}
18750 command (@pxref{Thread Stops}). The
18751 @var{location} argument specifies source lines, as described
18752 in @ref{Specify Location}.
18753
18754 Use the qualifier @samp{task @var{taskno}} with a breakpoint command
18755 to specify that you only want @value{GDBN} to stop the program when a
18756 particular Ada task reaches this breakpoint. The @var{taskno} is one of the
18757 numeric task identifiers assigned by @value{GDBN}, shown in the first
18758 column of the @samp{info tasks} display.
18759
18760 If you do not specify @samp{task @var{taskno}} when you set a
18761 breakpoint, the breakpoint applies to @emph{all} tasks of your
18762 program.
18763
18764 You can use the @code{task} qualifier on conditional breakpoints as
18765 well; in this case, place @samp{task @var{taskno}} before the
18766 breakpoint condition (before the @code{if}).
18767
18768 For example,
18769
18770 @smallexample
18771 @iftex
18772 @leftskip=0.5cm
18773 @end iftex
18774 (@value{GDBP}) info tasks
18775 ID TID P-ID Pri State Name
18776 1 140022020 0 15 Child Activation Wait main_task
18777 2 140045060 1 15 Accept/Select Wait t2
18778 3 140044840 1 15 Runnable t1
18779 * 4 140056040 1 15 Runnable t3
18780 (@value{GDBP}) b 15 task 2
18781 Breakpoint 5 at 0x120044cb0: file test_task_debug.adb, line 15.
18782 (@value{GDBP}) cont
18783 Continuing.
18784 task # 1 running
18785 task # 2 running
18786
18787 Breakpoint 5, test_task_debug () at test_task_debug.adb:15
18788 15 flush;
18789 (@value{GDBP}) info tasks
18790 ID TID P-ID Pri State Name
18791 1 140022020 0 15 Child Activation Wait main_task
18792 * 2 140045060 1 15 Runnable t2
18793 3 140044840 1 15 Runnable t1
18794 4 140056040 1 15 Delay Sleep t3
18795 @end smallexample
18796 @end table
18797
18798 @node Ada Tasks and Core Files
18799 @subsubsection Tasking Support when Debugging Core Files
18800 @cindex Ada tasking and core file debugging
18801
18802 When inspecting a core file, as opposed to debugging a live program,
18803 tasking support may be limited or even unavailable, depending on
18804 the platform being used.
18805 For instance, on x86-linux, the list of tasks is available, but task
18806 switching is not supported.
18807
18808 On certain platforms, the debugger needs to perform some
18809 memory writes in order to provide Ada tasking support. When inspecting
18810 a core file, this means that the core file must be opened with read-write
18811 privileges, using the command @samp{"set write on"} (@pxref{Patching}).
18812 Under these circumstances, you should make a backup copy of the core
18813 file before inspecting it with @value{GDBN}.
18814
18815 @node Ravenscar Profile
18816 @subsubsection Tasking Support when using the Ravenscar Profile
18817 @cindex Ravenscar Profile
18818
18819 The @dfn{Ravenscar Profile} is a subset of the Ada tasking features,
18820 specifically designed for systems with safety-critical real-time
18821 requirements.
18822
18823 @table @code
18824 @kindex set ravenscar task-switching on
18825 @cindex task switching with program using Ravenscar Profile
18826 @item set ravenscar task-switching on
18827 Allows task switching when debugging a program that uses the Ravenscar
18828 Profile. This is the default.
18829
18830 @kindex set ravenscar task-switching off
18831 @item set ravenscar task-switching off
18832 Turn off task switching when debugging a program that uses the Ravenscar
18833 Profile. This is mostly intended to disable the code that adds support
18834 for the Ravenscar Profile, in case a bug in either @value{GDBN} or in
18835 the Ravenscar runtime is preventing @value{GDBN} from working properly.
18836 To be effective, this command should be run before the program is started.
18837
18838 @kindex show ravenscar task-switching
18839 @item show ravenscar task-switching
18840 Show whether it is possible to switch from task to task in a program
18841 using the Ravenscar Profile.
18842
18843 @end table
18844
18845 @cindex Ravenscar thread
18846 When Ravenscar task-switching is enabled, Ravenscar tasks are
18847 announced by @value{GDBN} as if they were threads:
18848
18849 @smallexample
18850 (gdb) continue
18851 [New Ravenscar Thread 0x2b8f0]
18852 @end smallexample
18853
18854 Both Ravenscar tasks and the underlying CPU threads will show up in
18855 the output of @code{info threads}:
18856
18857 @smallexample
18858 (gdb) info threads
18859 Id Target Id Frame
18860 1 Thread 1 (CPU#0 [running]) simple () at simple.adb:10
18861 2 Thread 2 (CPU#1 [running]) 0x0000000000003d34 in __gnat_initialize_cpu_devices ()
18862 3 Thread 3 (CPU#2 [running]) 0x0000000000003d28 in __gnat_initialize_cpu_devices ()
18863 4 Thread 4 (CPU#3 [halted ]) 0x000000000000c6ec in system.task_primitives.operations.idle ()
18864 * 5 Ravenscar Thread 0x2b8f0 simple () at simple.adb:10
18865 6 Ravenscar Thread 0x2f150 0x000000000000c6ec in system.task_primitives.operations.idle ()
18866 @end smallexample
18867
18868 One known limitation of the Ravenscar support in @value{GDBN} is that
18869 it isn't currently possible to single-step through the runtime
18870 initialization sequence. If you need to debug this code, you should
18871 use @code{set ravenscar task-switching off}.
18872
18873 @node Ada Source Character Set
18874 @subsubsection Ada Source Character Set
18875 @cindex Ada, source character set
18876
18877 The GNAT compiler supports a number of character sets for source
18878 files. @xref{Character Set Control, , Character Set Control,
18879 gnat_ugn}. @value{GDBN} includes support for this as well.
18880
18881 @table @code
18882 @item set ada source-charset @var{charset}
18883 @kindex set ada source-charset
18884 Set the source character set for Ada. The character set must be
18885 supported by GNAT. Because this setting affects the decoding of
18886 symbols coming from the debug information in your program, the setting
18887 should be set as early as possible. The default is @code{ISO-8859-1},
18888 because that is also GNAT's default.
18889
18890 @item show ada source-charset
18891 @kindex show ada source-charset
18892 Show the current source character set for Ada.
18893 @end table
18894
18895 @node Ada Glitches
18896 @subsubsection Known Peculiarities of Ada Mode
18897 @cindex Ada, problems
18898
18899 Besides the omissions listed previously (@pxref{Omissions from Ada}),
18900 we know of several problems with and limitations of Ada mode in
18901 @value{GDBN},
18902 some of which will be fixed with planned future releases of the debugger
18903 and the GNU Ada compiler.
18904
18905 @itemize @bullet
18906 @item
18907 Static constants that the compiler chooses not to materialize as objects in
18908 storage are invisible to the debugger.
18909
18910 @item
18911 Named parameter associations in function argument lists are ignored (the
18912 argument lists are treated as positional).
18913
18914 @item
18915 Many useful library packages are currently invisible to the debugger.
18916
18917 @item
18918 Fixed-point arithmetic, conversions, input, and output is carried out using
18919 floating-point arithmetic, and may give results that only approximate those on
18920 the host machine.
18921
18922 @item
18923 The GNAT compiler never generates the prefix @code{Standard} for any of
18924 the standard symbols defined by the Ada language. @value{GDBN} knows about
18925 this: it will strip the prefix from names when you use it, and will never
18926 look for a name you have so qualified among local symbols, nor match against
18927 symbols in other packages or subprograms. If you have
18928 defined entities anywhere in your program other than parameters and
18929 local variables whose simple names match names in @code{Standard},
18930 GNAT's lack of qualification here can cause confusion. When this happens,
18931 you can usually resolve the confusion
18932 by qualifying the problematic names with package
18933 @code{Standard} explicitly.
18934 @end itemize
18935
18936 Older versions of the compiler sometimes generate erroneous debugging
18937 information, resulting in the debugger incorrectly printing the value
18938 of affected entities. In some cases, the debugger is able to work
18939 around an issue automatically. In other cases, the debugger is able
18940 to work around the issue, but the work-around has to be specifically
18941 enabled.
18942
18943 @kindex set ada trust-PAD-over-XVS
18944 @kindex show ada trust-PAD-over-XVS
18945 @table @code
18946
18947 @item set ada trust-PAD-over-XVS on
18948 Configure GDB to strictly follow the GNAT encoding when computing the
18949 value of Ada entities, particularly when @code{PAD} and @code{PAD___XVS}
18950 types are involved (see @code{ada/exp_dbug.ads} in the GCC sources for
18951 a complete description of the encoding used by the GNAT compiler).
18952 This is the default.
18953
18954 @item set ada trust-PAD-over-XVS off
18955 This is related to the encoding using by the GNAT compiler. If @value{GDBN}
18956 sometimes prints the wrong value for certain entities, changing @code{ada
18957 trust-PAD-over-XVS} to @code{off} activates a work-around which may fix
18958 the issue. It is always safe to set @code{ada trust-PAD-over-XVS} to
18959 @code{off}, but this incurs a slight performance penalty, so it is
18960 recommended to leave this setting to @code{on} unless necessary.
18961
18962 @end table
18963
18964 @cindex GNAT descriptive types
18965 @cindex GNAT encoding
18966 Internally, the debugger also relies on the compiler following a number
18967 of conventions known as the @samp{GNAT Encoding}, all documented in
18968 @file{gcc/ada/exp_dbug.ads} in the GCC sources. This encoding describes
18969 how the debugging information should be generated for certain types.
18970 In particular, this convention makes use of @dfn{descriptive types},
18971 which are artificial types generated purely to help the debugger.
18972
18973 These encodings were defined at a time when the debugging information
18974 format used was not powerful enough to describe some of the more complex
18975 types available in Ada. Since DWARF allows us to express nearly all
18976 Ada features, the long-term goal is to slowly replace these descriptive
18977 types by their pure DWARF equivalent. To facilitate that transition,
18978 a new maintenance option is available to force the debugger to ignore
18979 those descriptive types. It allows the user to quickly evaluate how
18980 well @value{GDBN} works without them.
18981
18982 @table @code
18983
18984 @kindex maint ada set ignore-descriptive-types
18985 @item maintenance ada set ignore-descriptive-types [on|off]
18986 Control whether the debugger should ignore descriptive types.
18987 The default is not to ignore descriptives types (@code{off}).
18988
18989 @kindex maint ada show ignore-descriptive-types
18990 @item maintenance ada show ignore-descriptive-types
18991 Show if descriptive types are ignored by @value{GDBN}.
18992
18993 @end table
18994
18995 @node Unsupported Languages
18996 @section Unsupported Languages
18997
18998 @cindex unsupported languages
18999 @cindex minimal language
19000 In addition to the other fully-supported programming languages,
19001 @value{GDBN} also provides a pseudo-language, called @code{minimal}.
19002 It does not represent a real programming language, but provides a set
19003 of capabilities close to what the C or assembly languages provide.
19004 This should allow most simple operations to be performed while debugging
19005 an application that uses a language currently not supported by @value{GDBN}.
19006
19007 If the language is set to @code{auto}, @value{GDBN} will automatically
19008 select this language if the current frame corresponds to an unsupported
19009 language.
19010
19011 @node Symbols
19012 @chapter Examining the Symbol Table
19013
19014 The commands described in this chapter allow you to inquire about the
19015 symbols (names of variables, functions and types) defined in your
19016 program. This information is inherent in the text of your program and
19017 does not change as your program executes. @value{GDBN} finds it in your
19018 program's symbol table, in the file indicated when you started @value{GDBN}
19019 (@pxref{File Options, ,Choosing Files}), or by one of the
19020 file-management commands (@pxref{Files, ,Commands to Specify Files}).
19021
19022 @cindex symbol names
19023 @cindex names of symbols
19024 @cindex quoting names
19025 @anchor{quoting names}
19026 Occasionally, you may need to refer to symbols that contain unusual
19027 characters, which @value{GDBN} ordinarily treats as word delimiters. The
19028 most frequent case is in referring to static variables in other
19029 source files (@pxref{Variables,,Program Variables}). File names
19030 are recorded in object files as debugging symbols, but @value{GDBN} would
19031 ordinarily parse a typical file name, like @file{foo.c}, as the three words
19032 @samp{foo} @samp{.} @samp{c}. To allow @value{GDBN} to recognize
19033 @samp{foo.c} as a single symbol, enclose it in single quotes; for example,
19034
19035 @smallexample
19036 p 'foo.c'::x
19037 @end smallexample
19038
19039 @noindent
19040 looks up the value of @code{x} in the scope of the file @file{foo.c}.
19041
19042 @table @code
19043 @cindex case-insensitive symbol names
19044 @cindex case sensitivity in symbol names
19045 @kindex set case-sensitive
19046 @item set case-sensitive on
19047 @itemx set case-sensitive off
19048 @itemx set case-sensitive auto
19049 Normally, when @value{GDBN} looks up symbols, it matches their names
19050 with case sensitivity determined by the current source language.
19051 Occasionally, you may wish to control that. The command @code{set
19052 case-sensitive} lets you do that by specifying @code{on} for
19053 case-sensitive matches or @code{off} for case-insensitive ones. If
19054 you specify @code{auto}, case sensitivity is reset to the default
19055 suitable for the source language. The default is case-sensitive
19056 matches for all languages except for Fortran, for which the default is
19057 case-insensitive matches.
19058
19059 @kindex show case-sensitive
19060 @item show case-sensitive
19061 This command shows the current setting of case sensitivity for symbols
19062 lookups.
19063
19064 @kindex set print type methods
19065 @item set print type methods
19066 @itemx set print type methods on
19067 @itemx set print type methods off
19068 Normally, when @value{GDBN} prints a class, it displays any methods
19069 declared in that class. You can control this behavior either by
19070 passing the appropriate flag to @code{ptype}, or using @command{set
19071 print type methods}. Specifying @code{on} will cause @value{GDBN} to
19072 display the methods; this is the default. Specifying @code{off} will
19073 cause @value{GDBN} to omit the methods.
19074
19075 @kindex show print type methods
19076 @item show print type methods
19077 This command shows the current setting of method display when printing
19078 classes.
19079
19080 @kindex set print type nested-type-limit
19081 @item set print type nested-type-limit @var{limit}
19082 @itemx set print type nested-type-limit unlimited
19083 Set the limit of displayed nested types that the type printer will
19084 show. A @var{limit} of @code{unlimited} or @code{-1} will show all
19085 nested definitions. By default, the type printer will not show any nested
19086 types defined in classes.
19087
19088 @kindex show print type nested-type-limit
19089 @item show print type nested-type-limit
19090 This command shows the current display limit of nested types when
19091 printing classes.
19092
19093 @kindex set print type typedefs
19094 @item set print type typedefs
19095 @itemx set print type typedefs on
19096 @itemx set print type typedefs off
19097
19098 Normally, when @value{GDBN} prints a class, it displays any typedefs
19099 defined in that class. You can control this behavior either by
19100 passing the appropriate flag to @code{ptype}, or using @command{set
19101 print type typedefs}. Specifying @code{on} will cause @value{GDBN} to
19102 display the typedef definitions; this is the default. Specifying
19103 @code{off} will cause @value{GDBN} to omit the typedef definitions.
19104 Note that this controls whether the typedef definition itself is
19105 printed, not whether typedef names are substituted when printing other
19106 types.
19107
19108 @kindex show print type typedefs
19109 @item show print type typedefs
19110 This command shows the current setting of typedef display when
19111 printing classes.
19112
19113 @kindex set print type hex
19114 @item set print type hex
19115 @itemx set print type hex on
19116 @itemx set print type hex off
19117
19118 When @value{GDBN} prints sizes and offsets of struct members, it can use
19119 either the decimal or hexadecimal notation. You can select one or the
19120 other either by passing the appropriate flag to @code{ptype}, or by using
19121 the @command{set print type hex} command.
19122
19123 @kindex show print type hex
19124 @item show print type hex
19125 This command shows whether the sizes and offsets of struct members are
19126 printed in decimal or hexadecimal notation.
19127
19128 @kindex info address
19129 @cindex address of a symbol
19130 @item info address @var{symbol}
19131 Describe where the data for @var{symbol} is stored. For a register
19132 variable, this says which register it is kept in. For a non-register
19133 local variable, this prints the stack-frame offset at which the variable
19134 is always stored.
19135
19136 Note the contrast with @samp{print &@var{symbol}}, which does not work
19137 at all for a register variable, and for a stack local variable prints
19138 the exact address of the current instantiation of the variable.
19139
19140 @kindex info symbol
19141 @cindex symbol from address
19142 @cindex closest symbol and offset for an address
19143 @item info symbol @var{addr}
19144 Print the name of a symbol which is stored at the address @var{addr}.
19145 If no symbol is stored exactly at @var{addr}, @value{GDBN} prints the
19146 nearest symbol and an offset from it:
19147
19148 @smallexample
19149 (@value{GDBP}) info symbol 0x54320
19150 _initialize_vx + 396 in section .text
19151 @end smallexample
19152
19153 @noindent
19154 This is the opposite of the @code{info address} command. You can use
19155 it to find out the name of a variable or a function given its address.
19156
19157 For dynamically linked executables, the name of executable or shared
19158 library containing the symbol is also printed:
19159
19160 @smallexample
19161 (@value{GDBP}) info symbol 0x400225
19162 _start + 5 in section .text of /tmp/a.out
19163 (@value{GDBP}) info symbol 0x2aaaac2811cf
19164 __read_nocancel + 6 in section .text of /usr/lib64/libc.so.6
19165 @end smallexample
19166
19167 @kindex demangle
19168 @cindex demangle
19169 @item demangle @r{[}-l @var{language}@r{]} @r{[}@var{--}@r{]} @var{name}
19170 Demangle @var{name}.
19171 If @var{language} is provided it is the name of the language to demangle
19172 @var{name} in. Otherwise @var{name} is demangled in the current language.
19173
19174 The @samp{--} option specifies the end of options,
19175 and is useful when @var{name} begins with a dash.
19176
19177 The parameter @code{demangle-style} specifies how to interpret the kind
19178 of mangling used. @xref{Print Settings}.
19179
19180 @kindex whatis
19181 @item whatis[/@var{flags}] [@var{arg}]
19182 Print the data type of @var{arg}, which can be either an expression
19183 or a name of a data type. With no argument, print the data type of
19184 @code{$}, the last value in the value history.
19185
19186 If @var{arg} is an expression (@pxref{Expressions, ,Expressions}), it
19187 is not actually evaluated, and any side-effecting operations (such as
19188 assignments or function calls) inside it do not take place.
19189
19190 If @var{arg} is a variable or an expression, @code{whatis} prints its
19191 literal type as it is used in the source code. If the type was
19192 defined using a @code{typedef}, @code{whatis} will @emph{not} print
19193 the data type underlying the @code{typedef}. If the type of the
19194 variable or the expression is a compound data type, such as
19195 @code{struct} or @code{class}, @code{whatis} never prints their
19196 fields or methods. It just prints the @code{struct}/@code{class}
19197 name (a.k.a.@: its @dfn{tag}). If you want to see the members of
19198 such a compound data type, use @code{ptype}.
19199
19200 If @var{arg} is a type name that was defined using @code{typedef},
19201 @code{whatis} @dfn{unrolls} only one level of that @code{typedef}.
19202 Unrolling means that @code{whatis} will show the underlying type used
19203 in the @code{typedef} declaration of @var{arg}. However, if that
19204 underlying type is also a @code{typedef}, @code{whatis} will not
19205 unroll it.
19206
19207 For C code, the type names may also have the form @samp{class
19208 @var{class-name}}, @samp{struct @var{struct-tag}}, @samp{union
19209 @var{union-tag}} or @samp{enum @var{enum-tag}}.
19210
19211 @var{flags} can be used to modify how the type is displayed.
19212 Available flags are:
19213
19214 @table @code
19215 @item r
19216 Display in ``raw'' form. Normally, @value{GDBN} substitutes template
19217 parameters and typedefs defined in a class when printing the class'
19218 members. The @code{/r} flag disables this.
19219
19220 @item m
19221 Do not print methods defined in the class.
19222
19223 @item M
19224 Print methods defined in the class. This is the default, but the flag
19225 exists in case you change the default with @command{set print type methods}.
19226
19227 @item t
19228 Do not print typedefs defined in the class. Note that this controls
19229 whether the typedef definition itself is printed, not whether typedef
19230 names are substituted when printing other types.
19231
19232 @item T
19233 Print typedefs defined in the class. This is the default, but the flag
19234 exists in case you change the default with @command{set print type typedefs}.
19235
19236 @item o
19237 Print the offsets and sizes of fields in a struct, similar to what the
19238 @command{pahole} tool does. This option implies the @code{/tm} flags.
19239
19240 @item x
19241 Use hexadecimal notation when printing offsets and sizes of fields in a
19242 struct.
19243
19244 @item d
19245 Use decimal notation when printing offsets and sizes of fields in a
19246 struct.
19247
19248 For example, given the following declarations:
19249
19250 @smallexample
19251 struct tuv
19252 @{
19253 int a1;
19254 char *a2;
19255 int a3;
19256 @};
19257
19258 struct xyz
19259 @{
19260 int f1;
19261 char f2;
19262 void *f3;
19263 struct tuv f4;
19264 @};
19265
19266 union qwe
19267 @{
19268 struct tuv fff1;
19269 struct xyz fff2;
19270 @};
19271
19272 struct tyu
19273 @{
19274 int a1 : 1;
19275 int a2 : 3;
19276 int a3 : 23;
19277 char a4 : 2;
19278 int64_t a5;
19279 int a6 : 5;
19280 int64_t a7 : 3;
19281 @};
19282 @end smallexample
19283
19284 Issuing a @kbd{ptype /o struct tuv} command would print:
19285
19286 @smallexample
19287 (@value{GDBP}) ptype /o struct tuv
19288 /* offset | size */ type = struct tuv @{
19289 /* 0 | 4 */ int a1;
19290 /* XXX 4-byte hole */
19291 /* 8 | 8 */ char *a2;
19292 /* 16 | 4 */ int a3;
19293
19294 /* total size (bytes): 24 */
19295 @}
19296 @end smallexample
19297
19298 Notice the format of the first column of comments. There, you can
19299 find two parts separated by the @samp{|} character: the @emph{offset},
19300 which indicates where the field is located inside the struct, in
19301 bytes, and the @emph{size} of the field. Another interesting line is
19302 the marker of a @emph{hole} in the struct, indicating that it may be
19303 possible to pack the struct and make it use less space by reorganizing
19304 its fields.
19305
19306 It is also possible to print offsets inside an union:
19307
19308 @smallexample
19309 (@value{GDBP}) ptype /o union qwe
19310 /* offset | size */ type = union qwe @{
19311 /* 24 */ struct tuv @{
19312 /* 0 | 4 */ int a1;
19313 /* XXX 4-byte hole */
19314 /* 8 | 8 */ char *a2;
19315 /* 16 | 4 */ int a3;
19316
19317 /* total size (bytes): 24 */
19318 @} fff1;
19319 /* 40 */ struct xyz @{
19320 /* 0 | 4 */ int f1;
19321 /* 4 | 1 */ char f2;
19322 /* XXX 3-byte hole */
19323 /* 8 | 8 */ void *f3;
19324 /* 16 | 24 */ struct tuv @{
19325 /* 16 | 4 */ int a1;
19326 /* XXX 4-byte hole */
19327 /* 24 | 8 */ char *a2;
19328 /* 32 | 4 */ int a3;
19329
19330 /* total size (bytes): 24 */
19331 @} f4;
19332
19333 /* total size (bytes): 40 */
19334 @} fff2;
19335
19336 /* total size (bytes): 40 */
19337 @}
19338 @end smallexample
19339
19340 In this case, since @code{struct tuv} and @code{struct xyz} occupy the
19341 same space (because we are dealing with an union), the offset is not
19342 printed for them. However, you can still examine the offset of each
19343 of these structures' fields.
19344
19345 Another useful scenario is printing the offsets of a struct containing
19346 bitfields:
19347
19348 @smallexample
19349 (@value{GDBP}) ptype /o struct tyu
19350 /* offset | size */ type = struct tyu @{
19351 /* 0:31 | 4 */ int a1 : 1;
19352 /* 0:28 | 4 */ int a2 : 3;
19353 /* 0: 5 | 4 */ int a3 : 23;
19354 /* 3: 3 | 1 */ signed char a4 : 2;
19355 /* XXX 3-bit hole */
19356 /* XXX 4-byte hole */
19357 /* 8 | 8 */ int64_t a5;
19358 /* 16: 0 | 4 */ int a6 : 5;
19359 /* 16: 5 | 8 */ int64_t a7 : 3;
19360 /* XXX 7-byte padding */
19361
19362 /* total size (bytes): 24 */
19363 @}
19364 @end smallexample
19365
19366 Note how the offset information is now extended to also include the
19367 first bit of the bitfield.
19368 @end table
19369
19370 @kindex ptype
19371 @item ptype[/@var{flags}] [@var{arg}]
19372 @code{ptype} accepts the same arguments as @code{whatis}, but prints a
19373 detailed description of the type, instead of just the name of the type.
19374 @xref{Expressions, ,Expressions}.
19375
19376 Contrary to @code{whatis}, @code{ptype} always unrolls any
19377 @code{typedef}s in its argument declaration, whether the argument is
19378 a variable, expression, or a data type. This means that @code{ptype}
19379 of a variable or an expression will not print literally its type as
19380 present in the source code---use @code{whatis} for that. @code{typedef}s at
19381 the pointer or reference targets are also unrolled. Only @code{typedef}s of
19382 fields, methods and inner @code{class typedef}s of @code{struct}s,
19383 @code{class}es and @code{union}s are not unrolled even with @code{ptype}.
19384
19385 For example, for this variable declaration:
19386
19387 @smallexample
19388 typedef double real_t;
19389 struct complex @{ real_t real; double imag; @};
19390 typedef struct complex complex_t;
19391 complex_t var;
19392 real_t *real_pointer_var;
19393 @end smallexample
19394
19395 @noindent
19396 the two commands give this output:
19397
19398 @smallexample
19399 @group
19400 (@value{GDBP}) whatis var
19401 type = complex_t
19402 (@value{GDBP}) ptype var
19403 type = struct complex @{
19404 real_t real;
19405 double imag;
19406 @}
19407 (@value{GDBP}) whatis complex_t
19408 type = struct complex
19409 (@value{GDBP}) whatis struct complex
19410 type = struct complex
19411 (@value{GDBP}) ptype struct complex
19412 type = struct complex @{
19413 real_t real;
19414 double imag;
19415 @}
19416 (@value{GDBP}) whatis real_pointer_var
19417 type = real_t *
19418 (@value{GDBP}) ptype real_pointer_var
19419 type = double *
19420 @end group
19421 @end smallexample
19422
19423 @noindent
19424 As with @code{whatis}, using @code{ptype} without an argument refers to
19425 the type of @code{$}, the last value in the value history.
19426
19427 @cindex incomplete type
19428 Sometimes, programs use opaque data types or incomplete specifications
19429 of complex data structure. If the debug information included in the
19430 program does not allow @value{GDBN} to display a full declaration of
19431 the data type, it will say @samp{<incomplete type>}. For example,
19432 given these declarations:
19433
19434 @smallexample
19435 struct foo;
19436 struct foo *fooptr;
19437 @end smallexample
19438
19439 @noindent
19440 but no definition for @code{struct foo} itself, @value{GDBN} will say:
19441
19442 @smallexample
19443 (@value{GDBP}) ptype foo
19444 $1 = <incomplete type>
19445 @end smallexample
19446
19447 @noindent
19448 ``Incomplete type'' is C terminology for data types that are not
19449 completely specified.
19450
19451 @cindex unknown type
19452 Othertimes, information about a variable's type is completely absent
19453 from the debug information included in the program. This most often
19454 happens when the program or library where the variable is defined
19455 includes no debug information at all. @value{GDBN} knows the variable
19456 exists from inspecting the linker/loader symbol table (e.g., the ELF
19457 dynamic symbol table), but such symbols do not contain type
19458 information. Inspecting the type of a (global) variable for which
19459 @value{GDBN} has no type information shows:
19460
19461 @smallexample
19462 (@value{GDBP}) ptype var
19463 type = <data variable, no debug info>
19464 @end smallexample
19465
19466 @xref{Variables, no debug info variables}, for how to print the values
19467 of such variables.
19468
19469 @kindex info types
19470 @item info types [-q] [@var{regexp}]
19471 Print a brief description of all types whose names match the regular
19472 expression @var{regexp} (or all types in your program, if you supply
19473 no argument). Each complete typename is matched as though it were a
19474 complete line; thus, @samp{i type value} gives information on all
19475 types in your program whose names include the string @code{value}, but
19476 @samp{i type ^value$} gives information only on types whose complete
19477 name is @code{value}.
19478
19479 In programs using different languages, @value{GDBN} chooses the syntax
19480 to print the type description according to the
19481 @samp{set language} value: using @samp{set language auto}
19482 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19483 language of the type, other values mean to use
19484 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19485
19486 This command differs from @code{ptype} in two ways: first, like
19487 @code{whatis}, it does not print a detailed description; second, it
19488 lists all source files and line numbers where a type is defined.
19489
19490 The output from @samp{into types} is proceeded with a header line
19491 describing what types are being listed. The optional flag @samp{-q},
19492 which stands for @samp{quiet}, disables printing this header
19493 information.
19494
19495 @kindex info type-printers
19496 @item info type-printers
19497 Versions of @value{GDBN} that ship with Python scripting enabled may
19498 have ``type printers'' available. When using @command{ptype} or
19499 @command{whatis}, these printers are consulted when the name of a type
19500 is needed. @xref{Type Printing API}, for more information on writing
19501 type printers.
19502
19503 @code{info type-printers} displays all the available type printers.
19504
19505 @kindex enable type-printer
19506 @kindex disable type-printer
19507 @item enable type-printer @var{name}@dots{}
19508 @item disable type-printer @var{name}@dots{}
19509 These commands can be used to enable or disable type printers.
19510
19511 @kindex info scope
19512 @cindex local variables
19513 @item info scope @var{location}
19514 List all the variables local to a particular scope. This command
19515 accepts a @var{location} argument---a function name, a source line, or
19516 an address preceded by a @samp{*}, and prints all the variables local
19517 to the scope defined by that location. (@xref{Specify Location}, for
19518 details about supported forms of @var{location}.) For example:
19519
19520 @smallexample
19521 (@value{GDBP}) @b{info scope command_line_handler}
19522 Scope for command_line_handler:
19523 Symbol rl is an argument at stack/frame offset 8, length 4.
19524 Symbol linebuffer is in static storage at address 0x150a18, length 4.
19525 Symbol linelength is in static storage at address 0x150a1c, length 4.
19526 Symbol p is a local variable in register $esi, length 4.
19527 Symbol p1 is a local variable in register $ebx, length 4.
19528 Symbol nline is a local variable in register $edx, length 4.
19529 Symbol repeat is a local variable at frame offset -8, length 4.
19530 @end smallexample
19531
19532 @noindent
19533 This command is especially useful for determining what data to collect
19534 during a @dfn{trace experiment}, see @ref{Tracepoint Actions,
19535 collect}.
19536
19537 @kindex info source
19538 @item info source
19539 Show information about the current source file---that is, the source file for
19540 the function containing the current point of execution:
19541 @itemize @bullet
19542 @item
19543 the name of the source file, and the directory containing it,
19544 @item
19545 the directory it was compiled in,
19546 @item
19547 its length, in lines,
19548 @item
19549 which programming language it is written in,
19550 @item
19551 if the debug information provides it, the program that compiled the file
19552 (which may include, e.g., the compiler version and command line arguments),
19553 @item
19554 whether the executable includes debugging information for that file, and
19555 if so, what format the information is in (e.g., STABS, Dwarf 2, etc.), and
19556 @item
19557 whether the debugging information includes information about
19558 preprocessor macros.
19559 @end itemize
19560
19561
19562 @kindex info sources
19563 @item info sources @r{[}-dirname | -basename@r{]} @r{[}--@r{]} @r{[}@var{regexp}@r{]}
19564
19565
19566 With no options @samp{info sources} prints the names of all source
19567 files in your program for which there is debugging information. The
19568 source files are presented based on a list of object files
19569 (executables and libraries) currently loaded into @value{GDBN}. For
19570 each object file all of the associated source files are listed.
19571
19572 Each source file will only be printed once for each object file, but a
19573 single source file can be repeated in the output if it is part of
19574 multiple object files.
19575
19576 If the optional @var{regexp} is provided, then only source files that
19577 match the regular expression will be printed. The matching is
19578 case-sensitive, except on operating systems that have case-insensitive
19579 filesystem (e.g., MS-Windows). @samp{--} can be used before
19580 @var{regexp} to prevent @value{GDBN} interpreting @var{regexp} as a
19581 command option (e.g. if @var{regexp} starts with @samp{-}).
19582
19583 By default, the @var{regexp} is used to match anywhere in the
19584 filename. If @code{-dirname}, only files having a dirname matching
19585 @var{regexp} are shown. If @code{-basename}, only files having a
19586 basename matching @var{regexp} are shown.
19587
19588 It is possible that an object file may be printed in the list with no
19589 associated source files. This can happen when either no source files
19590 match @var{regexp}, or, the object file was compiled without debug
19591 information and so @value{GDBN} is unable to find any source file
19592 names.
19593
19594 @kindex info functions
19595 @item info functions [-q] [-n]
19596 Print the names and data types of all defined functions.
19597 Similarly to @samp{info types}, this command groups its output by source
19598 files and annotates each function definition with its source line
19599 number.
19600
19601 In programs using different languages, @value{GDBN} chooses the syntax
19602 to print the function name and type according to the
19603 @samp{set language} value: using @samp{set language auto}
19604 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19605 language of the function, other values mean to use
19606 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19607
19608 The @samp{-n} flag excludes @dfn{non-debugging symbols} from the
19609 results. A non-debugging symbol is a symbol that comes from the
19610 executable's symbol table, not from the debug information (for
19611 example, DWARF) associated with the executable.
19612
19613 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19614 printing header information and messages explaining why no functions
19615 have been printed.
19616
19617 @item info functions [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
19618 Like @samp{info functions}, but only print the names and data types
19619 of the functions selected with the provided regexp(s).
19620
19621 If @var{regexp} is provided, print only the functions whose names
19622 match the regular expression @var{regexp}.
19623 Thus, @samp{info fun step} finds all functions whose
19624 names include @code{step}; @samp{info fun ^step} finds those whose names
19625 start with @code{step}. If a function name contains characters that
19626 conflict with the regular expression language (e.g.@:
19627 @samp{operator*()}), they may be quoted with a backslash.
19628
19629 If @var{type_regexp} is provided, print only the functions whose
19630 types, as printed by the @code{whatis} command, match
19631 the regular expression @var{type_regexp}.
19632 If @var{type_regexp} contains space(s), it should be enclosed in
19633 quote characters. If needed, use backslash to escape the meaning
19634 of special characters or quotes.
19635 Thus, @samp{info fun -t '^int ('} finds the functions that return
19636 an integer; @samp{info fun -t '(.*int.*'} finds the functions that
19637 have an argument type containing int; @samp{info fun -t '^int (' ^step}
19638 finds the functions whose names start with @code{step} and that return
19639 int.
19640
19641 If both @var{regexp} and @var{type_regexp} are provided, a function
19642 is printed only if its name matches @var{regexp} and its type matches
19643 @var{type_regexp}.
19644
19645
19646 @kindex info variables
19647 @item info variables [-q] [-n]
19648 Print the names and data types of all variables that are defined
19649 outside of functions (i.e.@: excluding local variables).
19650 The printed variables are grouped by source files and annotated with
19651 their respective source line numbers.
19652
19653 In programs using different languages, @value{GDBN} chooses the syntax
19654 to print the variable name and type according to the
19655 @samp{set language} value: using @samp{set language auto}
19656 (see @ref{Automatically, ,Set Language Automatically}) means to use the
19657 language of the variable, other values mean to use
19658 the manually specified language (see @ref{Manually, ,Set Language Manually}).
19659
19660 The @samp{-n} flag excludes non-debugging symbols from the results.
19661
19662 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19663 printing header information and messages explaining why no variables
19664 have been printed.
19665
19666 @item info variables [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
19667 Like @kbd{info variables}, but only print the variables selected
19668 with the provided regexp(s).
19669
19670 If @var{regexp} is provided, print only the variables whose names
19671 match the regular expression @var{regexp}.
19672
19673 If @var{type_regexp} is provided, print only the variables whose
19674 types, as printed by the @code{whatis} command, match
19675 the regular expression @var{type_regexp}.
19676 If @var{type_regexp} contains space(s), it should be enclosed in
19677 quote characters. If needed, use backslash to escape the meaning
19678 of special characters or quotes.
19679
19680 If both @var{regexp} and @var{type_regexp} are provided, an argument
19681 is printed only if its name matches @var{regexp} and its type matches
19682 @var{type_regexp}.
19683
19684 @kindex info modules
19685 @cindex modules
19686 @item info modules @r{[}-q@r{]} @r{[}@var{regexp}@r{]}
19687 List all Fortran modules in the program, or all modules matching the
19688 optional regular expression @var{regexp}.
19689
19690 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19691 printing header information and messages explaining why no modules
19692 have been printed.
19693
19694 @kindex info module
19695 @cindex Fortran modules, information about
19696 @cindex functions and variables by Fortran module
19697 @cindex module functions and variables
19698 @item info module functions @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19699 @itemx info module variables @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19700 List all functions or variables within all Fortran modules. The set
19701 of functions or variables listed can be limited by providing some or
19702 all of the optional regular expressions. If @var{module-regexp} is
19703 provided, then only Fortran modules matching @var{module-regexp} will
19704 be searched. Only functions or variables whose type matches the
19705 optional regular expression @var{type-regexp} will be listed. And
19706 only functions or variables whose name matches the optional regular
19707 expression @var{regexp} will be listed.
19708
19709 The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19710 printing header information and messages explaining why no functions
19711 or variables have been printed.
19712
19713 @kindex info classes
19714 @cindex Objective-C, classes and selectors
19715 @item info classes
19716 @itemx info classes @var{regexp}
19717 Display all Objective-C classes in your program, or
19718 (with the @var{regexp} argument) all those matching a particular regular
19719 expression.
19720
19721 @kindex info selectors
19722 @item info selectors
19723 @itemx info selectors @var{regexp}
19724 Display all Objective-C selectors in your program, or
19725 (with the @var{regexp} argument) all those matching a particular regular
19726 expression.
19727
19728 @ignore
19729 This was never implemented.
19730 @kindex info methods
19731 @item info methods
19732 @itemx info methods @var{regexp}
19733 The @code{info methods} command permits the user to examine all defined
19734 methods within C@t{++} program, or (with the @var{regexp} argument) a
19735 specific set of methods found in the various C@t{++} classes. Many
19736 C@t{++} classes provide a large number of methods. Thus, the output
19737 from the @code{ptype} command can be overwhelming and hard to use. The
19738 @code{info-methods} command filters the methods, printing only those
19739 which match the regular-expression @var{regexp}.
19740 @end ignore
19741
19742 @cindex opaque data types
19743 @kindex set opaque-type-resolution
19744 @item set opaque-type-resolution on
19745 Tell @value{GDBN} to resolve opaque types. An opaque type is a type
19746 declared as a pointer to a @code{struct}, @code{class}, or
19747 @code{union}---for example, @code{struct MyType *}---that is used in one
19748 source file although the full declaration of @code{struct MyType} is in
19749 another source file. The default is on.
19750
19751 A change in the setting of this subcommand will not take effect until
19752 the next time symbols for a file are loaded.
19753
19754 @item set opaque-type-resolution off
19755 Tell @value{GDBN} not to resolve opaque types. In this case, the type
19756 is printed as follows:
19757 @smallexample
19758 @{<no data fields>@}
19759 @end smallexample
19760
19761 @kindex show opaque-type-resolution
19762 @item show opaque-type-resolution
19763 Show whether opaque types are resolved or not.
19764
19765 @kindex set print symbol-loading
19766 @cindex print messages when symbols are loaded
19767 @item set print symbol-loading
19768 @itemx set print symbol-loading full
19769 @itemx set print symbol-loading brief
19770 @itemx set print symbol-loading off
19771 The @code{set print symbol-loading} command allows you to control the
19772 printing of messages when @value{GDBN} loads symbol information.
19773 By default a message is printed for the executable and one for each
19774 shared library, and normally this is what you want. However, when
19775 debugging apps with large numbers of shared libraries these messages
19776 can be annoying.
19777 When set to @code{brief} a message is printed for each executable,
19778 and when @value{GDBN} loads a collection of shared libraries at once
19779 it will only print one message regardless of the number of shared
19780 libraries. When set to @code{off} no messages are printed.
19781
19782 @kindex show print symbol-loading
19783 @item show print symbol-loading
19784 Show whether messages will be printed when a @value{GDBN} command
19785 entered from the keyboard causes symbol information to be loaded.
19786
19787 @kindex maint print symbols
19788 @cindex symbol dump
19789 @kindex maint print psymbols
19790 @cindex partial symbol dump
19791 @kindex maint print msymbols
19792 @cindex minimal symbol dump
19793 @item maint print symbols @r{[}-pc @var{address}@r{]} @r{[}@var{filename}@r{]}
19794 @itemx maint print symbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19795 @itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-pc @var{address}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19796 @itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19797 @itemx maint print msymbols @r{[}-objfile @var{objfile}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19798 Write a dump of debugging symbol data into the file @var{filename} or
19799 the terminal if @var{filename} is unspecified.
19800 If @code{-objfile @var{objfile}} is specified, only dump symbols for
19801 that objfile.
19802 If @code{-pc @var{address}} is specified, only dump symbols for the file
19803 with code at that address. Note that @var{address} may be a symbol like
19804 @code{main}.
19805 If @code{-source @var{source}} is specified, only dump symbols for that
19806 source file.
19807
19808 These commands are used to debug the @value{GDBN} symbol-reading code.
19809 These commands do not modify internal @value{GDBN} state, therefore
19810 @samp{maint print symbols} will only print symbols for already expanded symbol
19811 tables.
19812 You can use the command @code{info sources} to find out which files these are.
19813 If you use @samp{maint print psymbols} instead, the dump shows information
19814 about symbols that @value{GDBN} only knows partially---that is, symbols
19815 defined in files that @value{GDBN} has skimmed, but not yet read completely.
19816 Finally, @samp{maint print msymbols} just dumps ``minimal symbols'', e.g.,
19817 ``ELF symbols''.
19818
19819 @xref{Files, ,Commands to Specify Files}, for a discussion of how
19820 @value{GDBN} reads symbols (in the description of @code{symbol-file}).
19821
19822 @kindex maint info symtabs
19823 @kindex maint info psymtabs
19824 @cindex listing @value{GDBN}'s internal symbol tables
19825 @cindex symbol tables, listing @value{GDBN}'s internal
19826 @cindex full symbol tables, listing @value{GDBN}'s internal
19827 @cindex partial symbol tables, listing @value{GDBN}'s internal
19828 @item maint info symtabs @r{[} @var{regexp} @r{]}
19829 @itemx maint info psymtabs @r{[} @var{regexp} @r{]}
19830
19831 List the @code{struct symtab} or @code{struct partial_symtab}
19832 structures whose names match @var{regexp}. If @var{regexp} is not
19833 given, list them all. The output includes expressions which you can
19834 copy into a @value{GDBN} debugging this one to examine a particular
19835 structure in more detail. For example:
19836
19837 @smallexample
19838 (@value{GDBP}) maint info psymtabs dwarf2read
19839 @{ objfile /home/gnu/build/gdb/gdb
19840 ((struct objfile *) 0x82e69d0)
19841 @{ psymtab /home/gnu/src/gdb/dwarf2read.c
19842 ((struct partial_symtab *) 0x8474b10)
19843 readin no
19844 fullname (null)
19845 text addresses 0x814d3c8 -- 0x8158074
19846 globals (* (struct partial_symbol **) 0x8507a08 @@ 9)
19847 statics (* (struct partial_symbol **) 0x40e95b78 @@ 2882)
19848 dependencies (none)
19849 @}
19850 @}
19851 (@value{GDBP}) maint info symtabs
19852 (@value{GDBP})
19853 @end smallexample
19854 @noindent
19855 We see that there is one partial symbol table whose filename contains
19856 the string @samp{dwarf2read}, belonging to the @samp{gdb} executable;
19857 and we see that @value{GDBN} has not read in any symtabs yet at all.
19858 If we set a breakpoint on a function, that will cause @value{GDBN} to
19859 read the symtab for the compilation unit containing that function:
19860
19861 @smallexample
19862 (@value{GDBP}) break dwarf2_psymtab_to_symtab
19863 Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c,
19864 line 1574.
19865 (@value{GDBP}) maint info symtabs
19866 @{ objfile /home/gnu/build/gdb/gdb
19867 ((struct objfile *) 0x82e69d0)
19868 @{ symtab /home/gnu/src/gdb/dwarf2read.c
19869 ((struct symtab *) 0x86c1f38)
19870 dirname (null)
19871 fullname (null)
19872 blockvector ((struct blockvector *) 0x86c1bd0) (primary)
19873 linetable ((struct linetable *) 0x8370fa0)
19874 debugformat DWARF 2
19875 @}
19876 @}
19877 (@value{GDBP})
19878 @end smallexample
19879
19880 @kindex maint info line-table
19881 @cindex listing @value{GDBN}'s internal line tables
19882 @cindex line tables, listing @value{GDBN}'s internal
19883 @item maint info line-table @r{[} @var{regexp} @r{]}
19884
19885 List the @code{struct linetable} from all @code{struct symtab}
19886 instances whose name matches @var{regexp}. If @var{regexp} is not
19887 given, list the @code{struct linetable} from all @code{struct symtab}.
19888 For example:
19889
19890 @smallexample
19891 (@value{GDBP}) maint info line-table
19892 objfile: /home/gnu/build/a.out ((struct objfile *) 0x6120000e0d40)
19893 compunit_symtab: simple.cpp ((struct compunit_symtab *) 0x6210000ff450)
19894 symtab: /home/gnu/src/simple.cpp ((struct symtab *) 0x6210000ff4d0)
19895 linetable: ((struct linetable *) 0x62100012b760):
19896 INDEX LINE ADDRESS IS-STMT PROLOGUE-END
19897 0 3 0x0000000000401110 Y
19898 1 4 0x0000000000401114 Y Y
19899 2 9 0x0000000000401120 Y
19900 3 10 0x0000000000401124 Y Y
19901 4 10 0x0000000000401129
19902 5 15 0x0000000000401130 Y
19903 6 16 0x0000000000401134 Y Y
19904 7 16 0x0000000000401139
19905 8 21 0x0000000000401140 Y
19906 9 22 0x000000000040114f Y Y
19907 10 22 0x0000000000401154
19908 11 END 0x000000000040115a Y
19909 @end smallexample
19910 @noindent
19911 The @samp{IS-STMT} column indicates if the address is a recommended breakpoint
19912 location to represent a line or a statement. The @samp{PROLOGUE-END} column
19913 indicates that a given address is an adequate place to set a breakpoint at the
19914 first instruction following a function prologue.
19915
19916 @kindex maint set symbol-cache-size
19917 @cindex symbol cache size
19918 @item maint set symbol-cache-size @var{size}
19919 Set the size of the symbol cache to @var{size}.
19920 The default size is intended to be good enough for debugging
19921 most applications. This option exists to allow for experimenting
19922 with different sizes.
19923
19924 @kindex maint show symbol-cache-size
19925 @item maint show symbol-cache-size
19926 Show the size of the symbol cache.
19927
19928 @kindex maint print symbol-cache
19929 @cindex symbol cache, printing its contents
19930 @item maint print symbol-cache
19931 Print the contents of the symbol cache.
19932 This is useful when debugging symbol cache issues.
19933
19934 @kindex maint print symbol-cache-statistics
19935 @cindex symbol cache, printing usage statistics
19936 @item maint print symbol-cache-statistics
19937 Print symbol cache usage statistics.
19938 This helps determine how well the cache is being utilized.
19939
19940 @kindex maint flush symbol-cache
19941 @kindex maint flush-symbol-cache
19942 @cindex symbol cache, flushing
19943 @item maint flush symbol-cache
19944 @itemx maint flush-symbol-cache
19945 Flush the contents of the symbol cache, all entries are removed. This
19946 command is useful when debugging the symbol cache. It is also useful
19947 when collecting performance data. The command @code{maint
19948 flush-symbol-cache} is deprecated in favor of @code{maint flush
19949 symbol-cache}..
19950
19951 @kindex maint set ignore-prologue-end-flag
19952 @cindex prologue-end
19953 @item maint set ignore-prologue-end-flag [on|off]
19954 Enable or disable the use of the @samp{PROLOGUE-END} flag from the line-table.
19955 When @samp{off} (the default), @value{GDBN} uses the @samp{PROLOGUE-END} flag
19956 to place breakpoints past the end of a function prologue. When @samp{on},
19957 @value{GDBN} ignores the flag and relies on prologue analyzers to skip function
19958 prologues.
19959
19960 @kindex maint show ignore-prologue-end-flag
19961 @item maint show ignore-prologue-end-flag
19962 Show whether @value{GDBN} will ignore the @samp{PROLOGUE-END} flag.
19963
19964 @end table
19965
19966 @node Altering
19967 @chapter Altering Execution
19968
19969 Once you think you have found an error in your program, you might want to
19970 find out for certain whether correcting the apparent error would lead to
19971 correct results in the rest of the run. You can find the answer by
19972 experiment, using the @value{GDBN} features for altering execution of the
19973 program.
19974
19975 For example, you can store new values into variables or memory
19976 locations, give your program a signal, restart it at a different
19977 address, or even return prematurely from a function.
19978
19979 @menu
19980 * Assignment:: Assignment to variables
19981 * Jumping:: Continuing at a different address
19982 * Signaling:: Giving your program a signal
19983 * Returning:: Returning from a function
19984 * Calling:: Calling your program's functions
19985 * Patching:: Patching your program
19986 * Compiling and Injecting Code:: Compiling and injecting code in @value{GDBN}
19987 @end menu
19988
19989 @node Assignment
19990 @section Assignment to Variables
19991
19992 @cindex assignment
19993 @cindex setting variables
19994 To alter the value of a variable, evaluate an assignment expression.
19995 @xref{Expressions, ,Expressions}. For example,
19996
19997 @smallexample
19998 print x=4
19999 @end smallexample
20000
20001 @noindent
20002 stores the value 4 into the variable @code{x}, and then prints the
20003 value of the assignment expression (which is 4).
20004 @xref{Languages, ,Using @value{GDBN} with Different Languages}, for more
20005 information on operators in supported languages.
20006
20007 @kindex set variable
20008 @cindex variables, setting
20009 If you are not interested in seeing the value of the assignment, use the
20010 @code{set} command instead of the @code{print} command. @code{set} is
20011 really the same as @code{print} except that the expression's value is
20012 not printed and is not put in the value history (@pxref{Value History,
20013 ,Value History}). The expression is evaluated only for its effects.
20014
20015 If the beginning of the argument string of the @code{set} command
20016 appears identical to a @code{set} subcommand, use the @code{set
20017 variable} command instead of just @code{set}. This command is identical
20018 to @code{set} except for its lack of subcommands. For example, if your
20019 program has a variable @code{width}, you get an error if you try to set
20020 a new value with just @samp{set width=13}, because @value{GDBN} has the
20021 command @code{set width}:
20022
20023 @smallexample
20024 (@value{GDBP}) whatis width
20025 type = double
20026 (@value{GDBP}) p width
20027 $4 = 13
20028 (@value{GDBP}) set width=47
20029 Invalid syntax in expression.
20030 @end smallexample
20031
20032 @noindent
20033 The invalid expression, of course, is @samp{=47}. In
20034 order to actually set the program's variable @code{width}, use
20035
20036 @smallexample
20037 (@value{GDBP}) set var width=47
20038 @end smallexample
20039
20040 Because the @code{set} command has many subcommands that can conflict
20041 with the names of program variables, it is a good idea to use the
20042 @code{set variable} command instead of just @code{set}. For example, if
20043 your program has a variable @code{g}, you run into problems if you try
20044 to set a new value with just @samp{set g=4}, because @value{GDBN} has
20045 the command @code{set gnutarget}, abbreviated @code{set g}:
20046
20047 @smallexample
20048 @group
20049 (@value{GDBP}) whatis g
20050 type = double
20051 (@value{GDBP}) p g
20052 $1 = 1
20053 (@value{GDBP}) set g=4
20054 (@value{GDBP}) p g
20055 $2 = 1
20056 (@value{GDBP}) r
20057 The program being debugged has been started already.
20058 Start it from the beginning? (y or n) y
20059 Starting program: /home/smith/cc_progs/a.out
20060 "/home/smith/cc_progs/a.out": can't open to read symbols:
20061 Invalid bfd target.
20062 (@value{GDBP}) show g
20063 The current BFD target is "=4".
20064 @end group
20065 @end smallexample
20066
20067 @noindent
20068 The program variable @code{g} did not change, and you silently set the
20069 @code{gnutarget} to an invalid value. In order to set the variable
20070 @code{g}, use
20071
20072 @smallexample
20073 (@value{GDBP}) set var g=4
20074 @end smallexample
20075
20076 @value{GDBN} allows more implicit conversions in assignments than C; you can
20077 freely store an integer value into a pointer variable or vice versa,
20078 and you can convert any structure to any other structure that is the
20079 same length or shorter.
20080 @comment FIXME: how do structs align/pad in these conversions?
20081 @comment /doc@cygnus.com 18dec1990
20082
20083 To store values into arbitrary places in memory, use the @samp{@{@dots{}@}}
20084 construct to generate a value of specified type at a specified address
20085 (@pxref{Expressions, ,Expressions}). For example, @code{@{int@}0x83040} refers
20086 to memory location @code{0x83040} as an integer (which implies a certain size
20087 and representation in memory), and
20088
20089 @smallexample
20090 set @{int@}0x83040 = 4
20091 @end smallexample
20092
20093 @noindent
20094 stores the value 4 into that memory location.
20095
20096 @node Jumping
20097 @section Continuing at a Different Address
20098
20099 Ordinarily, when you continue your program, you do so at the place where
20100 it stopped, with the @code{continue} command. You can instead continue at
20101 an address of your own choosing, with the following commands:
20102
20103 @table @code
20104 @kindex jump
20105 @kindex j @r{(@code{jump})}
20106 @item jump @var{location}
20107 @itemx j @var{location}
20108 Resume execution at @var{location}. Execution stops again immediately
20109 if there is a breakpoint there. @xref{Specify Location}, for a description
20110 of the different forms of @var{location}. It is common
20111 practice to use the @code{tbreak} command in conjunction with
20112 @code{jump}. @xref{Set Breaks, ,Setting Breakpoints}.
20113
20114 The @code{jump} command does not change the current stack frame, or
20115 the stack pointer, or the contents of any memory location or any
20116 register other than the program counter. If @var{location} is in
20117 a different function from the one currently executing, the results may
20118 be bizarre if the two functions expect different patterns of arguments or
20119 of local variables. For this reason, the @code{jump} command requests
20120 confirmation if the specified line is not in the function currently
20121 executing. However, even bizarre results are predictable if you are
20122 well acquainted with the machine-language code of your program.
20123 @end table
20124
20125 On many systems, you can get much the same effect as the @code{jump}
20126 command by storing a new value into the register @code{$pc}. The
20127 difference is that this does not start your program running; it only
20128 changes the address of where it @emph{will} run when you continue. For
20129 example,
20130
20131 @smallexample
20132 set $pc = 0x485
20133 @end smallexample
20134
20135 @noindent
20136 makes the next @code{continue} command or stepping command execute at
20137 address @code{0x485}, rather than at the address where your program stopped.
20138 @xref{Continuing and Stepping, ,Continuing and Stepping}.
20139
20140 The most common occasion to use the @code{jump} command is to back
20141 up---perhaps with more breakpoints set---over a portion of a program
20142 that has already executed, in order to examine its execution in more
20143 detail.
20144
20145 @c @group
20146 @node Signaling
20147 @section Giving your Program a Signal
20148 @cindex deliver a signal to a program
20149
20150 @table @code
20151 @kindex signal
20152 @item signal @var{signal}
20153 Resume execution where your program is stopped, but immediately give it the
20154 signal @var{signal}. The @var{signal} can be the name or the number of a
20155 signal. For example, on many systems @code{signal 2} and @code{signal
20156 SIGINT} are both ways of sending an interrupt signal.
20157
20158 Alternatively, if @var{signal} is zero, continue execution without
20159 giving a signal. This is useful when your program stopped on account of
20160 a signal and would ordinarily see the signal when resumed with the
20161 @code{continue} command; @samp{signal 0} causes it to resume without a
20162 signal.
20163
20164 @emph{Note:} When resuming a multi-threaded program, @var{signal} is
20165 delivered to the currently selected thread, not the thread that last
20166 reported a stop. This includes the situation where a thread was
20167 stopped due to a signal. So if you want to continue execution
20168 suppressing the signal that stopped a thread, you should select that
20169 same thread before issuing the @samp{signal 0} command. If you issue
20170 the @samp{signal 0} command with another thread as the selected one,
20171 @value{GDBN} detects that and asks for confirmation.
20172
20173 Invoking the @code{signal} command is not the same as invoking the
20174 @code{kill} utility from the shell. Sending a signal with @code{kill}
20175 causes @value{GDBN} to decide what to do with the signal depending on
20176 the signal handling tables (@pxref{Signals}). The @code{signal} command
20177 passes the signal directly to your program.
20178
20179 @code{signal} does not repeat when you press @key{RET} a second time
20180 after executing the command.
20181
20182 @kindex queue-signal
20183 @item queue-signal @var{signal}
20184 Queue @var{signal} to be delivered immediately to the current thread
20185 when execution of the thread resumes. The @var{signal} can be the name or
20186 the number of a signal. For example, on many systems @code{signal 2} and
20187 @code{signal SIGINT} are both ways of sending an interrupt signal.
20188 The handling of the signal must be set to pass the signal to the program,
20189 otherwise @value{GDBN} will report an error.
20190 You can control the handling of signals from @value{GDBN} with the
20191 @code{handle} command (@pxref{Signals}).
20192
20193 Alternatively, if @var{signal} is zero, any currently queued signal
20194 for the current thread is discarded and when execution resumes no signal
20195 will be delivered. This is useful when your program stopped on account
20196 of a signal and would ordinarily see the signal when resumed with the
20197 @code{continue} command.
20198
20199 This command differs from the @code{signal} command in that the signal
20200 is just queued, execution is not resumed. And @code{queue-signal} cannot
20201 be used to pass a signal whose handling state has been set to @code{nopass}
20202 (@pxref{Signals}).
20203 @end table
20204 @c @end group
20205
20206 @xref{stepping into signal handlers}, for information on how stepping
20207 commands behave when the thread has a signal queued.
20208
20209 @node Returning
20210 @section Returning from a Function
20211
20212 @table @code
20213 @cindex returning from a function
20214 @kindex return
20215 @item return
20216 @itemx return @var{expression}
20217 You can cancel execution of a function call with the @code{return}
20218 command. If you give an
20219 @var{expression} argument, its value is used as the function's return
20220 value.
20221 @end table
20222
20223 When you use @code{return}, @value{GDBN} discards the selected stack frame
20224 (and all frames within it). You can think of this as making the
20225 discarded frame return prematurely. If you wish to specify a value to
20226 be returned, give that value as the argument to @code{return}.
20227
20228 This pops the selected stack frame (@pxref{Selection, ,Selecting a
20229 Frame}), and any other frames inside of it, leaving its caller as the
20230 innermost remaining frame. That frame becomes selected. The
20231 specified value is stored in the registers used for returning values
20232 of functions.
20233
20234 The @code{return} command does not resume execution; it leaves the
20235 program stopped in the state that would exist if the function had just
20236 returned. In contrast, the @code{finish} command (@pxref{Continuing
20237 and Stepping, ,Continuing and Stepping}) resumes execution until the
20238 selected stack frame returns naturally.
20239
20240 @value{GDBN} needs to know how the @var{expression} argument should be set for
20241 the inferior. The concrete registers assignment depends on the OS ABI and the
20242 type being returned by the selected stack frame. For example it is common for
20243 OS ABI to return floating point values in FPU registers while integer values in
20244 CPU registers. Still some ABIs return even floating point values in CPU
20245 registers. Larger integer widths (such as @code{long long int}) also have
20246 specific placement rules. @value{GDBN} already knows the OS ABI from its
20247 current target so it needs to find out also the type being returned to make the
20248 assignment into the right register(s).
20249
20250 Normally, the selected stack frame has debug info. @value{GDBN} will always
20251 use the debug info instead of the implicit type of @var{expression} when the
20252 debug info is available. For example, if you type @kbd{return -1}, and the
20253 function in the current stack frame is declared to return a @code{long long
20254 int}, @value{GDBN} transparently converts the implicit @code{int} value of -1
20255 into a @code{long long int}:
20256
20257 @smallexample
20258 Breakpoint 1, func () at gdb.base/return-nodebug.c:29
20259 29 return 31;
20260 (@value{GDBP}) return -1
20261 Make func return now? (y or n) y
20262 #0 0x004004f6 in main () at gdb.base/return-nodebug.c:43
20263 43 printf ("result=%lld\n", func ());
20264 (@value{GDBP})
20265 @end smallexample
20266
20267 However, if the selected stack frame does not have a debug info, e.g., if the
20268 function was compiled without debug info, @value{GDBN} has to find out the type
20269 to return from user. Specifying a different type by mistake may set the value
20270 in different inferior registers than the caller code expects. For example,
20271 typing @kbd{return -1} with its implicit type @code{int} would set only a part
20272 of a @code{long long int} result for a debug info less function (on 32-bit
20273 architectures). Therefore the user is required to specify the return type by
20274 an appropriate cast explicitly:
20275
20276 @smallexample
20277 Breakpoint 2, 0x0040050b in func ()
20278 (@value{GDBP}) return -1
20279 Return value type not available for selected stack frame.
20280 Please use an explicit cast of the value to return.
20281 (@value{GDBP}) return (long long int) -1
20282 Make selected stack frame return now? (y or n) y
20283 #0 0x00400526 in main ()
20284 (@value{GDBP})
20285 @end smallexample
20286
20287 @node Calling
20288 @section Calling Program Functions
20289
20290 @table @code
20291 @cindex calling functions
20292 @cindex inferior functions, calling
20293 @item print @var{expr}
20294 Evaluate the expression @var{expr} and display the resulting value.
20295 The expression may include calls to functions in the program being
20296 debugged.
20297
20298 @kindex call
20299 @item call @var{expr}
20300 Evaluate the expression @var{expr} without displaying @code{void}
20301 returned values.
20302
20303 You can use this variant of the @code{print} command if you want to
20304 execute a function from your program that does not return anything
20305 (a.k.a.@: @dfn{a void function}), but without cluttering the output
20306 with @code{void} returned values that @value{GDBN} will otherwise
20307 print. If the result is not void, it is printed and saved in the
20308 value history.
20309 @end table
20310
20311 It is possible for the function you call via the @code{print} or
20312 @code{call} command to generate a signal (e.g., if there's a bug in
20313 the function, or if you passed it incorrect arguments). What happens
20314 in that case is controlled by the @code{set unwindonsignal} command.
20315
20316 Similarly, with a C@t{++} program it is possible for the function you
20317 call via the @code{print} or @code{call} command to generate an
20318 exception that is not handled due to the constraints of the dummy
20319 frame. In this case, any exception that is raised in the frame, but has
20320 an out-of-frame exception handler will not be found. GDB builds a
20321 dummy-frame for the inferior function call, and the unwinder cannot
20322 seek for exception handlers outside of this dummy-frame. What happens
20323 in that case is controlled by the
20324 @code{set unwind-on-terminating-exception} command.
20325
20326 @table @code
20327 @item set unwindonsignal
20328 @kindex set unwindonsignal
20329 @cindex unwind stack in called functions
20330 @cindex call dummy stack unwinding
20331 Set unwinding of the stack if a signal is received while in a function
20332 that @value{GDBN} called in the program being debugged. If set to on,
20333 @value{GDBN} unwinds the stack it created for the call and restores
20334 the context to what it was before the call. If set to off (the
20335 default), @value{GDBN} stops in the frame where the signal was
20336 received.
20337
20338 @item show unwindonsignal
20339 @kindex show unwindonsignal
20340 Show the current setting of stack unwinding in the functions called by
20341 @value{GDBN}.
20342
20343 @item set unwind-on-terminating-exception
20344 @kindex set unwind-on-terminating-exception
20345 @cindex unwind stack in called functions with unhandled exceptions
20346 @cindex call dummy stack unwinding on unhandled exception.
20347 Set unwinding of the stack if a C@t{++} exception is raised, but left
20348 unhandled while in a function that @value{GDBN} called in the program being
20349 debugged. If set to on (the default), @value{GDBN} unwinds the stack
20350 it created for the call and restores the context to what it was before
20351 the call. If set to off, @value{GDBN} the exception is delivered to
20352 the default C@t{++} exception handler and the inferior terminated.
20353
20354 @item show unwind-on-terminating-exception
20355 @kindex show unwind-on-terminating-exception
20356 Show the current setting of stack unwinding in the functions called by
20357 @value{GDBN}.
20358
20359 @item set may-call-functions
20360 @kindex set may-call-functions
20361 @cindex disabling calling functions in the program
20362 @cindex calling functions in the program, disabling
20363 Set permission to call functions in the program.
20364 This controls whether @value{GDBN} will attempt to call functions in
20365 the program, such as with expressions in the @code{print} command. It
20366 defaults to @code{on}.
20367
20368 To call a function in the program, @value{GDBN} has to temporarily
20369 modify the state of the inferior. This has potentially undesired side
20370 effects. Also, having @value{GDBN} call nested functions is likely to
20371 be erroneous and may even crash the program being debugged. You can
20372 avoid such hazards by forbidding @value{GDBN} from calling functions
20373 in the program being debugged. If calling functions in the program
20374 is forbidden, GDB will throw an error when a command (such as printing
20375 an expression) starts a function call in the program.
20376
20377 @item show may-call-functions
20378 @kindex show may-call-functions
20379 Show permission to call functions in the program.
20380
20381 @end table
20382
20383 @subsection Calling functions with no debug info
20384
20385 @cindex no debug info functions
20386 Sometimes, a function you wish to call is missing debug information.
20387 In such case, @value{GDBN} does not know the type of the function,
20388 including the types of the function's parameters. To avoid calling
20389 the inferior function incorrectly, which could result in the called
20390 function functioning erroneously and even crash, @value{GDBN} refuses
20391 to call the function unless you tell it the type of the function.
20392
20393 For prototyped (i.e.@: ANSI/ISO style) functions, there are two ways
20394 to do that. The simplest is to cast the call to the function's
20395 declared return type. For example:
20396
20397 @smallexample
20398 (@value{GDBP}) p getenv ("PATH")
20399 'getenv' has unknown return type; cast the call to its declared return type
20400 (@value{GDBP}) p (char *) getenv ("PATH")
20401 $1 = 0x7fffffffe7ba "/usr/local/bin:/"...
20402 @end smallexample
20403
20404 Casting the return type of a no-debug function is equivalent to
20405 casting the function to a pointer to a prototyped function that has a
20406 prototype that matches the types of the passed-in arguments, and
20407 calling that. I.e., the call above is equivalent to:
20408
20409 @smallexample
20410 (@value{GDBP}) p ((char * (*) (const char *)) getenv) ("PATH")
20411 @end smallexample
20412
20413 @noindent
20414 and given this prototyped C or C++ function with float parameters:
20415
20416 @smallexample
20417 float multiply (float v1, float v2) @{ return v1 * v2; @}
20418 @end smallexample
20419
20420 @noindent
20421 these calls are equivalent:
20422
20423 @smallexample
20424 (@value{GDBP}) p (float) multiply (2.0f, 3.0f)
20425 (@value{GDBP}) p ((float (*) (float, float)) multiply) (2.0f, 3.0f)
20426 @end smallexample
20427
20428 If the function you wish to call is declared as unprototyped (i.e.@:
20429 old K&R style), you must use the cast-to-function-pointer syntax, so
20430 that @value{GDBN} knows that it needs to apply default argument
20431 promotions (promote float arguments to double). @xref{ABI, float
20432 promotion}. For example, given this unprototyped C function with
20433 float parameters, and no debug info:
20434
20435 @smallexample
20436 float
20437 multiply_noproto (v1, v2)
20438 float v1, v2;
20439 @{
20440 return v1 * v2;
20441 @}
20442 @end smallexample
20443
20444 @noindent
20445 you call it like this:
20446
20447 @smallexample
20448 (@value{GDBP}) p ((float (*) ()) multiply_noproto) (2.0f, 3.0f)
20449 @end smallexample
20450
20451 @node Patching
20452 @section Patching Programs
20453
20454 @cindex patching binaries
20455 @cindex writing into executables
20456 @cindex writing into corefiles
20457
20458 By default, @value{GDBN} opens the file containing your program's
20459 executable code (or the corefile) read-only. This prevents accidental
20460 alterations to machine code; but it also prevents you from intentionally
20461 patching your program's binary.
20462
20463 If you'd like to be able to patch the binary, you can specify that
20464 explicitly with the @code{set write} command. For example, you might
20465 want to turn on internal debugging flags, or even to make emergency
20466 repairs.
20467
20468 @table @code
20469 @kindex set write
20470 @item set write on
20471 @itemx set write off
20472 If you specify @samp{set write on}, @value{GDBN} opens executable and
20473 core files for both reading and writing; if you specify @kbd{set write
20474 off} (the default), @value{GDBN} opens them read-only.
20475
20476 If you have already loaded a file, you must load it again (using the
20477 @code{exec-file} or @code{core-file} command) after changing @code{set
20478 write}, for your new setting to take effect.
20479
20480 @item show write
20481 @kindex show write
20482 Display whether executable files and core files are opened for writing
20483 as well as reading.
20484 @end table
20485
20486 @node Compiling and Injecting Code
20487 @section Compiling and injecting code in @value{GDBN}
20488 @cindex injecting code
20489 @cindex writing into executables
20490 @cindex compiling code
20491
20492 @value{GDBN} supports on-demand compilation and code injection into
20493 programs running under @value{GDBN}. GCC 5.0 or higher built with
20494 @file{libcc1.so} must be installed for this functionality to be enabled.
20495 This functionality is implemented with the following commands.
20496
20497 @table @code
20498 @kindex compile code
20499 @item compile code @var{source-code}
20500 @itemx compile code -raw @var{--} @var{source-code}
20501 Compile @var{source-code} with the compiler language found as the current
20502 language in @value{GDBN} (@pxref{Languages}). If compilation and
20503 injection is not supported with the current language specified in
20504 @value{GDBN}, or the compiler does not support this feature, an error
20505 message will be printed. If @var{source-code} compiles and links
20506 successfully, @value{GDBN} will load the object-code emitted,
20507 and execute it within the context of the currently selected inferior.
20508 It is important to note that the compiled code is executed immediately.
20509 After execution, the compiled code is removed from @value{GDBN} and any
20510 new types or variables you have defined will be deleted.
20511
20512 The command allows you to specify @var{source-code} in two ways.
20513 The simplest method is to provide a single line of code to the command.
20514 E.g.:
20515
20516 @smallexample
20517 compile code printf ("hello world\n");
20518 @end smallexample
20519
20520 If you specify options on the command line as well as source code, they
20521 may conflict. The @samp{--} delimiter can be used to separate options
20522 from actual source code. E.g.:
20523
20524 @smallexample
20525 compile code -r -- printf ("hello world\n");
20526 @end smallexample
20527
20528 Alternatively you can enter source code as multiple lines of text. To
20529 enter this mode, invoke the @samp{compile code} command without any text
20530 following the command. This will start the multiple-line editor and
20531 allow you to type as many lines of source code as required. When you
20532 have completed typing, enter @samp{end} on its own line to exit the
20533 editor.
20534
20535 @smallexample
20536 compile code
20537 >printf ("hello\n");
20538 >printf ("world\n");
20539 >end
20540 @end smallexample
20541
20542 Specifying @samp{-raw}, prohibits @value{GDBN} from wrapping the
20543 provided @var{source-code} in a callable scope. In this case, you must
20544 specify the entry point of the code by defining a function named
20545 @code{_gdb_expr_}. The @samp{-raw} code cannot access variables of the
20546 inferior. Using @samp{-raw} option may be needed for example when
20547 @var{source-code} requires @samp{#include} lines which may conflict with
20548 inferior symbols otherwise.
20549
20550 @kindex compile file
20551 @item compile file @var{filename}
20552 @itemx compile file -raw @var{filename}
20553 Like @code{compile code}, but take the source code from @var{filename}.
20554
20555 @smallexample
20556 compile file /home/user/example.c
20557 @end smallexample
20558 @end table
20559
20560 @table @code
20561 @item compile print [[@var{options}] --] @var{expr}
20562 @itemx compile print [[@var{options}] --] /@var{f} @var{expr}
20563 Compile and execute @var{expr} with the compiler language found as the
20564 current language in @value{GDBN} (@pxref{Languages}). By default the
20565 value of @var{expr} is printed in a format appropriate to its data type;
20566 you can choose a different format by specifying @samp{/@var{f}}, where
20567 @var{f} is a letter specifying the format; see @ref{Output Formats,,Output
20568 Formats}. The @code{compile print} command accepts the same options
20569 as the @code{print} command; see @ref{print options}.
20570
20571 @item compile print [[@var{options}] --]
20572 @itemx compile print [[@var{options}] --] /@var{f}
20573 @cindex reprint the last value
20574 Alternatively you can enter the expression (source code producing it) as
20575 multiple lines of text. To enter this mode, invoke the @samp{compile print}
20576 command without any text following the command. This will start the
20577 multiple-line editor.
20578 @end table
20579
20580 @noindent
20581 The process of compiling and injecting the code can be inspected using:
20582
20583 @table @code
20584 @anchor{set debug compile}
20585 @item set debug compile
20586 @cindex compile command debugging info
20587 Turns on or off display of @value{GDBN} process of compiling and
20588 injecting the code. The default is off.
20589
20590 @item show debug compile
20591 Displays the current state of displaying @value{GDBN} process of
20592 compiling and injecting the code.
20593
20594 @anchor{set debug compile-cplus-types}
20595 @item set debug compile-cplus-types
20596 @cindex compile C@t{++} type conversion
20597 Turns on or off the display of C@t{++} type conversion debugging information.
20598 The default is off.
20599
20600 @item show debug compile-cplus-types
20601 Displays the current state of displaying debugging information for
20602 C@t{++} type conversion.
20603 @end table
20604
20605 @subsection Compilation options for the @code{compile} command
20606
20607 @value{GDBN} needs to specify the right compilation options for the code
20608 to be injected, in part to make its ABI compatible with the inferior
20609 and in part to make the injected code compatible with @value{GDBN}'s
20610 injecting process.
20611
20612 @noindent
20613 The options used, in increasing precedence:
20614
20615 @table @asis
20616 @item target architecture and OS options (@code{gdbarch})
20617 These options depend on target processor type and target operating
20618 system, usually they specify at least 32-bit (@code{-m32}) or 64-bit
20619 (@code{-m64}) compilation option.
20620
20621 @item compilation options recorded in the target
20622 @value{NGCC} (since version 4.7) stores the options used for compilation
20623 into @code{DW_AT_producer} part of DWARF debugging information according
20624 to the @value{NGCC} option @code{-grecord-gcc-switches}. One has to
20625 explicitly specify @code{-g} during inferior compilation otherwise
20626 @value{NGCC} produces no DWARF. This feature is only relevant for
20627 platforms where @code{-g} produces DWARF by default, otherwise one may
20628 try to enforce DWARF by using @code{-gdwarf-4}.
20629
20630 @item compilation options set by @code{set compile-args}
20631 @end table
20632
20633 @noindent
20634 You can override compilation options using the following command:
20635
20636 @table @code
20637 @item set compile-args
20638 @cindex compile command options override
20639 Set compilation options used for compiling and injecting code with the
20640 @code{compile} commands. These options override any conflicting ones
20641 from the target architecture and/or options stored during inferior
20642 compilation.
20643
20644 @item show compile-args
20645 Displays the current state of compilation options override.
20646 This does not show all the options actually used during compilation,
20647 use @ref{set debug compile} for that.
20648 @end table
20649
20650 @subsection Caveats when using the @code{compile} command
20651
20652 There are a few caveats to keep in mind when using the @code{compile}
20653 command. As the caveats are different per language, the table below
20654 highlights specific issues on a per language basis.
20655
20656 @table @asis
20657 @item C code examples and caveats
20658 When the language in @value{GDBN} is set to @samp{C}, the compiler will
20659 attempt to compile the source code with a @samp{C} compiler. The source
20660 code provided to the @code{compile} command will have much the same
20661 access to variables and types as it normally would if it were part of
20662 the program currently being debugged in @value{GDBN}.
20663
20664 Below is a sample program that forms the basis of the examples that
20665 follow. This program has been compiled and loaded into @value{GDBN},
20666 much like any other normal debugging session.
20667
20668 @smallexample
20669 void function1 (void)
20670 @{
20671 int i = 42;
20672 printf ("function 1\n");
20673 @}
20674
20675 void function2 (void)
20676 @{
20677 int j = 12;
20678 function1 ();
20679 @}
20680
20681 int main(void)
20682 @{
20683 int k = 6;
20684 int *p;
20685 function2 ();
20686 return 0;
20687 @}
20688 @end smallexample
20689
20690 For the purposes of the examples in this section, the program above has
20691 been compiled, loaded into @value{GDBN}, stopped at the function
20692 @code{main}, and @value{GDBN} is awaiting input from the user.
20693
20694 To access variables and types for any program in @value{GDBN}, the
20695 program must be compiled and packaged with debug information. The
20696 @code{compile} command is not an exception to this rule. Without debug
20697 information, you can still use the @code{compile} command, but you will
20698 be very limited in what variables and types you can access.
20699
20700 So with that in mind, the example above has been compiled with debug
20701 information enabled. The @code{compile} command will have access to
20702 all variables and types (except those that may have been optimized
20703 out). Currently, as @value{GDBN} has stopped the program in the
20704 @code{main} function, the @code{compile} command would have access to
20705 the variable @code{k}. You could invoke the @code{compile} command
20706 and type some source code to set the value of @code{k}. You can also
20707 read it, or do anything with that variable you would normally do in
20708 @code{C}. Be aware that changes to inferior variables in the
20709 @code{compile} command are persistent. In the following example:
20710
20711 @smallexample
20712 compile code k = 3;
20713 @end smallexample
20714
20715 @noindent
20716 the variable @code{k} is now 3. It will retain that value until
20717 something else in the example program changes it, or another
20718 @code{compile} command changes it.
20719
20720 Normal scope and access rules apply to source code compiled and
20721 injected by the @code{compile} command. In the example, the variables
20722 @code{j} and @code{k} are not accessible yet, because the program is
20723 currently stopped in the @code{main} function, where these variables
20724 are not in scope. Therefore, the following command
20725
20726 @smallexample
20727 compile code j = 3;
20728 @end smallexample
20729
20730 @noindent
20731 will result in a compilation error message.
20732
20733 Once the program is continued, execution will bring these variables in
20734 scope, and they will become accessible; then the code you specify via
20735 the @code{compile} command will be able to access them.
20736
20737 You can create variables and types with the @code{compile} command as
20738 part of your source code. Variables and types that are created as part
20739 of the @code{compile} command are not visible to the rest of the program for
20740 the duration of its run. This example is valid:
20741
20742 @smallexample
20743 compile code int ff = 5; printf ("ff is %d\n", ff);
20744 @end smallexample
20745
20746 However, if you were to type the following into @value{GDBN} after that
20747 command has completed:
20748
20749 @smallexample
20750 compile code printf ("ff is %d\n'', ff);
20751 @end smallexample
20752
20753 @noindent
20754 a compiler error would be raised as the variable @code{ff} no longer
20755 exists. Object code generated and injected by the @code{compile}
20756 command is removed when its execution ends. Caution is advised
20757 when assigning to program variables values of variables created by the
20758 code submitted to the @code{compile} command. This example is valid:
20759
20760 @smallexample
20761 compile code int ff = 5; k = ff;
20762 @end smallexample
20763
20764 The value of the variable @code{ff} is assigned to @code{k}. The variable
20765 @code{k} does not require the existence of @code{ff} to maintain the value
20766 it has been assigned. However, pointers require particular care in
20767 assignment. If the source code compiled with the @code{compile} command
20768 changed the address of a pointer in the example program, perhaps to a
20769 variable created in the @code{compile} command, that pointer would point
20770 to an invalid location when the command exits. The following example
20771 would likely cause issues with your debugged program:
20772
20773 @smallexample
20774 compile code int ff = 5; p = &ff;
20775 @end smallexample
20776
20777 In this example, @code{p} would point to @code{ff} when the
20778 @code{compile} command is executing the source code provided to it.
20779 However, as variables in the (example) program persist with their
20780 assigned values, the variable @code{p} would point to an invalid
20781 location when the command exists. A general rule should be followed
20782 in that you should either assign @code{NULL} to any assigned pointers,
20783 or restore a valid location to the pointer before the command exits.
20784
20785 Similar caution must be exercised with any structs, unions, and typedefs
20786 defined in @code{compile} command. Types defined in the @code{compile}
20787 command will no longer be available in the next @code{compile} command.
20788 Therefore, if you cast a variable to a type defined in the
20789 @code{compile} command, care must be taken to ensure that any future
20790 need to resolve the type can be achieved.
20791
20792 @smallexample
20793 (gdb) compile code static struct a @{ int a; @} v = @{ 42 @}; argv = &v;
20794 (gdb) compile code printf ("%d\n", ((struct a *) argv)->a);
20795 gdb command line:1:36: error: dereferencing pointer to incomplete type ‘struct a’
20796 Compilation failed.
20797 (gdb) compile code struct a @{ int a; @}; printf ("%d\n", ((struct a *) argv)->a);
20798 42
20799 @end smallexample
20800
20801 Variables that have been optimized away by the compiler are not
20802 accessible to the code submitted to the @code{compile} command.
20803 Access to those variables will generate a compiler error which @value{GDBN}
20804 will print to the console.
20805 @end table
20806
20807 @subsection Compiler search for the @code{compile} command
20808
20809 @value{GDBN} needs to find @value{NGCC} for the inferior being debugged
20810 which may not be obvious for remote targets of different architecture
20811 than where @value{GDBN} is running. Environment variable @env{PATH} on
20812 @value{GDBN} host is searched for @value{NGCC} binary matching the
20813 target architecture and operating system. This search can be overriden
20814 by @code{set compile-gcc} @value{GDBN} command below. @env{PATH} is
20815 taken from shell that executed @value{GDBN}, it is not the value set by
20816 @value{GDBN} command @code{set environment}). @xref{Environment}.
20817
20818
20819 Specifically @env{PATH} is searched for binaries matching regular expression
20820 @code{@var{arch}(-[^-]*)?-@var{os}-gcc} according to the inferior target being
20821 debugged. @var{arch} is processor name --- multiarch is supported, so for
20822 example both @code{i386} and @code{x86_64} targets look for pattern
20823 @code{(x86_64|i.86)} and both @code{s390} and @code{s390x} targets look
20824 for pattern @code{s390x?}. @var{os} is currently supported only for
20825 pattern @code{linux(-gnu)?}.
20826
20827 On Posix hosts the compiler driver @value{GDBN} needs to find also
20828 shared library @file{libcc1.so} from the compiler. It is searched in
20829 default shared library search path (overridable with usual environment
20830 variable @env{LD_LIBRARY_PATH}), unrelated to @env{PATH} or @code{set
20831 compile-gcc} settings. Contrary to it @file{libcc1plugin.so} is found
20832 according to the installation of the found compiler --- as possibly
20833 specified by the @code{set compile-gcc} command.
20834
20835 @table @code
20836 @item set compile-gcc
20837 @cindex compile command driver filename override
20838 Set compilation command used for compiling and injecting code with the
20839 @code{compile} commands. If this option is not set (it is set to
20840 an empty string), the search described above will occur --- that is the
20841 default.
20842
20843 @item show compile-gcc
20844 Displays the current compile command @value{NGCC} driver filename.
20845 If set, it is the main command @command{gcc}, found usually for example
20846 under name @file{x86_64-linux-gnu-gcc}.
20847 @end table
20848
20849 @node GDB Files
20850 @chapter @value{GDBN} Files
20851
20852 @value{GDBN} needs to know the file name of the program to be debugged,
20853 both in order to read its symbol table and in order to start your
20854 program. To debug a core dump of a previous run, you must also tell
20855 @value{GDBN} the name of the core dump file.
20856
20857 @menu
20858 * Files:: Commands to specify files
20859 * File Caching:: Information about @value{GDBN}'s file caching
20860 * Separate Debug Files:: Debugging information in separate files
20861 * MiniDebugInfo:: Debugging information in a special section
20862 * Index Files:: Index files speed up GDB
20863 * Symbol Errors:: Errors reading symbol files
20864 * Data Files:: GDB data files
20865 @end menu
20866
20867 @node Files
20868 @section Commands to Specify Files
20869
20870 @cindex symbol table
20871 @cindex core dump file
20872
20873 You may want to specify executable and core dump file names. The usual
20874 way to do this is at start-up time, using the arguments to
20875 @value{GDBN}'s start-up commands (@pxref{Invocation, , Getting In and
20876 Out of @value{GDBN}}).
20877
20878 Occasionally it is necessary to change to a different file during a
20879 @value{GDBN} session. Or you may run @value{GDBN} and forget to
20880 specify a file you want to use. Or you are debugging a remote target
20881 via @code{gdbserver} (@pxref{Server, file, Using the @code{gdbserver}
20882 Program}). In these situations the @value{GDBN} commands to specify
20883 new files are useful.
20884
20885 @table @code
20886 @cindex executable file
20887 @kindex file
20888 @item file @var{filename}
20889 Use @var{filename} as the program to be debugged. It is read for its
20890 symbols and for the contents of pure memory. It is also the program
20891 executed when you use the @code{run} command. If you do not specify a
20892 directory and the file is not found in the @value{GDBN} working directory,
20893 @value{GDBN} uses the environment variable @env{PATH} as a list of
20894 directories to search, just as the shell does when looking for a program
20895 to run. You can change the value of this variable, for both @value{GDBN}
20896 and your program, using the @code{path} command.
20897
20898 @cindex unlinked object files
20899 @cindex patching object files
20900 You can load unlinked object @file{.o} files into @value{GDBN} using
20901 the @code{file} command. You will not be able to ``run'' an object
20902 file, but you can disassemble functions and inspect variables. Also,
20903 if the underlying BFD functionality supports it, you could use
20904 @kbd{gdb -write} to patch object files using this technique. Note
20905 that @value{GDBN} can neither interpret nor modify relocations in this
20906 case, so branches and some initialized variables will appear to go to
20907 the wrong place. But this feature is still handy from time to time.
20908
20909 @item file
20910 @code{file} with no argument makes @value{GDBN} discard any information it
20911 has on both executable file and the symbol table.
20912
20913 @kindex exec-file
20914 @item exec-file @r{[} @var{filename} @r{]}
20915 Specify that the program to be run (but not the symbol table) is found
20916 in @var{filename}. @value{GDBN} searches the environment variable @env{PATH}
20917 if necessary to locate your program. Omitting @var{filename} means to
20918 discard information on the executable file.
20919
20920 @kindex symbol-file
20921 @item symbol-file @r{[} @var{filename} @r{[} -o @var{offset} @r{]]}
20922 Read symbol table information from file @var{filename}. @env{PATH} is
20923 searched when necessary. Use the @code{file} command to get both symbol
20924 table and program to run from the same file.
20925
20926 If an optional @var{offset} is specified, it is added to the start
20927 address of each section in the symbol file. This is useful if the
20928 program is relocated at runtime, such as the Linux kernel with kASLR
20929 enabled.
20930
20931 @code{symbol-file} with no argument clears out @value{GDBN} information on your
20932 program's symbol table.
20933
20934 The @code{symbol-file} command causes @value{GDBN} to forget the contents of
20935 some breakpoints and auto-display expressions. This is because they may
20936 contain pointers to the internal data recording symbols and data types,
20937 which are part of the old symbol table data being discarded inside
20938 @value{GDBN}.
20939
20940 @code{symbol-file} does not repeat if you press @key{RET} again after
20941 executing it once.
20942
20943 When @value{GDBN} is configured for a particular environment, it
20944 understands debugging information in whatever format is the standard
20945 generated for that environment; you may use either a @sc{gnu} compiler, or
20946 other compilers that adhere to the local conventions.
20947 Best results are usually obtained from @sc{gnu} compilers; for example,
20948 using @code{@value{NGCC}} you can generate debugging information for
20949 optimized code.
20950
20951 For most kinds of object files, with the exception of old SVR3 systems
20952 using COFF, the @code{symbol-file} command does not normally read the
20953 symbol table in full right away. Instead, it scans the symbol table
20954 quickly to find which source files and which symbols are present. The
20955 details are read later, one source file at a time, as they are needed.
20956
20957 The purpose of this two-stage reading strategy is to make @value{GDBN}
20958 start up faster. For the most part, it is invisible except for
20959 occasional pauses while the symbol table details for a particular source
20960 file are being read. (The @code{set verbose} command can turn these
20961 pauses into messages if desired. @xref{Messages/Warnings, ,Optional
20962 Warnings and Messages}.)
20963
20964 We have not implemented the two-stage strategy for COFF yet. When the
20965 symbol table is stored in COFF format, @code{symbol-file} reads the
20966 symbol table data in full right away. Note that ``stabs-in-COFF''
20967 still does the two-stage strategy, since the debug info is actually
20968 in stabs format.
20969
20970 @kindex readnow
20971 @cindex reading symbols immediately
20972 @cindex symbols, reading immediately
20973 @item symbol-file @r{[} -readnow @r{]} @var{filename}
20974 @itemx file @r{[} -readnow @r{]} @var{filename}
20975 You can override the @value{GDBN} two-stage strategy for reading symbol
20976 tables by using the @samp{-readnow} option with any of the commands that
20977 load symbol table information, if you want to be sure @value{GDBN} has the
20978 entire symbol table available.
20979
20980 @cindex @code{-readnever}, option for symbol-file command
20981 @cindex never read symbols
20982 @cindex symbols, never read
20983 @item symbol-file @r{[} -readnever @r{]} @var{filename}
20984 @itemx file @r{[} -readnever @r{]} @var{filename}
20985 You can instruct @value{GDBN} to never read the symbolic information
20986 contained in @var{filename} by using the @samp{-readnever} option.
20987 @xref{--readnever}.
20988
20989 @c FIXME: for now no mention of directories, since this seems to be in
20990 @c flux. 13mar1992 status is that in theory GDB would look either in
20991 @c current dir or in same dir as myprog; but issues like competing
20992 @c GDB's, or clutter in system dirs, mean that in practice right now
20993 @c only current dir is used. FFish says maybe a special GDB hierarchy
20994 @c (eg rooted in val of env var GDBSYMS) could exist for mappable symbol
20995 @c files.
20996
20997 @kindex core-file
20998 @item core-file @r{[}@var{filename}@r{]}
20999 @itemx core
21000 Specify the whereabouts of a core dump file to be used as the ``contents
21001 of memory''. Traditionally, core files contain only some parts of the
21002 address space of the process that generated them; @value{GDBN} can access the
21003 executable file itself for other parts.
21004
21005 @code{core-file} with no argument specifies that no core file is
21006 to be used.
21007
21008 Note that the core file is ignored when your program is actually running
21009 under @value{GDBN}. So, if you have been running your program and you
21010 wish to debug a core file instead, you must kill the subprocess in which
21011 the program is running. To do this, use the @code{kill} command
21012 (@pxref{Kill Process, ,Killing the Child Process}).
21013
21014 @kindex add-symbol-file
21015 @cindex dynamic linking
21016 @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{]}
21017 The @code{add-symbol-file} command reads additional symbol table
21018 information from the file @var{filename}. You would use this command
21019 when @var{filename} has been dynamically loaded (by some other means)
21020 into the program that is running. The @var{textaddress} parameter gives
21021 the memory address at which the file's text section has been loaded.
21022 You can additionally specify the base address of other sections using
21023 an arbitrary number of @samp{-s @var{section} @var{address}} pairs.
21024 If a section is omitted, @value{GDBN} will use its default addresses
21025 as found in @var{filename}. Any @var{address} or @var{textaddress}
21026 can be given as an expression.
21027
21028 If an optional @var{offset} is specified, it is added to the start
21029 address of each section, except those for which the address was
21030 specified explicitly.
21031
21032 The symbol table of the file @var{filename} is added to the symbol table
21033 originally read with the @code{symbol-file} command. You can use the
21034 @code{add-symbol-file} command any number of times; the new symbol data
21035 thus read is kept in addition to the old.
21036
21037 Changes can be reverted using the command @code{remove-symbol-file}.
21038
21039 @cindex relocatable object files, reading symbols from
21040 @cindex object files, relocatable, reading symbols from
21041 @cindex reading symbols from relocatable object files
21042 @cindex symbols, reading from relocatable object files
21043 @cindex @file{.o} files, reading symbols from
21044 Although @var{filename} is typically a shared library file, an
21045 executable file, or some other object file which has been fully
21046 relocated for loading into a process, you can also load symbolic
21047 information from relocatable @file{.o} files, as long as:
21048
21049 @itemize @bullet
21050 @item
21051 the file's symbolic information refers only to linker symbols defined in
21052 that file, not to symbols defined by other object files,
21053 @item
21054 every section the file's symbolic information refers to has actually
21055 been loaded into the inferior, as it appears in the file, and
21056 @item
21057 you can determine the address at which every section was loaded, and
21058 provide these to the @code{add-symbol-file} command.
21059 @end itemize
21060
21061 @noindent
21062 Some embedded operating systems, like Sun Chorus and VxWorks, can load
21063 relocatable files into an already running program; such systems
21064 typically make the requirements above easy to meet. However, it's
21065 important to recognize that many native systems use complex link
21066 procedures (@code{.linkonce} section factoring and C@t{++} constructor table
21067 assembly, for example) that make the requirements difficult to meet. In
21068 general, one cannot assume that using @code{add-symbol-file} to read a
21069 relocatable object file's symbolic information will have the same effect
21070 as linking the relocatable object file into the program in the normal
21071 way.
21072
21073 @code{add-symbol-file} does not repeat if you press @key{RET} after using it.
21074
21075 @kindex remove-symbol-file
21076 @item remove-symbol-file @var{filename}
21077 @item remove-symbol-file -a @var{address}
21078 Remove a symbol file added via the @code{add-symbol-file} command. The
21079 file to remove can be identified by its @var{filename} or by an @var{address}
21080 that lies within the boundaries of this symbol file in memory. Example:
21081
21082 @smallexample
21083 (gdb) add-symbol-file /home/user/gdb/mylib.so 0x7ffff7ff9480
21084 add symbol table from file "/home/user/gdb/mylib.so" at
21085 .text_addr = 0x7ffff7ff9480
21086 (y or n) y
21087 Reading symbols from /home/user/gdb/mylib.so...
21088 (gdb) remove-symbol-file -a 0x7ffff7ff9480
21089 Remove symbol table from file "/home/user/gdb/mylib.so"? (y or n) y
21090 (gdb)
21091 @end smallexample
21092
21093
21094 @code{remove-symbol-file} does not repeat if you press @key{RET} after using it.
21095
21096 @kindex add-symbol-file-from-memory
21097 @cindex @code{syscall DSO}
21098 @cindex load symbols from memory
21099 @item add-symbol-file-from-memory @var{address}
21100 Load symbols from the given @var{address} in a dynamically loaded
21101 object file whose image is mapped directly into the inferior's memory.
21102 For example, the Linux kernel maps a @code{syscall DSO} into each
21103 process's address space; this DSO provides kernel-specific code for
21104 some system calls. The argument can be any expression whose
21105 evaluation yields the address of the file's shared object file header.
21106 For this command to work, you must have used @code{symbol-file} or
21107 @code{exec-file} commands in advance.
21108
21109 @kindex section
21110 @item section @var{section} @var{addr}
21111 The @code{section} command changes the base address of the named
21112 @var{section} of the exec file to @var{addr}. This can be used if the
21113 exec file does not contain section addresses, (such as in the
21114 @code{a.out} format), or when the addresses specified in the file
21115 itself are wrong. Each section must be changed separately. The
21116 @code{info files} command, described below, lists all the sections and
21117 their addresses.
21118
21119 @kindex info files
21120 @kindex info target
21121 @item info files
21122 @itemx info target
21123 @code{info files} and @code{info target} are synonymous; both print the
21124 current target (@pxref{Targets, ,Specifying a Debugging Target}),
21125 including the names of the executable and core dump files currently in
21126 use by @value{GDBN}, and the files from which symbols were loaded. The
21127 command @code{help target} lists all possible targets rather than
21128 current ones.
21129
21130 @kindex maint info sections
21131 @item maint info sections @r{[}-all-objects@r{]} @r{[}@var{filter-list}@r{]}
21132 Another command that can give you extra information about program sections
21133 is @code{maint info sections}. In addition to the section information
21134 displayed by @code{info files}, this command displays the flags and file
21135 offset of each section in the executable and core dump files.
21136
21137 When @samp{-all-objects} is passed then sections from all loaded object
21138 files, including shared libraries, are printed.
21139
21140 The optional @var{filter-list} is a space separated list of filter
21141 keywords. Sections that match any one of the filter criteria will be
21142 printed. There are two types of filter:
21143
21144 @table @code
21145 @item @var{section-name}
21146 Display information about any section named @var{section-name}.
21147 @item @var{section-flag}
21148 Display information for any section with @var{section-flag}. The
21149 section flags that @value{GDBN} currently knows about are:
21150 @table @code
21151 @item ALLOC
21152 Section will have space allocated in the process when loaded.
21153 Set for all sections except those containing debug information.
21154 @item LOAD
21155 Section will be loaded from the file into the child process memory.
21156 Set for pre-initialized code and data, clear for @code{.bss} sections.
21157 @item RELOC
21158 Section needs to be relocated before loading.
21159 @item READONLY
21160 Section cannot be modified by the child process.
21161 @item CODE
21162 Section contains executable code only.
21163 @item DATA
21164 Section contains data only (no executable code).
21165 @item ROM
21166 Section will reside in ROM.
21167 @item CONSTRUCTOR
21168 Section contains data for constructor/destructor lists.
21169 @item HAS_CONTENTS
21170 Section is not empty.
21171 @item NEVER_LOAD
21172 An instruction to the linker to not output the section.
21173 @item COFF_SHARED_LIBRARY
21174 A notification to the linker that the section contains
21175 COFF shared library information.
21176 @item IS_COMMON
21177 Section contains common symbols.
21178 @end table
21179 @end table
21180
21181 @kindex maint info target-sections
21182 @item maint info target-sections
21183 This command prints @value{GDBN}'s internal section table. For each
21184 target @value{GDBN} maintains a table containing the allocatable
21185 sections from all currently mapped objects, along with information
21186 about where the section is mapped.
21187
21188 @kindex set trust-readonly-sections
21189 @cindex read-only sections
21190 @item set trust-readonly-sections on
21191 Tell @value{GDBN} that readonly sections in your object file
21192 really are read-only (i.e.@: that their contents will not change).
21193 In that case, @value{GDBN} can fetch values from these sections
21194 out of the object file, rather than from the target program.
21195 For some targets (notably embedded ones), this can be a significant
21196 enhancement to debugging performance.
21197
21198 The default is off.
21199
21200 @item set trust-readonly-sections off
21201 Tell @value{GDBN} not to trust readonly sections. This means that
21202 the contents of the section might change while the program is running,
21203 and must therefore be fetched from the target when needed.
21204
21205 @item show trust-readonly-sections
21206 Show the current setting of trusting readonly sections.
21207 @end table
21208
21209 All file-specifying commands allow both absolute and relative file names
21210 as arguments. @value{GDBN} always converts the file name to an absolute file
21211 name and remembers it that way.
21212
21213 @cindex shared libraries
21214 @anchor{Shared Libraries}
21215 @value{GDBN} supports @sc{gnu}/Linux, MS-Windows, SunOS,
21216 Darwin/Mach-O, SVr4, IBM RS/6000 AIX, QNX Neutrino, FDPIC (FR-V), and
21217 DSBT (TIC6X) shared libraries.
21218
21219 On MS-Windows @value{GDBN} must be linked with the Expat library to support
21220 shared libraries. @xref{Expat}.
21221
21222 @value{GDBN} automatically loads symbol definitions from shared libraries
21223 when you use the @code{run} command, or when you examine a core file.
21224 (Before you issue the @code{run} command, @value{GDBN} does not understand
21225 references to a function in a shared library, however---unless you are
21226 debugging a core file).
21227
21228 @c FIXME: some @value{GDBN} release may permit some refs to undef
21229 @c FIXME...symbols---eg in a break cmd---assuming they are from a shared
21230 @c FIXME...lib; check this from time to time when updating manual
21231
21232 There are times, however, when you may wish to not automatically load
21233 symbol definitions from shared libraries, such as when they are
21234 particularly large or there are many of them.
21235
21236 To control the automatic loading of shared library symbols, use the
21237 commands:
21238
21239 @table @code
21240 @kindex set auto-solib-add
21241 @item set auto-solib-add @var{mode}
21242 If @var{mode} is @code{on}, symbols from all shared object libraries
21243 will be loaded automatically when the inferior begins execution, you
21244 attach to an independently started inferior, or when the dynamic linker
21245 informs @value{GDBN} that a new library has been loaded. If @var{mode}
21246 is @code{off}, symbols must be loaded manually, using the
21247 @code{sharedlibrary} command. The default value is @code{on}.
21248
21249 @cindex memory used for symbol tables
21250 If your program uses lots of shared libraries with debug info that
21251 takes large amounts of memory, you can decrease the @value{GDBN}
21252 memory footprint by preventing it from automatically loading the
21253 symbols from shared libraries. To that end, type @kbd{set
21254 auto-solib-add off} before running the inferior, then load each
21255 library whose debug symbols you do need with @kbd{sharedlibrary
21256 @var{regexp}}, where @var{regexp} is a regular expression that matches
21257 the libraries whose symbols you want to be loaded.
21258
21259 @kindex show auto-solib-add
21260 @item show auto-solib-add
21261 Display the current autoloading mode.
21262 @end table
21263
21264 @cindex load shared library
21265 To explicitly load shared library symbols, use the @code{sharedlibrary}
21266 command:
21267
21268 @table @code
21269 @kindex info sharedlibrary
21270 @kindex info share
21271 @item info share @var{regex}
21272 @itemx info sharedlibrary @var{regex}
21273 Print the names of the shared libraries which are currently loaded
21274 that match @var{regex}. If @var{regex} is omitted then print
21275 all shared libraries that are loaded.
21276
21277 @kindex info dll
21278 @item info dll @var{regex}
21279 This is an alias of @code{info sharedlibrary}.
21280
21281 @kindex sharedlibrary
21282 @kindex share
21283 @item sharedlibrary @var{regex}
21284 @itemx share @var{regex}
21285 Load shared object library symbols for files matching a
21286 Unix regular expression.
21287 As with files loaded automatically, it only loads shared libraries
21288 required by your program for a core file or after typing @code{run}. If
21289 @var{regex} is omitted all shared libraries required by your program are
21290 loaded.
21291
21292 @item nosharedlibrary
21293 @kindex nosharedlibrary
21294 @cindex unload symbols from shared libraries
21295 Unload all shared object library symbols. This discards all symbols
21296 that have been loaded from all shared libraries. Symbols from shared
21297 libraries that were loaded by explicit user requests are not
21298 discarded.
21299 @end table
21300
21301 Sometimes you may wish that @value{GDBN} stops and gives you control
21302 when any of shared library events happen. The best way to do this is
21303 to use @code{catch load} and @code{catch unload} (@pxref{Set
21304 Catchpoints}).
21305
21306 @value{GDBN} also supports the @code{set stop-on-solib-events}
21307 command for this. This command exists for historical reasons. It is
21308 less useful than setting a catchpoint, because it does not allow for
21309 conditions or commands as a catchpoint does.
21310
21311 @table @code
21312 @item set stop-on-solib-events
21313 @kindex set stop-on-solib-events
21314 This command controls whether @value{GDBN} should give you control
21315 when the dynamic linker notifies it about some shared library event.
21316 The most common event of interest is loading or unloading of a new
21317 shared library.
21318
21319 @item show stop-on-solib-events
21320 @kindex show stop-on-solib-events
21321 Show whether @value{GDBN} stops and gives you control when shared
21322 library events happen.
21323 @end table
21324
21325 Shared libraries are also supported in many cross or remote debugging
21326 configurations. @value{GDBN} needs to have access to the target's libraries;
21327 this can be accomplished either by providing copies of the libraries
21328 on the host system, or by asking @value{GDBN} to automatically retrieve the
21329 libraries from the target. If copies of the target libraries are
21330 provided, they need to be the same as the target libraries, although the
21331 copies on the target can be stripped as long as the copies on the host are
21332 not.
21333
21334 @cindex where to look for shared libraries
21335 For remote debugging, you need to tell @value{GDBN} where the target
21336 libraries are, so that it can load the correct copies---otherwise, it
21337 may try to load the host's libraries. @value{GDBN} has two variables
21338 to specify the search directories for target libraries.
21339
21340 @table @code
21341 @cindex prefix for executable and shared library file names
21342 @cindex system root, alternate
21343 @kindex set solib-absolute-prefix
21344 @kindex set sysroot
21345 @item set sysroot @var{path}
21346 Use @var{path} as the system root for the program being debugged. Any
21347 absolute shared library paths will be prefixed with @var{path}; many
21348 runtime loaders store the absolute paths to the shared library in the
21349 target program's memory. When starting processes remotely, and when
21350 attaching to already-running processes (local or remote), their
21351 executable filenames will be prefixed with @var{path} if reported to
21352 @value{GDBN} as absolute by the operating system. If you use
21353 @code{set sysroot} to find executables and shared libraries, they need
21354 to be laid out in the same way that they are on the target, with
21355 e.g.@: a @file{/bin}, @file{/lib} and @file{/usr/lib} hierarchy under
21356 @var{path}.
21357
21358 If @var{path} starts with the sequence @file{target:} and the target
21359 system is remote then @value{GDBN} will retrieve the target binaries
21360 from the remote system. This is only supported when using a remote
21361 target that supports the @code{remote get} command (@pxref{File
21362 Transfer,,Sending files to a remote system}). The part of @var{path}
21363 following the initial @file{target:} (if present) is used as system
21364 root prefix on the remote file system. If @var{path} starts with the
21365 sequence @file{remote:} this is converted to the sequence
21366 @file{target:} by @code{set sysroot}@footnote{Historically the
21367 functionality to retrieve binaries from the remote system was
21368 provided by prefixing @var{path} with @file{remote:}}. If you want
21369 to specify a local system root using a directory that happens to be
21370 named @file{target:} or @file{remote:}, you need to use some
21371 equivalent variant of the name like @file{./target:}.
21372
21373 For targets with an MS-DOS based filesystem, such as MS-Windows,
21374 @value{GDBN} tries prefixing a few variants of the target
21375 absolute file name with @var{path}. But first, on Unix hosts,
21376 @value{GDBN} converts all backslash directory separators into forward
21377 slashes, because the backslash is not a directory separator on Unix:
21378
21379 @smallexample
21380 c:\foo\bar.dll @result{} c:/foo/bar.dll
21381 @end smallexample
21382
21383 Then, @value{GDBN} attempts prefixing the target file name with
21384 @var{path}, and looks for the resulting file name in the host file
21385 system:
21386
21387 @smallexample
21388 c:/foo/bar.dll @result{} /path/to/sysroot/c:/foo/bar.dll
21389 @end smallexample
21390
21391 If that does not find the binary, @value{GDBN} tries removing
21392 the @samp{:} character from the drive spec, both for convenience, and,
21393 for the case of the host file system not supporting file names with
21394 colons:
21395
21396 @smallexample
21397 c:/foo/bar.dll @result{} /path/to/sysroot/c/foo/bar.dll
21398 @end smallexample
21399
21400 This makes it possible to have a system root that mirrors a target
21401 with more than one drive. E.g., you may want to setup your local
21402 copies of the target system shared libraries like so (note @samp{c} vs
21403 @samp{z}):
21404
21405 @smallexample
21406 @file{/path/to/sysroot/c/sys/bin/foo.dll}
21407 @file{/path/to/sysroot/c/sys/bin/bar.dll}
21408 @file{/path/to/sysroot/z/sys/bin/bar.dll}
21409 @end smallexample
21410
21411 @noindent
21412 and point the system root at @file{/path/to/sysroot}, so that
21413 @value{GDBN} can find the correct copies of both
21414 @file{c:\sys\bin\foo.dll}, and @file{z:\sys\bin\bar.dll}.
21415
21416 If that still does not find the binary, @value{GDBN} tries
21417 removing the whole drive spec from the target file name:
21418
21419 @smallexample
21420 c:/foo/bar.dll @result{} /path/to/sysroot/foo/bar.dll
21421 @end smallexample
21422
21423 This last lookup makes it possible to not care about the drive name,
21424 if you don't want or need to.
21425
21426 The @code{set solib-absolute-prefix} command is an alias for @code{set
21427 sysroot}.
21428
21429 @cindex default system root
21430 @cindex @samp{--with-sysroot}
21431 You can set the default system root by using the configure-time
21432 @samp{--with-sysroot} option. If the system root is inside
21433 @value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
21434 @samp{--exec-prefix}), then the default system root will be updated
21435 automatically if the installed @value{GDBN} is moved to a new
21436 location.
21437
21438 @kindex show sysroot
21439 @item show sysroot
21440 Display the current executable and shared library prefix.
21441
21442 @kindex set solib-search-path
21443 @item set solib-search-path @var{path}
21444 If this variable is set, @var{path} is a colon-separated list of
21445 directories to search for shared libraries. @samp{solib-search-path}
21446 is used after @samp{sysroot} fails to locate the library, or if the
21447 path to the library is relative instead of absolute. If you want to
21448 use @samp{solib-search-path} instead of @samp{sysroot}, be sure to set
21449 @samp{sysroot} to a nonexistent directory to prevent @value{GDBN} from
21450 finding your host's libraries. @samp{sysroot} is preferred; setting
21451 it to a nonexistent directory may interfere with automatic loading
21452 of shared library symbols.
21453
21454 @kindex show solib-search-path
21455 @item show solib-search-path
21456 Display the current shared library search path.
21457
21458 @cindex DOS file-name semantics of file names.
21459 @kindex set target-file-system-kind (unix|dos-based|auto)
21460 @kindex show target-file-system-kind
21461 @item set target-file-system-kind @var{kind}
21462 Set assumed file system kind for target reported file names.
21463
21464 Shared library file names as reported by the target system may not
21465 make sense as is on the system @value{GDBN} is running on. For
21466 example, when remote debugging a target that has MS-DOS based file
21467 system semantics, from a Unix host, the target may be reporting to
21468 @value{GDBN} a list of loaded shared libraries with file names such as
21469 @file{c:\Windows\kernel32.dll}. On Unix hosts, there's no concept of
21470 drive letters, so the @samp{c:\} prefix is not normally understood as
21471 indicating an absolute file name, and neither is the backslash
21472 normally considered a directory separator character. In that case,
21473 the native file system would interpret this whole absolute file name
21474 as a relative file name with no directory components. This would make
21475 it impossible to point @value{GDBN} at a copy of the remote target's
21476 shared libraries on the host using @code{set sysroot}, and impractical
21477 with @code{set solib-search-path}. Setting
21478 @code{target-file-system-kind} to @code{dos-based} tells @value{GDBN}
21479 to interpret such file names similarly to how the target would, and to
21480 map them to file names valid on @value{GDBN}'s native file system
21481 semantics. The value of @var{kind} can be @code{"auto"}, in addition
21482 to one of the supported file system kinds. In that case, @value{GDBN}
21483 tries to determine the appropriate file system variant based on the
21484 current target's operating system (@pxref{ABI, ,Configuring the
21485 Current ABI}). The supported file system settings are:
21486
21487 @table @code
21488 @item unix
21489 Instruct @value{GDBN} to assume the target file system is of Unix
21490 kind. Only file names starting the forward slash (@samp{/}) character
21491 are considered absolute, and the directory separator character is also
21492 the forward slash.
21493
21494 @item dos-based
21495 Instruct @value{GDBN} to assume the target file system is DOS based.
21496 File names starting with either a forward slash, or a drive letter
21497 followed by a colon (e.g., @samp{c:}), are considered absolute, and
21498 both the slash (@samp{/}) and the backslash (@samp{\\}) characters are
21499 considered directory separators.
21500
21501 @item auto
21502 Instruct @value{GDBN} to use the file system kind associated with the
21503 target operating system (@pxref{ABI, ,Configuring the Current ABI}).
21504 This is the default.
21505 @end table
21506 @end table
21507
21508 @cindex file name canonicalization
21509 @cindex base name differences
21510 When processing file names provided by the user, @value{GDBN}
21511 frequently needs to compare them to the file names recorded in the
21512 program's debug info. Normally, @value{GDBN} compares just the
21513 @dfn{base names} of the files as strings, which is reasonably fast
21514 even for very large programs. (The base name of a file is the last
21515 portion of its name, after stripping all the leading directories.)
21516 This shortcut in comparison is based upon the assumption that files
21517 cannot have more than one base name. This is usually true, but
21518 references to files that use symlinks or similar filesystem
21519 facilities violate that assumption. If your program records files
21520 using such facilities, or if you provide file names to @value{GDBN}
21521 using symlinks etc., you can set @code{basenames-may-differ} to
21522 @code{true} to instruct @value{GDBN} to completely canonicalize each
21523 pair of file names it needs to compare. This will make file-name
21524 comparisons accurate, but at a price of a significant slowdown.
21525
21526 @table @code
21527 @item set basenames-may-differ
21528 @kindex set basenames-may-differ
21529 Set whether a source file may have multiple base names.
21530
21531 @item show basenames-may-differ
21532 @kindex show basenames-may-differ
21533 Show whether a source file may have multiple base names.
21534 @end table
21535
21536 @node File Caching
21537 @section File Caching
21538 @cindex caching of opened files
21539 @cindex caching of bfd objects
21540
21541 To speed up file loading, and reduce memory usage, @value{GDBN} will
21542 reuse the @code{bfd} objects used to track open files. @xref{Top, ,
21543 BFD, bfd, The Binary File Descriptor Library}. The following commands
21544 allow visibility and control of the caching behavior.
21545
21546 @table @code
21547 @kindex maint info bfds
21548 @item maint info bfds
21549 This prints information about each @code{bfd} object that is known to
21550 @value{GDBN}.
21551
21552 @kindex maint set bfd-sharing
21553 @kindex maint show bfd-sharing
21554 @kindex bfd caching
21555 @item maint set bfd-sharing
21556 @item maint show bfd-sharing
21557 Control whether @code{bfd} objects can be shared. When sharing is
21558 enabled @value{GDBN} reuses already open @code{bfd} objects rather
21559 than reopening the same file. Turning sharing off does not cause
21560 already shared @code{bfd} objects to be unshared, but all future files
21561 that are opened will create a new @code{bfd} object. Similarly,
21562 re-enabling sharing does not cause multiple existing @code{bfd}
21563 objects to be collapsed into a single shared @code{bfd} object.
21564
21565 @kindex set debug bfd-cache @var{level}
21566 @kindex bfd caching
21567 @item set debug bfd-cache @var{level}
21568 Turns on debugging of the bfd cache, setting the level to @var{level}.
21569
21570 @kindex show debug bfd-cache
21571 @kindex bfd caching
21572 @item show debug bfd-cache
21573 Show the current debugging level of the bfd cache.
21574 @end table
21575
21576 @node Separate Debug Files
21577 @section Debugging Information in Separate Files
21578 @cindex separate debugging information files
21579 @cindex debugging information in separate files
21580 @cindex @file{.debug} subdirectories
21581 @cindex debugging information directory, global
21582 @cindex global debugging information directories
21583 @cindex build ID, and separate debugging files
21584 @cindex @file{.build-id} directory
21585
21586 @value{GDBN} allows you to put a program's debugging information in a
21587 file separate from the executable itself, in a way that allows
21588 @value{GDBN} to find and load the debugging information automatically.
21589 Since debugging information can be very large---sometimes larger
21590 than the executable code itself---some systems distribute debugging
21591 information for their executables in separate files, which users can
21592 install only when they need to debug a problem.
21593
21594 @value{GDBN} supports two ways of specifying the separate debug info
21595 file:
21596
21597 @itemize @bullet
21598 @item
21599 The executable contains a @dfn{debug link} that specifies the name of
21600 the separate debug info file. The separate debug file's name is
21601 usually @file{@var{executable}.debug}, where @var{executable} is the
21602 name of the corresponding executable file without leading directories
21603 (e.g., @file{ls.debug} for @file{/usr/bin/ls}). In addition, the
21604 debug link specifies a 32-bit @dfn{Cyclic Redundancy Check} (CRC)
21605 checksum for the debug file, which @value{GDBN} uses to validate that
21606 the executable and the debug file came from the same build.
21607
21608 @item
21609 @anchor{build ID}
21610 The executable contains a @dfn{build ID}, a unique bit string that is
21611 also present in the corresponding debug info file. (This is supported
21612 only on some operating systems, when using the ELF or PE file formats
21613 for binary files and the @sc{gnu} Binutils.) For more details about
21614 this feature, see the description of the @option{--build-id}
21615 command-line option in @ref{Options, , Command Line Options, ld,
21616 The GNU Linker}. The debug info file's name is not specified
21617 explicitly by the build ID, but can be computed from the build ID, see
21618 below.
21619 @end itemize
21620
21621 Depending on the way the debug info file is specified, @value{GDBN}
21622 uses two different methods of looking for the debug file:
21623
21624 @itemize @bullet
21625 @item
21626 For the ``debug link'' method, @value{GDBN} looks up the named file in
21627 the directory of the executable file, then in a subdirectory of that
21628 directory named @file{.debug}, and finally under each one of the
21629 global debug directories, in a subdirectory whose name is identical to
21630 the leading directories of the executable's absolute file name. (On
21631 MS-Windows/MS-DOS, the drive letter of the executable's leading
21632 directories is converted to a one-letter subdirectory, i.e.@:
21633 @file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
21634 filesystems disallow colons in file names.)
21635
21636 @item
21637 For the ``build ID'' method, @value{GDBN} looks in the
21638 @file{.build-id} subdirectory of each one of the global debug directories for
21639 a file named @file{@var{nn}/@var{nnnnnnnn}.debug}, where @var{nn} are the
21640 first 2 hex characters of the build ID bit string, and @var{nnnnnnnn}
21641 are the rest of the bit string. (Real build ID strings are 32 or more
21642 hex characters, not 10.) @value{GDBN} can automatically query
21643 @code{debuginfod} servers using build IDs in order to download separate debug
21644 files that cannot be found locally. For more information see @ref{Debuginfod}.
21645 @end itemize
21646
21647 So, for example, suppose you ask @value{GDBN} to debug
21648 @file{/usr/bin/ls}, which has a debug link that specifies the
21649 file @file{ls.debug}, and a build ID whose value in hex is
21650 @code{abcdef1234}. If the list of the global debug directories includes
21651 @file{/usr/lib/debug}, then @value{GDBN} will look for the following
21652 debug information files, in the indicated order:
21653
21654 @itemize @minus
21655 @item
21656 @file{/usr/lib/debug/.build-id/ab/cdef1234.debug}
21657 @item
21658 @file{/usr/bin/ls.debug}
21659 @item
21660 @file{/usr/bin/.debug/ls.debug}
21661 @item
21662 @file{/usr/lib/debug/usr/bin/ls.debug}.
21663 @end itemize
21664
21665 If the debug file still has not been found and @code{debuginfod}
21666 (@pxref{Debuginfod}) is enabled, @value{GDBN} will attempt to download the
21667 file from @code{debuginfod} servers.
21668
21669 @anchor{debug-file-directory}
21670 Global debugging info directories default to what is set by @value{GDBN}
21671 configure option @option{--with-separate-debug-dir}. During @value{GDBN} run
21672 you can also set the global debugging info directories, and view the list
21673 @value{GDBN} is currently using.
21674
21675 @table @code
21676
21677 @kindex set debug-file-directory
21678 @item set debug-file-directory @var{directories}
21679 Set the directories which @value{GDBN} searches for separate debugging
21680 information files to @var{directory}. Multiple path components can be set
21681 concatenating them by a path separator.
21682
21683 @kindex show debug-file-directory
21684 @item show debug-file-directory
21685 Show the directories @value{GDBN} searches for separate debugging
21686 information files.
21687
21688 @end table
21689
21690 @cindex @code{.gnu_debuglink} sections
21691 @cindex debug link sections
21692 A debug link is a special section of the executable file named
21693 @code{.gnu_debuglink}. The section must contain:
21694
21695 @itemize
21696 @item
21697 A filename, with any leading directory components removed, followed by
21698 a zero byte,
21699 @item
21700 zero to three bytes of padding, as needed to reach the next four-byte
21701 boundary within the section, and
21702 @item
21703 a four-byte CRC checksum, stored in the same endianness used for the
21704 executable file itself. The checksum is computed on the debugging
21705 information file's full contents by the function given below, passing
21706 zero as the @var{crc} argument.
21707 @end itemize
21708
21709 Any executable file format can carry a debug link, as long as it can
21710 contain a section named @code{.gnu_debuglink} with the contents
21711 described above.
21712
21713 @cindex @code{.note.gnu.build-id} sections
21714 @cindex build ID sections
21715 The build ID is a special section in the executable file (and in other
21716 ELF binary files that @value{GDBN} may consider). This section is
21717 often named @code{.note.gnu.build-id}, but that name is not mandatory.
21718 It contains unique identification for the built files---the ID remains
21719 the same across multiple builds of the same build tree. The default
21720 algorithm SHA1 produces 160 bits (40 hexadecimal characters) of the
21721 content for the build ID string. The same section with an identical
21722 value is present in the original built binary with symbols, in its
21723 stripped variant, and in the separate debugging information file.
21724
21725 The debugging information file itself should be an ordinary
21726 executable, containing a full set of linker symbols, sections, and
21727 debugging information. The sections of the debugging information file
21728 should have the same names, addresses, and sizes as the original file,
21729 but they need not contain any data---much like a @code{.bss} section
21730 in an ordinary executable.
21731
21732 The @sc{gnu} binary utilities (Binutils) package includes the
21733 @samp{objcopy} utility that can produce
21734 the separated executable / debugging information file pairs using the
21735 following commands:
21736
21737 @smallexample
21738 @kbd{objcopy --only-keep-debug foo foo.debug}
21739 @kbd{strip -g foo}
21740 @end smallexample
21741
21742 @noindent
21743 These commands remove the debugging
21744 information from the executable file @file{foo} and place it in the file
21745 @file{foo.debug}. You can use the first, second or both methods to link the
21746 two files:
21747
21748 @itemize @bullet
21749 @item
21750 The debug link method needs the following additional command to also leave
21751 behind a debug link in @file{foo}:
21752
21753 @smallexample
21754 @kbd{objcopy --add-gnu-debuglink=foo.debug foo}
21755 @end smallexample
21756
21757 Ulrich Drepper's @file{elfutils} package, starting with version 0.53, contains
21758 a version of the @code{strip} command such that the command @kbd{strip foo -f
21759 foo.debug} has the same functionality as the two @code{objcopy} commands and
21760 the @code{ln -s} command above, together.
21761
21762 @item
21763 Build ID gets embedded into the main executable using @code{ld --build-id} or
21764 the @value{NGCC} counterpart @code{gcc -Wl,--build-id}. Build ID support plus
21765 compatibility fixes for debug files separation are present in @sc{gnu} binary
21766 utilities (Binutils) package since version 2.18.
21767 @end itemize
21768
21769 @noindent
21770
21771 @cindex CRC algorithm definition
21772 The CRC used in @code{.gnu_debuglink} is the CRC-32 defined in
21773 IEEE 802.3 using the polynomial:
21774
21775 @c TexInfo requires naked braces for multi-digit exponents for Tex
21776 @c output, but this causes HTML output to barf. HTML has to be set using
21777 @c raw commands. So we end up having to specify this equation in 2
21778 @c different ways!
21779 @ifhtml
21780 @display
21781 @html
21782 <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>
21783 + <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
21784 @end html
21785 @end display
21786 @end ifhtml
21787 @ifnothtml
21788 @display
21789 @math{x^{32} + x^{26} + x^{23} + x^{22} + x^{16} + x^{12} + x^{11}}
21790 @math{+ x^{10} + x^8 + x^7 + x^5 + x^4 + x^2 + x + 1}
21791 @end display
21792 @end ifnothtml
21793
21794 The function is computed byte at a time, taking the least
21795 significant bit of each byte first. The initial pattern
21796 @code{0xffffffff} is used, to ensure leading zeros affect the CRC and
21797 the final result is inverted to ensure trailing zeros also affect the
21798 CRC.
21799
21800 @emph{Note:} This is the same CRC polynomial as used in handling the
21801 @dfn{Remote Serial Protocol} @code{qCRC} packet (@pxref{qCRC packet}).
21802 However in the case of the Remote Serial Protocol, the CRC is computed
21803 @emph{most} significant bit first, and the result is not inverted, so
21804 trailing zeros have no effect on the CRC value.
21805
21806 To complete the description, we show below the code of the function
21807 which produces the CRC used in @code{.gnu_debuglink}. Inverting the
21808 initially supplied @code{crc} argument means that an initial call to
21809 this function passing in zero will start computing the CRC using
21810 @code{0xffffffff}.
21811
21812 @kindex gnu_debuglink_crc32
21813 @smallexample
21814 unsigned long
21815 gnu_debuglink_crc32 (unsigned long crc,
21816 unsigned char *buf, size_t len)
21817 @{
21818 static const unsigned long crc32_table[256] =
21819 @{
21820 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
21821 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
21822 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
21823 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
21824 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
21825 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
21826 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
21827 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
21828 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
21829 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
21830 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
21831 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
21832 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
21833 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
21834 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
21835 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
21836 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
21837 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
21838 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
21839 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
21840 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
21841 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
21842 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
21843 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
21844 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
21845 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
21846 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
21847 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
21848 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
21849 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
21850 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
21851 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
21852 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
21853 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
21854 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
21855 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
21856 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
21857 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
21858 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
21859 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
21860 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
21861 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
21862 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
21863 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
21864 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
21865 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
21866 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
21867 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
21868 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
21869 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
21870 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
21871 0x2d02ef8d
21872 @};
21873 unsigned char *end;
21874
21875 crc = ~crc & 0xffffffff;
21876 for (end = buf + len; buf < end; ++buf)
21877 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
21878 return ~crc & 0xffffffff;
21879 @}
21880 @end smallexample
21881
21882 @noindent
21883 This computation does not apply to the ``build ID'' method.
21884
21885 @node MiniDebugInfo
21886 @section Debugging information in a special section
21887 @cindex separate debug sections
21888 @cindex @samp{.gnu_debugdata} section
21889
21890 Some systems ship pre-built executables and libraries that have a
21891 special @samp{.gnu_debugdata} section. This feature is called
21892 @dfn{MiniDebugInfo}. This section holds an LZMA-compressed object and
21893 is used to supply extra symbols for backtraces.
21894
21895 The intent of this section is to provide extra minimal debugging
21896 information for use in simple backtraces. It is not intended to be a
21897 replacement for full separate debugging information (@pxref{Separate
21898 Debug Files}). The example below shows the intended use; however,
21899 @value{GDBN} does not currently put restrictions on what sort of
21900 debugging information might be included in the section.
21901
21902 @value{GDBN} has support for this extension. If the section exists,
21903 then it is used provided that no other source of debugging information
21904 can be found, and that @value{GDBN} was configured with LZMA support.
21905
21906 This section can be easily created using @command{objcopy} and other
21907 standard utilities:
21908
21909 @smallexample
21910 # Extract the dynamic symbols from the main binary, there is no need
21911 # to also have these in the normal symbol table.
21912 nm -D @var{binary} --format=posix --defined-only \
21913 | awk '@{ print $1 @}' | sort > dynsyms
21914
21915 # Extract all the text (i.e. function) symbols from the debuginfo.
21916 # (Note that we actually also accept "D" symbols, for the benefit
21917 # of platforms like PowerPC64 that use function descriptors.)
21918 nm @var{binary} --format=posix --defined-only \
21919 | awk '@{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 @}' \
21920 | sort > funcsyms
21921
21922 # Keep all the function symbols not already in the dynamic symbol
21923 # table.
21924 comm -13 dynsyms funcsyms > keep_symbols
21925
21926 # Separate full debug info into debug binary.
21927 objcopy --only-keep-debug @var{binary} debug
21928
21929 # Copy the full debuginfo, keeping only a minimal set of symbols and
21930 # removing some unnecessary sections.
21931 objcopy -S --remove-section .gdb_index --remove-section .comment \
21932 --keep-symbols=keep_symbols debug mini_debuginfo
21933
21934 # Drop the full debug info from the original binary.
21935 strip --strip-all -R .comment @var{binary}
21936
21937 # Inject the compressed data into the .gnu_debugdata section of the
21938 # original binary.
21939 xz mini_debuginfo
21940 objcopy --add-section .gnu_debugdata=mini_debuginfo.xz @var{binary}
21941 @end smallexample
21942
21943 @node Index Files
21944 @section Index Files Speed Up @value{GDBN}
21945 @cindex index files
21946 @cindex @samp{.gdb_index} section
21947
21948 When @value{GDBN} finds a symbol file, it scans the symbols in the
21949 file in order to construct an internal symbol table. This lets most
21950 @value{GDBN} operations work quickly---at the cost of a delay early
21951 on. For large programs, this delay can be quite lengthy, so
21952 @value{GDBN} provides a way to build an index, which speeds up
21953 startup.
21954
21955 For convenience, @value{GDBN} comes with a program,
21956 @command{gdb-add-index}, which can be used to add the index to a
21957 symbol file. It takes the symbol file as its only argument:
21958
21959 @smallexample
21960 $ gdb-add-index symfile
21961 @end smallexample
21962
21963 @xref{gdb-add-index}.
21964
21965 It is also possible to do the work manually. Here is what
21966 @command{gdb-add-index} does behind the curtains.
21967
21968 The index is stored as a section in the symbol file. @value{GDBN} can
21969 write the index to a file, then you can put it into the symbol file
21970 using @command{objcopy}.
21971
21972 To create an index file, use the @code{save gdb-index} command:
21973
21974 @table @code
21975 @item save gdb-index [-dwarf-5] @var{directory}
21976 @kindex save gdb-index
21977 Create index files for all symbol files currently known by
21978 @value{GDBN}. For each known @var{symbol-file}, this command by
21979 default creates it produces a single file
21980 @file{@var{symbol-file}.gdb-index}. If you invoke this command with
21981 the @option{-dwarf-5} option, it produces 2 files:
21982 @file{@var{symbol-file}.debug_names} and
21983 @file{@var{symbol-file}.debug_str}. The files are created in the
21984 given @var{directory}.
21985 @end table
21986
21987 Once you have created an index file you can merge it into your symbol
21988 file, here named @file{symfile}, using @command{objcopy}:
21989
21990 @smallexample
21991 $ objcopy --add-section .gdb_index=symfile.gdb-index \
21992 --set-section-flags .gdb_index=readonly symfile symfile
21993 @end smallexample
21994
21995 Or for @code{-dwarf-5}:
21996
21997 @smallexample
21998 $ objcopy --dump-section .debug_str=symfile.debug_str.new symfile
21999 $ cat symfile.debug_str >>symfile.debug_str.new
22000 $ objcopy --add-section .debug_names=symfile.gdb-index \
22001 --set-section-flags .debug_names=readonly \
22002 --update-section .debug_str=symfile.debug_str.new symfile symfile
22003 @end smallexample
22004
22005 @value{GDBN} will normally ignore older versions of @file{.gdb_index}
22006 sections that have been deprecated. Usually they are deprecated because
22007 they are missing a new feature or have performance issues.
22008 To tell @value{GDBN} to use a deprecated index section anyway
22009 specify @code{set use-deprecated-index-sections on}.
22010 The default is @code{off}.
22011 This can speed up startup, but may result in some functionality being lost.
22012 @xref{Index Section Format}.
22013
22014 @emph{Warning:} Setting @code{use-deprecated-index-sections} to @code{on}
22015 must be done before gdb reads the file. The following will not work:
22016
22017 @smallexample
22018 $ gdb -ex "set use-deprecated-index-sections on" <program>
22019 @end smallexample
22020
22021 Instead you must do, for example,
22022
22023 @smallexample
22024 $ gdb -iex "set use-deprecated-index-sections on" <program>
22025 @end smallexample
22026
22027 Indices only work when using DWARF debugging information, not stabs.
22028
22029 @subsection Automatic symbol index cache
22030
22031 @cindex automatic symbol index cache
22032 It is possible for @value{GDBN} to automatically save a copy of this index in a
22033 cache on disk and retrieve it from there when loading the same binary in the
22034 future. This feature can be turned on with @kbd{set index-cache enabled on}.
22035 The following commands can be used to tweak the behavior of the index cache.
22036
22037 @table @code
22038
22039 @kindex set index-cache
22040 @item set index-cache enabled on
22041 @itemx set index-cache enabled off
22042 Enable or disable the use of the symbol index cache.
22043
22044 @item set index-cache directory @var{directory}
22045 @kindex show index-cache
22046 @itemx show index-cache directory
22047 Set/show the directory where index files will be saved.
22048
22049 The default value for this directory depends on the host platform. On
22050 most systems, the index is cached in the @file{gdb} subdirectory of
22051 the directory pointed to by the @env{XDG_CACHE_HOME} environment
22052 variable, if it is defined, else in the @file{.cache/gdb} subdirectory
22053 of your home directory. However, on some systems, the default may
22054 differ according to local convention.
22055
22056 There is no limit on the disk space used by index cache. It is perfectly safe
22057 to delete the content of that directory to free up disk space.
22058
22059 @item show index-cache stats
22060 Print the number of cache hits and misses since the launch of @value{GDBN}.
22061
22062 @end table
22063
22064 @node Symbol Errors
22065 @section Errors Reading Symbol Files
22066
22067 While reading a symbol file, @value{GDBN} occasionally encounters problems,
22068 such as symbol types it does not recognize, or known bugs in compiler
22069 output. By default, @value{GDBN} does not notify you of such problems, since
22070 they are relatively common and primarily of interest to people
22071 debugging compilers. If you are interested in seeing information
22072 about ill-constructed symbol tables, you can either ask @value{GDBN} to print
22073 only one message about each such type of problem, no matter how many
22074 times the problem occurs; or you can ask @value{GDBN} to print more messages,
22075 to see how many times the problems occur, with the @code{set
22076 complaints} command (@pxref{Messages/Warnings, ,Optional Warnings and
22077 Messages}).
22078
22079 The messages currently printed, and their meanings, include:
22080
22081 @table @code
22082 @item inner block not inside outer block in @var{symbol}
22083
22084 The symbol information shows where symbol scopes begin and end
22085 (such as at the start of a function or a block of statements). This
22086 error indicates that an inner scope block is not fully contained
22087 in its outer scope blocks.
22088
22089 @value{GDBN} circumvents the problem by treating the inner block as if it had
22090 the same scope as the outer block. In the error message, @var{symbol}
22091 may be shown as ``@code{(don't know)}'' if the outer block is not a
22092 function.
22093
22094 @item block at @var{address} out of order
22095
22096 The symbol information for symbol scope blocks should occur in
22097 order of increasing addresses. This error indicates that it does not
22098 do so.
22099
22100 @value{GDBN} does not circumvent this problem, and has trouble
22101 locating symbols in the source file whose symbols it is reading. (You
22102 can often determine what source file is affected by specifying
22103 @code{set verbose on}. @xref{Messages/Warnings, ,Optional Warnings and
22104 Messages}.)
22105
22106 @item bad block start address patched
22107
22108 The symbol information for a symbol scope block has a start address
22109 smaller than the address of the preceding source line. This is known
22110 to occur in the SunOS 4.1.1 (and earlier) C compiler.
22111
22112 @value{GDBN} circumvents the problem by treating the symbol scope block as
22113 starting on the previous source line.
22114
22115 @item bad string table offset in symbol @var{n}
22116
22117 @cindex foo
22118 Symbol number @var{n} contains a pointer into the string table which is
22119 larger than the size of the string table.
22120
22121 @value{GDBN} circumvents the problem by considering the symbol to have the
22122 name @code{foo}, which may cause other problems if many symbols end up
22123 with this name.
22124
22125 @item unknown symbol type @code{0x@var{nn}}
22126
22127 The symbol information contains new data types that @value{GDBN} does
22128 not yet know how to read. @code{0x@var{nn}} is the symbol type of the
22129 uncomprehended information, in hexadecimal.
22130
22131 @value{GDBN} circumvents the error by ignoring this symbol information.
22132 This usually allows you to debug your program, though certain symbols
22133 are not accessible. If you encounter such a problem and feel like
22134 debugging it, you can debug @code{@value{GDBP}} with itself, breakpoint
22135 on @code{complain}, then go up to the function @code{read_dbx_symtab}
22136 and examine @code{*bufp} to see the symbol.
22137
22138 @item stub type has NULL name
22139
22140 @value{GDBN} could not find the full definition for a struct or class.
22141
22142 @item const/volatile indicator missing (ok if using g++ v1.x), got@dots{}
22143 The symbol information for a C@t{++} member function is missing some
22144 information that recent versions of the compiler should have output for
22145 it.
22146
22147 @item info mismatch between compiler and debugger
22148
22149 @value{GDBN} could not parse a type specification output by the compiler.
22150
22151 @end table
22152
22153 @node Data Files
22154 @section GDB Data Files
22155
22156 @cindex prefix for data files
22157 @value{GDBN} will sometimes read an auxiliary data file. These files
22158 are kept in a directory known as the @dfn{data directory}.
22159
22160 You can set the data directory's name, and view the name @value{GDBN}
22161 is currently using.
22162
22163 @table @code
22164 @kindex set data-directory
22165 @item set data-directory @var{directory}
22166 Set the directory which @value{GDBN} searches for auxiliary data files
22167 to @var{directory}.
22168
22169 @kindex show data-directory
22170 @item show data-directory
22171 Show the directory @value{GDBN} searches for auxiliary data files.
22172 @end table
22173
22174 @cindex default data directory
22175 @cindex @samp{--with-gdb-datadir}
22176 You can set the default data directory by using the configure-time
22177 @samp{--with-gdb-datadir} option. If the data directory is inside
22178 @value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
22179 @samp{--exec-prefix}), then the default data directory will be updated
22180 automatically if the installed @value{GDBN} is moved to a new
22181 location.
22182
22183 The data directory may also be specified with the
22184 @code{--data-directory} command line option.
22185 @xref{Mode Options}.
22186
22187 @node Targets
22188 @chapter Specifying a Debugging Target
22189
22190 @cindex debugging target
22191 A @dfn{target} is the execution environment occupied by your program.
22192
22193 Often, @value{GDBN} runs in the same host environment as your program;
22194 in that case, the debugging target is specified as a side effect when
22195 you use the @code{file} or @code{core} commands. When you need more
22196 flexibility---for example, running @value{GDBN} on a physically separate
22197 host, or controlling a standalone system over a serial port or a
22198 realtime system over a TCP/IP connection---you can use the @code{target}
22199 command to specify one of the target types configured for @value{GDBN}
22200 (@pxref{Target Commands, ,Commands for Managing Targets}).
22201
22202 @cindex target architecture
22203 It is possible to build @value{GDBN} for several different @dfn{target
22204 architectures}. When @value{GDBN} is built like that, you can choose
22205 one of the available architectures with the @kbd{set architecture}
22206 command.
22207
22208 @table @code
22209 @kindex set architecture
22210 @kindex show architecture
22211 @item set architecture @var{arch}
22212 This command sets the current target architecture to @var{arch}. The
22213 value of @var{arch} can be @code{"auto"}, in addition to one of the
22214 supported architectures.
22215
22216 @item show architecture
22217 Show the current target architecture.
22218
22219 @item set processor
22220 @itemx processor
22221 @kindex set processor
22222 @kindex show processor
22223 These are alias commands for, respectively, @code{set architecture}
22224 and @code{show architecture}.
22225 @end table
22226
22227 @menu
22228 * Active Targets:: Active targets
22229 * Target Commands:: Commands for managing targets
22230 * Byte Order:: Choosing target byte order
22231 @end menu
22232
22233 @node Active Targets
22234 @section Active Targets
22235
22236 @cindex stacking targets
22237 @cindex active targets
22238 @cindex multiple targets
22239
22240 There are multiple classes of targets such as: processes, executable files or
22241 recording sessions. Core files belong to the process class, making core file
22242 and process mutually exclusive. Otherwise, @value{GDBN} can work concurrently
22243 on multiple active targets, one in each class. This allows you to (for
22244 example) start a process and inspect its activity, while still having access to
22245 the executable file after the process finishes. Or if you start process
22246 recording (@pxref{Reverse Execution}) and @code{reverse-step} there, you are
22247 presented a virtual layer of the recording target, while the process target
22248 remains stopped at the chronologically last point of the process execution.
22249
22250 Use the @code{core-file} and @code{exec-file} commands to select a new core
22251 file or executable target (@pxref{Files, ,Commands to Specify Files}). To
22252 specify as a target a process that is already running, use the @code{attach}
22253 command (@pxref{Attach, ,Debugging an Already-running Process}).
22254
22255 @node Target Commands
22256 @section Commands for Managing Targets
22257
22258 @table @code
22259 @item target @var{type} @var{parameters}
22260 Connects the @value{GDBN} host environment to a target machine or
22261 process. A target is typically a protocol for talking to debugging
22262 facilities. You use the argument @var{type} to specify the type or
22263 protocol of the target machine.
22264
22265 Further @var{parameters} are interpreted by the target protocol, but
22266 typically include things like device names or host names to connect
22267 with, process numbers, and baud rates.
22268
22269 The @code{target} command does not repeat if you press @key{RET} again
22270 after executing the command.
22271
22272 @kindex help target
22273 @item help target
22274 Displays the names of all targets available. To display targets
22275 currently selected, use either @code{info target} or @code{info files}
22276 (@pxref{Files, ,Commands to Specify Files}).
22277
22278 @item help target @var{name}
22279 Describe a particular target, including any parameters necessary to
22280 select it.
22281
22282 @kindex set gnutarget
22283 @item set gnutarget @var{args}
22284 @value{GDBN} uses its own library BFD to read your files. @value{GDBN}
22285 knows whether it is reading an @dfn{executable},
22286 a @dfn{core}, or a @dfn{.o} file; however, you can specify the file format
22287 with the @code{set gnutarget} command. Unlike most @code{target} commands,
22288 with @code{gnutarget} the @code{target} refers to a program, not a machine.
22289
22290 @quotation
22291 @emph{Warning:} To specify a file format with @code{set gnutarget},
22292 you must know the actual BFD name.
22293 @end quotation
22294
22295 @noindent
22296 @xref{Files, , Commands to Specify Files}.
22297
22298 @kindex show gnutarget
22299 @item show gnutarget
22300 Use the @code{show gnutarget} command to display what file format
22301 @code{gnutarget} is set to read. If you have not set @code{gnutarget},
22302 @value{GDBN} will determine the file format for each file automatically,
22303 and @code{show gnutarget} displays @samp{The current BFD target is "auto"}.
22304 @end table
22305
22306 @cindex common targets
22307 Here are some common targets (available, or not, depending on the GDB
22308 configuration):
22309
22310 @table @code
22311 @kindex target
22312 @item target exec @var{program}
22313 @cindex executable file target
22314 An executable file. @samp{target exec @var{program}} is the same as
22315 @samp{exec-file @var{program}}.
22316
22317 @item target core @var{filename}
22318 @cindex core dump file target
22319 A core dump file. @samp{target core @var{filename}} is the same as
22320 @samp{core-file @var{filename}}.
22321
22322 @item target remote @var{medium}
22323 @cindex remote target
22324 A remote system connected to @value{GDBN} via a serial line or network
22325 connection. This command tells @value{GDBN} to use its own remote
22326 protocol over @var{medium} for debugging. @xref{Remote Debugging}.
22327
22328 For example, if you have a board connected to @file{/dev/ttya} on the
22329 machine running @value{GDBN}, you could say:
22330
22331 @smallexample
22332 target remote /dev/ttya
22333 @end smallexample
22334
22335 @code{target remote} supports the @code{load} command. This is only
22336 useful if you have some other way of getting the stub to the target
22337 system, and you can put it somewhere in memory where it won't get
22338 clobbered by the download.
22339
22340 @item target sim @r{[}@var{simargs}@r{]} @dots{}
22341 @cindex built-in simulator target
22342 Builtin CPU simulator. @value{GDBN} includes simulators for most architectures.
22343 In general,
22344 @smallexample
22345 target sim
22346 load
22347 run
22348 @end smallexample
22349 @noindent
22350 works; however, you cannot assume that a specific memory map, device
22351 drivers, or even basic I/O is available, although some simulators do
22352 provide these. For info about any processor-specific simulator details,
22353 see the appropriate section in @ref{Embedded Processors, ,Embedded
22354 Processors}.
22355
22356 @item target native
22357 @cindex native target
22358 Setup for local/native process debugging. Useful to make the
22359 @code{run} command spawn native processes (likewise @code{attach},
22360 etc.@:) even when @code{set auto-connect-native-target} is @code{off}
22361 (@pxref{set auto-connect-native-target}).
22362
22363 @end table
22364
22365 Different targets are available on different configurations of @value{GDBN};
22366 your configuration may have more or fewer targets.
22367
22368 Many remote targets require you to download the executable's code once
22369 you've successfully established a connection. You may wish to control
22370 various aspects of this process.
22371
22372 @table @code
22373
22374 @item set hash
22375 @kindex set hash@r{, for remote monitors}
22376 @cindex hash mark while downloading
22377 This command controls whether a hash mark @samp{#} is displayed while
22378 downloading a file to the remote monitor. If on, a hash mark is
22379 displayed after each S-record is successfully downloaded to the
22380 monitor.
22381
22382 @item show hash
22383 @kindex show hash@r{, for remote monitors}
22384 Show the current status of displaying the hash mark.
22385
22386 @item set debug monitor
22387 @kindex set debug monitor
22388 @cindex display remote monitor communications
22389 Enable or disable display of communications messages between
22390 @value{GDBN} and the remote monitor.
22391
22392 @item show debug monitor
22393 @kindex show debug monitor
22394 Show the current status of displaying communications between
22395 @value{GDBN} and the remote monitor.
22396 @end table
22397
22398 @table @code
22399
22400 @kindex load @var{filename} @var{offset}
22401 @item load @var{filename} @var{offset}
22402 @anchor{load}
22403 Depending on what remote debugging facilities are configured into
22404 @value{GDBN}, the @code{load} command may be available. Where it exists, it
22405 is meant to make @var{filename} (an executable) available for debugging
22406 on the remote system---by downloading, or dynamic linking, for example.
22407 @code{load} also records the @var{filename} symbol table in @value{GDBN}, like
22408 the @code{add-symbol-file} command.
22409
22410 If your @value{GDBN} does not have a @code{load} command, attempting to
22411 execute it gets the error message ``@code{You can't do that when your
22412 target is @dots{}}''
22413
22414 The file is loaded at whatever address is specified in the executable.
22415 For some object file formats, you can specify the load address when you
22416 link the program; for other formats, like a.out, the object file format
22417 specifies a fixed address.
22418 @c FIXME! This would be a good place for an xref to the GNU linker doc.
22419
22420 It is also possible to tell @value{GDBN} to load the executable file at a
22421 specific offset described by the optional argument @var{offset}. When
22422 @var{offset} is provided, @var{filename} must also be provided.
22423
22424 Depending on the remote side capabilities, @value{GDBN} may be able to
22425 load programs into flash memory.
22426
22427 @code{load} does not repeat if you press @key{RET} again after using it.
22428 @end table
22429
22430 @table @code
22431
22432 @kindex flash-erase
22433 @item flash-erase
22434 @anchor{flash-erase}
22435
22436 Erases all known flash memory regions on the target.
22437
22438 @end table
22439
22440 @node Byte Order
22441 @section Choosing Target Byte Order
22442
22443 @cindex choosing target byte order
22444 @cindex target byte order
22445
22446 Some types of processors, such as the @acronym{MIPS}, PowerPC, and Renesas SH,
22447 offer the ability to run either big-endian or little-endian byte
22448 orders. Usually the executable or symbol will include a bit to
22449 designate the endian-ness, and you will not need to worry about
22450 which to use. However, you may still find it useful to adjust
22451 @value{GDBN}'s idea of processor endian-ness manually.
22452
22453 @table @code
22454 @kindex set endian
22455 @item set endian big
22456 Instruct @value{GDBN} to assume the target is big-endian.
22457
22458 @item set endian little
22459 Instruct @value{GDBN} to assume the target is little-endian.
22460
22461 @item set endian auto
22462 Instruct @value{GDBN} to use the byte order associated with the
22463 executable.
22464
22465 @item show endian
22466 Display @value{GDBN}'s current idea of the target byte order.
22467
22468 @end table
22469
22470 If the @code{set endian auto} mode is in effect and no executable has
22471 been selected, then the endianness used is the last one chosen either
22472 by one of the @code{set endian big} and @code{set endian little}
22473 commands or by inferring from the last executable used. If no
22474 endianness has been previously chosen, then the default for this mode
22475 is inferred from the target @value{GDBN} has been built for, and is
22476 @code{little} if the name of the target CPU has an @code{el} suffix
22477 and @code{big} otherwise.
22478
22479 Note that these commands merely adjust interpretation of symbolic
22480 data on the host, and that they have absolutely no effect on the
22481 target system.
22482
22483
22484 @node Remote Debugging
22485 @chapter Debugging Remote Programs
22486 @cindex remote debugging
22487
22488 If you are trying to debug a program running on a machine that cannot run
22489 @value{GDBN} in the usual way, it is often useful to use remote debugging.
22490 For example, you might use remote debugging on an operating system kernel,
22491 or on a small system which does not have a general purpose operating system
22492 powerful enough to run a full-featured debugger.
22493
22494 Some configurations of @value{GDBN} have special serial or TCP/IP interfaces
22495 to make this work with particular debugging targets. In addition,
22496 @value{GDBN} comes with a generic serial protocol (specific to @value{GDBN},
22497 but not specific to any particular target system) which you can use if you
22498 write the remote stubs---the code that runs on the remote system to
22499 communicate with @value{GDBN}.
22500
22501 Other remote targets may be available in your
22502 configuration of @value{GDBN}; use @code{help target} to list them.
22503
22504 @menu
22505 * Connecting:: Connecting to a remote target
22506 * File Transfer:: Sending files to a remote system
22507 * Server:: Using the gdbserver program
22508 * Remote Configuration:: Remote configuration
22509 * Remote Stub:: Implementing a remote stub
22510 @end menu
22511
22512 @node Connecting
22513 @section Connecting to a Remote Target
22514 @cindex remote debugging, connecting
22515 @cindex @code{gdbserver}, connecting
22516 @cindex remote debugging, types of connections
22517 @cindex @code{gdbserver}, types of connections
22518 @cindex @code{gdbserver}, @code{target remote} mode
22519 @cindex @code{gdbserver}, @code{target extended-remote} mode
22520
22521 This section describes how to connect to a remote target, including the
22522 types of connections and their differences, how to set up executable and
22523 symbol files on the host and target, and the commands used for
22524 connecting to and disconnecting from the remote target.
22525
22526 @subsection Types of Remote Connections
22527
22528 @value{GDBN} supports two types of remote connections, @code{target remote}
22529 mode and @code{target extended-remote} mode. Note that many remote targets
22530 support only @code{target remote} mode. There are several major
22531 differences between the two types of connections, enumerated here:
22532
22533 @table @asis
22534
22535 @cindex remote debugging, detach and program exit
22536 @item Result of detach or program exit
22537 @strong{With target remote mode:} When the debugged program exits or you
22538 detach from it, @value{GDBN} disconnects from the target. When using
22539 @code{gdbserver}, @code{gdbserver} will exit.
22540
22541 @strong{With target extended-remote mode:} When the debugged program exits or
22542 you detach from it, @value{GDBN} remains connected to the target, even
22543 though no program is running. You can rerun the program, attach to a
22544 running program, or use @code{monitor} commands specific to the target.
22545
22546 When using @code{gdbserver} in this case, it does not exit unless it was
22547 invoked using the @option{--once} option. If the @option{--once} option
22548 was not used, you can ask @code{gdbserver} to exit using the
22549 @code{monitor exit} command (@pxref{Monitor Commands for gdbserver}).
22550
22551 @item Specifying the program to debug
22552 For both connection types you use the @code{file} command to specify the
22553 program on the host system. If you are using @code{gdbserver} there are
22554 some differences in how to specify the location of the program on the
22555 target.
22556
22557 @strong{With target remote mode:} You must either specify the program to debug
22558 on the @code{gdbserver} command line or use the @option{--attach} option
22559 (@pxref{Attaching to a program,,Attaching to a Running Program}).
22560
22561 @cindex @option{--multi}, @code{gdbserver} option
22562 @strong{With target extended-remote mode:} You may specify the program to debug
22563 on the @code{gdbserver} command line, or you can load the program or attach
22564 to it using @value{GDBN} commands after connecting to @code{gdbserver}.
22565
22566 @anchor{--multi Option in Types of Remote Connnections}
22567 You can start @code{gdbserver} without supplying an initial command to run
22568 or process ID to attach. To do this, use the @option{--multi} command line
22569 option. Then you can connect using @code{target extended-remote} and start
22570 the program you want to debug (see below for details on using the
22571 @code{run} command in this scenario). Note that the conditions under which
22572 @code{gdbserver} terminates depend on how @value{GDBN} connects to it
22573 (@code{target remote} or @code{target extended-remote}). The
22574 @option{--multi} option to @code{gdbserver} has no influence on that.
22575
22576 @item The @code{run} command
22577 @strong{With target remote mode:} The @code{run} command is not
22578 supported. Once a connection has been established, you can use all
22579 the usual @value{GDBN} commands to examine and change data. The
22580 remote program is already running, so you can use commands like
22581 @kbd{step} and @kbd{continue}.
22582
22583 @strong{With target extended-remote mode:} The @code{run} command is
22584 supported. The @code{run} command uses the value set by
22585 @code{set remote exec-file} (@pxref{set remote exec-file}) to select
22586 the program to run. Command line arguments are supported, except for
22587 wildcard expansion and I/O redirection (@pxref{Arguments}).
22588
22589 If you specify the program to debug on the command line, then the
22590 @code{run} command is not required to start execution, and you can
22591 resume using commands like @kbd{step} and @kbd{continue} as with
22592 @code{target remote} mode.
22593
22594 @anchor{Attaching in Types of Remote Connections}
22595 @item Attaching
22596 @strong{With target remote mode:} The @value{GDBN} command @code{attach} is
22597 not supported. To attach to a running program using @code{gdbserver}, you
22598 must use the @option{--attach} option (@pxref{Running gdbserver}).
22599
22600 @strong{With target extended-remote mode:} To attach to a running program,
22601 you may use the @code{attach} command after the connection has been
22602 established. If you are using @code{gdbserver}, you may also invoke
22603 @code{gdbserver} using the @option{--attach} option
22604 (@pxref{Running gdbserver}).
22605
22606 Some remote targets allow @value{GDBN} to determine the executable file running
22607 in the process the debugger is attaching to. In such a case, @value{GDBN}
22608 uses the value of @code{exec-file-mismatch} to handle a possible mismatch
22609 between the executable file name running in the process and the name of the
22610 current exec-file loaded by @value{GDBN} (@pxref{set exec-file-mismatch}).
22611
22612 @end table
22613
22614 @anchor{Host and target files}
22615 @subsection Host and Target Files
22616 @cindex remote debugging, symbol files
22617 @cindex symbol files, remote debugging
22618
22619 @value{GDBN}, running on the host, needs access to symbol and debugging
22620 information for your program running on the target. This requires
22621 access to an unstripped copy of your program, and possibly any associated
22622 symbol files. Note that this section applies equally to both @code{target
22623 remote} mode and @code{target extended-remote} mode.
22624
22625 Some remote targets (@pxref{qXfer executable filename read}, and
22626 @pxref{Host I/O Packets}) allow @value{GDBN} to access program files over
22627 the same connection used to communicate with @value{GDBN}. With such a
22628 target, if the remote program is unstripped, the only command you need is
22629 @code{target remote} (or @code{target extended-remote}).
22630
22631 If the remote program is stripped, or the target does not support remote
22632 program file access, start up @value{GDBN} using the name of the local
22633 unstripped copy of your program as the first argument, or use the
22634 @code{file} command. Use @code{set sysroot} to specify the location (on
22635 the host) of target libraries (unless your @value{GDBN} was compiled with
22636 the correct sysroot using @code{--with-sysroot}). Alternatively, you
22637 may use @code{set solib-search-path} to specify how @value{GDBN} locates
22638 target libraries.
22639
22640 The symbol file and target libraries must exactly match the executable
22641 and libraries on the target, with one exception: the files on the host
22642 system should not be stripped, even if the files on the target system
22643 are. Mismatched or missing files will lead to confusing results
22644 during debugging. On @sc{gnu}/Linux targets, mismatched or missing
22645 files may also prevent @code{gdbserver} from debugging multi-threaded
22646 programs.
22647
22648 @subsection Remote Connection Commands
22649 @cindex remote connection commands
22650 @value{GDBN} can communicate with the target over a serial line, a
22651 local Unix domain socket, or
22652 over an @acronym{IP} network using @acronym{TCP} or @acronym{UDP}. In
22653 each case, @value{GDBN} uses the same protocol for debugging your
22654 program; only the medium carrying the debugging packets varies. The
22655 @code{target remote} and @code{target extended-remote} commands
22656 establish a connection to the target. Both commands accept the same
22657 arguments, which indicate the medium to use:
22658
22659 @table @code
22660
22661 @item target remote @var{serial-device}
22662 @itemx target extended-remote @var{serial-device}
22663 @cindex serial line, @code{target remote}
22664 Use @var{serial-device} to communicate with the target. For example,
22665 to use a serial line connected to the device named @file{/dev/ttyb}:
22666
22667 @smallexample
22668 target remote /dev/ttyb
22669 @end smallexample
22670
22671 If you're using a serial line, you may want to give @value{GDBN} the
22672 @samp{--baud} option, or use the @code{set serial baud} command
22673 (@pxref{Remote Configuration, set serial baud}) before the
22674 @code{target} command.
22675
22676 @item target remote @var{local-socket}
22677 @itemx target extended-remote @var{local-socket}
22678 @cindex local socket, @code{target remote}
22679 @cindex Unix domain socket
22680 Use @var{local-socket} to communicate with the target. For example,
22681 to use a local Unix domain socket bound to the file system entry @file{/tmp/gdb-socket0}:
22682
22683 @smallexample
22684 target remote /tmp/gdb-socket0
22685 @end smallexample
22686
22687 Note that this command has the same form as the command to connect
22688 to a serial line. @value{GDBN} will automatically determine which
22689 kind of file you have specified and will make the appropriate kind
22690 of connection.
22691 This feature is not available if the host system does not support
22692 Unix domain sockets.
22693
22694 @item target remote @code{@var{host}:@var{port}}
22695 @itemx target remote @code{[@var{host}]:@var{port}}
22696 @itemx target remote @code{tcp:@var{host}:@var{port}}
22697 @itemx target remote @code{tcp:[@var{host}]:@var{port}}
22698 @itemx target remote @code{tcp4:@var{host}:@var{port}}
22699 @itemx target remote @code{tcp6:@var{host}:@var{port}}
22700 @itemx target remote @code{tcp6:[@var{host}]:@var{port}}
22701 @itemx target extended-remote @code{@var{host}:@var{port}}
22702 @itemx target extended-remote @code{[@var{host}]:@var{port}}
22703 @itemx target extended-remote @code{tcp:@var{host}:@var{port}}
22704 @itemx target extended-remote @code{tcp:[@var{host}]:@var{port}}
22705 @itemx target extended-remote @code{tcp4:@var{host}:@var{port}}
22706 @itemx target extended-remote @code{tcp6:@var{host}:@var{port}}
22707 @itemx target extended-remote @code{tcp6:[@var{host}]:@var{port}}
22708 @cindex @acronym{TCP} port, @code{target remote}
22709 Debug using a @acronym{TCP} connection to @var{port} on @var{host}.
22710 The @var{host} may be either a host name, a numeric @acronym{IPv4}
22711 address, or a numeric @acronym{IPv6} address (with or without the
22712 square brackets to separate the address from the port); @var{port}
22713 must be a decimal number. The @var{host} could be the target machine
22714 itself, if it is directly connected to the net, or it might be a
22715 terminal server which in turn has a serial line to the target.
22716
22717 For example, to connect to port 2828 on a terminal server named
22718 @code{manyfarms}:
22719
22720 @smallexample
22721 target remote manyfarms:2828
22722 @end smallexample
22723
22724 To connect to port 2828 on a terminal server whose address is
22725 @code{2001:0db8:85a3:0000:0000:8a2e:0370:7334}, you can either use the
22726 square bracket syntax:
22727
22728 @smallexample
22729 target remote [2001:0db8:85a3:0000:0000:8a2e:0370:7334]:2828
22730 @end smallexample
22731
22732 @noindent
22733 or explicitly specify the @acronym{IPv6} protocol:
22734
22735 @smallexample
22736 target remote tcp6:2001:0db8:85a3:0000:0000:8a2e:0370:7334:2828
22737 @end smallexample
22738
22739 This last example may be confusing to the reader, because there is no
22740 visible separation between the hostname and the port number.
22741 Therefore, we recommend the user to provide @acronym{IPv6} addresses
22742 using square brackets for clarity. However, it is important to
22743 mention that for @value{GDBN} there is no ambiguity: the number after
22744 the last colon is considered to be the port number.
22745
22746 If your remote target is actually running on the same machine as your
22747 debugger session (e.g.@: a simulator for your target running on the
22748 same host), you can omit the hostname. For example, to connect to
22749 port 1234 on your local machine:
22750
22751 @smallexample
22752 target remote :1234
22753 @end smallexample
22754 @noindent
22755
22756 Note that the colon is still required here.
22757
22758 @item target remote @code{udp:@var{host}:@var{port}}
22759 @itemx target remote @code{udp:[@var{host}]:@var{port}}
22760 @itemx target remote @code{udp4:@var{host}:@var{port}}
22761 @itemx target remote @code{udp6:[@var{host}]:@var{port}}
22762 @itemx target extended-remote @code{udp:@var{host}:@var{port}}
22763 @itemx target extended-remote @code{udp:@var{host}:@var{port}}
22764 @itemx target extended-remote @code{udp:[@var{host}]:@var{port}}
22765 @itemx target extended-remote @code{udp4:@var{host}:@var{port}}
22766 @itemx target extended-remote @code{udp6:@var{host}:@var{port}}
22767 @itemx target extended-remote @code{udp6:[@var{host}]:@var{port}}
22768 @cindex @acronym{UDP} port, @code{target remote}
22769 Debug using @acronym{UDP} packets to @var{port} on @var{host}. For example, to
22770 connect to @acronym{UDP} port 2828 on a terminal server named @code{manyfarms}:
22771
22772 @smallexample
22773 target remote udp:manyfarms:2828
22774 @end smallexample
22775
22776 When using a @acronym{UDP} connection for remote debugging, you should
22777 keep in mind that the `U' stands for ``Unreliable''. @acronym{UDP}
22778 can silently drop packets on busy or unreliable networks, which will
22779 cause havoc with your debugging session.
22780
22781 @item target remote | @var{command}
22782 @itemx target extended-remote | @var{command}
22783 @cindex pipe, @code{target remote} to
22784 Run @var{command} in the background and communicate with it using a
22785 pipe. The @var{command} is a shell command, to be parsed and expanded
22786 by the system's command shell, @code{/bin/sh}; it should expect remote
22787 protocol packets on its standard input, and send replies on its
22788 standard output. You could use this to run a stand-alone simulator
22789 that speaks the remote debugging protocol, to make net connections
22790 using programs like @code{ssh}, or for other similar tricks.
22791
22792 If @var{command} closes its standard output (perhaps by exiting),
22793 @value{GDBN} will try to send it a @code{SIGTERM} signal. (If the
22794 program has already exited, this will have no effect.)
22795
22796 @end table
22797
22798 @cindex interrupting remote programs
22799 @cindex remote programs, interrupting
22800 Whenever @value{GDBN} is waiting for the remote program, if you type the
22801 interrupt character (often @kbd{Ctrl-c}), @value{GDBN} attempts to stop the
22802 program. This may or may not succeed, depending in part on the hardware
22803 and the serial drivers the remote system uses. If you type the
22804 interrupt character once again, @value{GDBN} displays this prompt:
22805
22806 @smallexample
22807 Interrupted while waiting for the program.
22808 Give up (and stop debugging it)? (y or n)
22809 @end smallexample
22810
22811 In @code{target remote} mode, if you type @kbd{y}, @value{GDBN} abandons
22812 the remote debugging session. (If you decide you want to try again later,
22813 you can use @kbd{target remote} again to connect once more.) If you type
22814 @kbd{n}, @value{GDBN} goes back to waiting.
22815
22816 In @code{target extended-remote} mode, typing @kbd{n} will leave
22817 @value{GDBN} connected to the target.
22818
22819 @table @code
22820 @kindex detach (remote)
22821 @item detach
22822 When you have finished debugging the remote program, you can use the
22823 @code{detach} command to release it from @value{GDBN} control.
22824 Detaching from the target normally resumes its execution, but the results
22825 will depend on your particular remote stub. After the @code{detach}
22826 command in @code{target remote} mode, @value{GDBN} is free to connect to
22827 another target. In @code{target extended-remote} mode, @value{GDBN} is
22828 still connected to the target.
22829
22830 @kindex disconnect
22831 @item disconnect
22832 The @code{disconnect} command closes the connection to the target, and
22833 the target is generally not resumed. It will wait for @value{GDBN}
22834 (this instance or another one) to connect and continue debugging. After
22835 the @code{disconnect} command, @value{GDBN} is again free to connect to
22836 another target.
22837
22838 @cindex send command to remote monitor
22839 @cindex extend @value{GDBN} for remote targets
22840 @cindex add new commands for external monitor
22841 @kindex monitor
22842 @item monitor @var{cmd}
22843 This command allows you to send arbitrary commands directly to the
22844 remote monitor. Since @value{GDBN} doesn't care about the commands it
22845 sends like this, this command is the way to extend @value{GDBN}---you
22846 can add new commands that only the external monitor will understand
22847 and implement.
22848 @end table
22849
22850 @node File Transfer
22851 @section Sending files to a remote system
22852 @cindex remote target, file transfer
22853 @cindex file transfer
22854 @cindex sending files to remote systems
22855
22856 Some remote targets offer the ability to transfer files over the same
22857 connection used to communicate with @value{GDBN}. This is convenient
22858 for targets accessible through other means, e.g.@: @sc{gnu}/Linux systems
22859 running @code{gdbserver} over a network interface. For other targets,
22860 e.g.@: embedded devices with only a single serial port, this may be
22861 the only way to upload or download files.
22862
22863 Not all remote targets support these commands.
22864
22865 @table @code
22866 @kindex remote put
22867 @item remote put @var{hostfile} @var{targetfile}
22868 Copy file @var{hostfile} from the host system (the machine running
22869 @value{GDBN}) to @var{targetfile} on the target system.
22870
22871 @kindex remote get
22872 @item remote get @var{targetfile} @var{hostfile}
22873 Copy file @var{targetfile} from the target system to @var{hostfile}
22874 on the host system.
22875
22876 @kindex remote delete
22877 @item remote delete @var{targetfile}
22878 Delete @var{targetfile} from the target system.
22879
22880 @end table
22881
22882 @node Server
22883 @section Using the @code{gdbserver} Program
22884
22885 @kindex gdbserver
22886 @cindex remote connection without stubs
22887 @code{gdbserver} is a control program for Unix-like systems, which
22888 allows you to connect your program with a remote @value{GDBN} via
22889 @code{target remote} or @code{target extended-remote}---but without
22890 linking in the usual debugging stub.
22891
22892 @code{gdbserver} is not a complete replacement for the debugging stubs,
22893 because it requires essentially the same operating-system facilities
22894 that @value{GDBN} itself does. In fact, a system that can run
22895 @code{gdbserver} to connect to a remote @value{GDBN} could also run
22896 @value{GDBN} locally! @code{gdbserver} is sometimes useful nevertheless,
22897 because it is a much smaller program than @value{GDBN} itself. It is
22898 also easier to port than all of @value{GDBN}, so you may be able to get
22899 started more quickly on a new system by using @code{gdbserver}.
22900 Finally, if you develop code for real-time systems, you may find that
22901 the tradeoffs involved in real-time operation make it more convenient to
22902 do as much development work as possible on another system, for example
22903 by cross-compiling. You can use @code{gdbserver} to make a similar
22904 choice for debugging.
22905
22906 @value{GDBN} and @code{gdbserver} communicate via either a serial line
22907 or a TCP connection, using the standard @value{GDBN} remote serial
22908 protocol.
22909
22910 @quotation
22911 @emph{Warning:} @code{gdbserver} does not have any built-in security.
22912 Do not run @code{gdbserver} connected to any public network; a
22913 @value{GDBN} connection to @code{gdbserver} provides access to the
22914 target system with the same privileges as the user running
22915 @code{gdbserver}.
22916 @end quotation
22917
22918 @anchor{Running gdbserver}
22919 @subsection Running @code{gdbserver}
22920 @cindex arguments, to @code{gdbserver}
22921 @cindex @code{gdbserver}, command-line arguments
22922
22923 Run @code{gdbserver} on the target system. You need a copy of the
22924 program you want to debug, including any libraries it requires.
22925 @code{gdbserver} does not need your program's symbol table, so you can
22926 strip the program if necessary to save space. @value{GDBN} on the host
22927 system does all the symbol handling.
22928
22929 To use the server, you must tell it how to communicate with @value{GDBN};
22930 the name of your program; and the arguments for your program. The usual
22931 syntax is:
22932
22933 @smallexample
22934 target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
22935 @end smallexample
22936
22937 @var{comm} is either a device name (to use a serial line), or a TCP
22938 hostname and portnumber, or @code{-} or @code{stdio} to use
22939 stdin/stdout of @code{gdbserver}.
22940 For example, to debug Emacs with the argument
22941 @samp{foo.txt} and communicate with @value{GDBN} over the serial port
22942 @file{/dev/com1}:
22943
22944 @smallexample
22945 target> gdbserver /dev/com1 emacs foo.txt
22946 @end smallexample
22947
22948 @code{gdbserver} waits passively for the host @value{GDBN} to communicate
22949 with it.
22950
22951 To use a TCP connection instead of a serial line:
22952
22953 @smallexample
22954 target> gdbserver host:2345 emacs foo.txt
22955 @end smallexample
22956
22957 The only difference from the previous example is the first argument,
22958 specifying that you are communicating with the host @value{GDBN} via
22959 TCP. The @samp{host:2345} argument means that @code{gdbserver} is to
22960 expect a TCP connection from machine @samp{host} to local TCP port 2345.
22961 (Currently, the @samp{host} part is ignored.) You can choose any number
22962 you want for the port number as long as it does not conflict with any
22963 TCP ports already in use on the target system (for example, @code{23} is
22964 reserved for @code{telnet}).@footnote{If you choose a port number that
22965 conflicts with another service, @code{gdbserver} prints an error message
22966 and exits.} You must use the same port number with the host @value{GDBN}
22967 @code{target remote} command.
22968
22969 The @code{stdio} connection is useful when starting @code{gdbserver}
22970 with ssh:
22971
22972 @smallexample
22973 (gdb) target remote | ssh -T hostname gdbserver - hello
22974 @end smallexample
22975
22976 The @samp{-T} option to ssh is provided because we don't need a remote pty,
22977 and we don't want escape-character handling. Ssh does this by default when
22978 a command is provided, the flag is provided to make it explicit.
22979 You could elide it if you want to.
22980
22981 Programs started with stdio-connected gdbserver have @file{/dev/null} for
22982 @code{stdin}, and @code{stdout},@code{stderr} are sent back to gdb for
22983 display through a pipe connected to gdbserver.
22984 Both @code{stdout} and @code{stderr} use the same pipe.
22985
22986 @anchor{Attaching to a program}
22987 @subsubsection Attaching to a Running Program
22988 @cindex attach to a program, @code{gdbserver}
22989 @cindex @option{--attach}, @code{gdbserver} option
22990
22991 On some targets, @code{gdbserver} can also attach to running programs.
22992 This is accomplished via the @code{--attach} argument. The syntax is:
22993
22994 @smallexample
22995 target> gdbserver --attach @var{comm} @var{pid}
22996 @end smallexample
22997
22998 @var{pid} is the process ID of a currently running process. It isn't
22999 necessary to point @code{gdbserver} at a binary for the running process.
23000
23001 In @code{target extended-remote} mode, you can also attach using the
23002 @value{GDBN} attach command
23003 (@pxref{Attaching in Types of Remote Connections}).
23004
23005 @pindex pidof
23006 You can debug processes by name instead of process ID if your target has the
23007 @code{pidof} utility:
23008
23009 @smallexample
23010 target> gdbserver --attach @var{comm} `pidof @var{program}`
23011 @end smallexample
23012
23013 In case more than one copy of @var{program} is running, or @var{program}
23014 has multiple threads, most versions of @code{pidof} support the
23015 @code{-s} option to only return the first process ID.
23016
23017 @subsubsection TCP port allocation lifecycle of @code{gdbserver}
23018
23019 This section applies only when @code{gdbserver} is run to listen on a TCP
23020 port.
23021
23022 @code{gdbserver} normally terminates after all of its debugged processes have
23023 terminated in @kbd{target remote} mode. On the other hand, for @kbd{target
23024 extended-remote}, @code{gdbserver} stays running even with no processes left.
23025 @value{GDBN} normally terminates the spawned debugged process on its exit,
23026 which normally also terminates @code{gdbserver} in the @kbd{target remote}
23027 mode. Therefore, when the connection drops unexpectedly, and @value{GDBN}
23028 cannot ask @code{gdbserver} to kill its debugged processes, @code{gdbserver}
23029 stays running even in the @kbd{target remote} mode.
23030
23031 When @code{gdbserver} stays running, @value{GDBN} can connect to it again later.
23032 Such reconnecting is useful for features like @ref{disconnected tracing}. For
23033 completeness, at most one @value{GDBN} can be connected at a time.
23034
23035 @cindex @option{--once}, @code{gdbserver} option
23036 By default, @code{gdbserver} keeps the listening TCP port open, so that
23037 subsequent connections are possible. However, if you start @code{gdbserver}
23038 with the @option{--once} option, it will stop listening for any further
23039 connection attempts after connecting to the first @value{GDBN} session. This
23040 means no further connections to @code{gdbserver} will be possible after the
23041 first one. It also means @code{gdbserver} will terminate after the first
23042 connection with remote @value{GDBN} has closed, even for unexpectedly closed
23043 connections and even in the @kbd{target extended-remote} mode. The
23044 @option{--once} option allows reusing the same port number for connecting to
23045 multiple instances of @code{gdbserver} running on the same host, since each
23046 instance closes its port after the first connection.
23047
23048 @anchor{Other Command-Line Arguments for gdbserver}
23049 @subsubsection Other Command-Line Arguments for @code{gdbserver}
23050
23051 You can use the @option{--multi} option to start @code{gdbserver} without
23052 specifying a program to debug or a process to attach to. Then you can
23053 attach in @code{target extended-remote} mode and run or attach to a
23054 program. For more information,
23055 @pxref{--multi Option in Types of Remote Connnections}.
23056
23057 @cindex @option{--debug}, @code{gdbserver} option
23058 The @option{--debug} option tells @code{gdbserver} to display extra
23059 status information about the debugging process.
23060 @cindex @option{--remote-debug}, @code{gdbserver} option
23061 The @option{--remote-debug} option tells @code{gdbserver} to display
23062 remote protocol debug output.
23063 @cindex @option{--debug-file}, @code{gdbserver} option
23064 @cindex @code{gdbserver}, send all debug output to a single file
23065 The @option{--debug-file=@var{filename}} option tells @code{gdbserver} to
23066 write any debug output to the given @var{filename}. These options are intended
23067 for @code{gdbserver} development and for bug reports to the developers.
23068
23069 @cindex @option{--debug-format}, @code{gdbserver} option
23070 The @option{--debug-format=option1[,option2,...]} option tells
23071 @code{gdbserver} to include additional information in each output.
23072 Possible options are:
23073
23074 @table @code
23075 @item none
23076 Turn off all extra information in debugging output.
23077 @item all
23078 Turn on all extra information in debugging output.
23079 @item timestamps
23080 Include a timestamp in each line of debugging output.
23081 @end table
23082
23083 Options are processed in order. Thus, for example, if @option{none}
23084 appears last then no additional information is added to debugging output.
23085
23086 @cindex @option{--wrapper}, @code{gdbserver} option
23087 The @option{--wrapper} option specifies a wrapper to launch programs
23088 for debugging. The option should be followed by the name of the
23089 wrapper, then any command-line arguments to pass to the wrapper, then
23090 @kbd{--} indicating the end of the wrapper arguments.
23091
23092 @code{gdbserver} runs the specified wrapper program with a combined
23093 command line including the wrapper arguments, then the name of the
23094 program to debug, then any arguments to the program. The wrapper
23095 runs until it executes your program, and then @value{GDBN} gains control.
23096
23097 You can use any program that eventually calls @code{execve} with
23098 its arguments as a wrapper. Several standard Unix utilities do
23099 this, e.g.@: @code{env} and @code{nohup}. Any Unix shell script ending
23100 with @code{exec "$@@"} will also work.
23101
23102 For example, you can use @code{env} to pass an environment variable to
23103 the debugged program, without setting the variable in @code{gdbserver}'s
23104 environment:
23105
23106 @smallexample
23107 $ gdbserver --wrapper env LD_PRELOAD=libtest.so -- :2222 ./testprog
23108 @end smallexample
23109
23110 @cindex @option{--selftest}
23111 The @option{--selftest} option runs the self tests in @code{gdbserver}:
23112
23113 @smallexample
23114 $ gdbserver --selftest
23115 Ran 2 unit tests, 0 failed
23116 @end smallexample
23117
23118 These tests are disabled in release.
23119 @subsection Connecting to @code{gdbserver}
23120
23121 The basic procedure for connecting to the remote target is:
23122 @itemize
23123
23124 @item
23125 Run @value{GDBN} on the host system.
23126
23127 @item
23128 Make sure you have the necessary symbol files
23129 (@pxref{Host and target files}).
23130 Load symbols for your application using the @code{file} command before you
23131 connect. Use @code{set sysroot} to locate target libraries (unless your
23132 @value{GDBN} was compiled with the correct sysroot using
23133 @code{--with-sysroot}).
23134
23135 @item
23136 Connect to your target (@pxref{Connecting,,Connecting to a Remote Target}).
23137 For TCP connections, you must start up @code{gdbserver} prior to using
23138 the @code{target} command. Otherwise you may get an error whose
23139 text depends on the host system, but which usually looks something like
23140 @samp{Connection refused}. Don't use the @code{load}
23141 command in @value{GDBN} when using @code{target remote} mode, since the
23142 program is already on the target.
23143
23144 @end itemize
23145
23146 @anchor{Monitor Commands for gdbserver}
23147 @subsection Monitor Commands for @code{gdbserver}
23148 @cindex monitor commands, for @code{gdbserver}
23149
23150 During a @value{GDBN} session using @code{gdbserver}, you can use the
23151 @code{monitor} command to send special requests to @code{gdbserver}.
23152 Here are the available commands.
23153
23154 @table @code
23155 @item monitor help
23156 List the available monitor commands.
23157
23158 @item monitor set debug 0
23159 @itemx monitor set debug 1
23160 Disable or enable general debugging messages.
23161
23162 @item monitor set remote-debug 0
23163 @itemx monitor set remote-debug 1
23164 Disable or enable specific debugging messages associated with the remote
23165 protocol (@pxref{Remote Protocol}).
23166
23167 @item monitor set debug-file filename
23168 @itemx monitor set debug-file
23169 Send any debug output to the given file, or to stderr.
23170
23171 @item monitor set debug-format option1@r{[},option2,...@r{]}
23172 Specify additional text to add to debugging messages.
23173 Possible options are:
23174
23175 @table @code
23176 @item none
23177 Turn off all extra information in debugging output.
23178 @item all
23179 Turn on all extra information in debugging output.
23180 @item timestamps
23181 Include a timestamp in each line of debugging output.
23182 @end table
23183
23184 Options are processed in order. Thus, for example, if @option{none}
23185 appears last then no additional information is added to debugging output.
23186
23187 @item monitor set libthread-db-search-path [PATH]
23188 @cindex gdbserver, search path for @code{libthread_db}
23189 When this command is issued, @var{path} is a colon-separated list of
23190 directories to search for @code{libthread_db} (@pxref{Threads,,set
23191 libthread-db-search-path}). If you omit @var{path},
23192 @samp{libthread-db-search-path} will be reset to its default value.
23193
23194 The special entry @samp{$pdir} for @samp{libthread-db-search-path} is
23195 not supported in @code{gdbserver}.
23196
23197 @item monitor exit
23198 Tell gdbserver to exit immediately. This command should be followed by
23199 @code{disconnect} to close the debugging session. @code{gdbserver} will
23200 detach from any attached processes and kill any processes it created.
23201 Use @code{monitor exit} to terminate @code{gdbserver} at the end
23202 of a multi-process mode debug session.
23203
23204 @end table
23205
23206 @subsection Tracepoints support in @code{gdbserver}
23207 @cindex tracepoints support in @code{gdbserver}
23208
23209 On some targets, @code{gdbserver} supports tracepoints, fast
23210 tracepoints and static tracepoints.
23211
23212 For fast or static tracepoints to work, a special library called the
23213 @dfn{in-process agent} (IPA), must be loaded in the inferior process.
23214 This library is built and distributed as an integral part of
23215 @code{gdbserver}. In addition, support for static tracepoints
23216 requires building the in-process agent library with static tracepoints
23217 support. At present, the UST (LTTng Userspace Tracer,
23218 @url{http://lttng.org/ust}) tracing engine is supported. This support
23219 is automatically available if UST development headers are found in the
23220 standard include path when @code{gdbserver} is built, or if
23221 @code{gdbserver} was explicitly configured using @option{--with-ust}
23222 to point at such headers. You can explicitly disable the support
23223 using @option{--with-ust=no}.
23224
23225 There are several ways to load the in-process agent in your program:
23226
23227 @table @code
23228 @item Specifying it as dependency at link time
23229
23230 You can link your program dynamically with the in-process agent
23231 library. On most systems, this is accomplished by adding
23232 @code{-linproctrace} to the link command.
23233
23234 @item Using the system's preloading mechanisms
23235
23236 You can force loading the in-process agent at startup time by using
23237 your system's support for preloading shared libraries. Many Unixes
23238 support the concept of preloading user defined libraries. In most
23239 cases, you do that by specifying @code{LD_PRELOAD=libinproctrace.so}
23240 in the environment. See also the description of @code{gdbserver}'s
23241 @option{--wrapper} command line option.
23242
23243 @item Using @value{GDBN} to force loading the agent at run time
23244
23245 On some systems, you can force the inferior to load a shared library,
23246 by calling a dynamic loader function in the inferior that takes care
23247 of dynamically looking up and loading a shared library. On most Unix
23248 systems, the function is @code{dlopen}. You'll use the @code{call}
23249 command for that. For example:
23250
23251 @smallexample
23252 (@value{GDBP}) call dlopen ("libinproctrace.so", ...)
23253 @end smallexample
23254
23255 Note that on most Unix systems, for the @code{dlopen} function to be
23256 available, the program needs to be linked with @code{-ldl}.
23257 @end table
23258
23259 On systems that have a userspace dynamic loader, like most Unix
23260 systems, when you connect to @code{gdbserver} using @code{target
23261 remote}, you'll find that the program is stopped at the dynamic
23262 loader's entry point, and no shared library has been loaded in the
23263 program's address space yet, including the in-process agent. In that
23264 case, before being able to use any of the fast or static tracepoints
23265 features, you need to let the loader run and load the shared
23266 libraries. The simplest way to do that is to run the program to the
23267 main procedure. E.g., if debugging a C or C@t{++} program, start
23268 @code{gdbserver} like so:
23269
23270 @smallexample
23271 $ gdbserver :9999 myprogram
23272 @end smallexample
23273
23274 Start GDB and connect to @code{gdbserver} like so, and run to main:
23275
23276 @smallexample
23277 $ gdb myprogram
23278 (@value{GDBP}) target remote myhost:9999
23279 0x00007f215893ba60 in ?? () from /lib64/ld-linux-x86-64.so.2
23280 (@value{GDBP}) b main
23281 (@value{GDBP}) continue
23282 @end smallexample
23283
23284 The in-process tracing agent library should now be loaded into the
23285 process; you can confirm it with the @code{info sharedlibrary}
23286 command, which will list @file{libinproctrace.so} as loaded in the
23287 process. You are now ready to install fast tracepoints, list static
23288 tracepoint markers, probe static tracepoints markers, and start
23289 tracing.
23290
23291 @node Remote Configuration
23292 @section Remote Configuration
23293
23294 @kindex set remote
23295 @kindex show remote
23296 This section documents the configuration options available when
23297 debugging remote programs. For the options related to the File I/O
23298 extensions of the remote protocol, see @ref{system,
23299 system-call-allowed}.
23300
23301 @table @code
23302 @item set remoteaddresssize @var{bits}
23303 @cindex address size for remote targets
23304 @cindex bits in remote address
23305 Set the maximum size of address in a memory packet to the specified
23306 number of bits. @value{GDBN} will mask off the address bits above
23307 that number, when it passes addresses to the remote target. The
23308 default value is the number of bits in the target's address.
23309
23310 @item show remoteaddresssize
23311 Show the current value of remote address size in bits.
23312
23313 @item set serial baud @var{n}
23314 @cindex baud rate for remote targets
23315 Set the baud rate for the remote serial I/O to @var{n} baud. The
23316 value is used to set the speed of the serial port used for debugging
23317 remote targets.
23318
23319 @item show serial baud
23320 Show the current speed of the remote connection.
23321
23322 @item set serial parity @var{parity}
23323 Set the parity for the remote serial I/O. Supported values of @var{parity} are:
23324 @code{even}, @code{none}, and @code{odd}. The default is @code{none}.
23325
23326 @item show serial parity
23327 Show the current parity of the serial port.
23328
23329 @item set remotebreak
23330 @cindex interrupt remote programs
23331 @cindex BREAK signal instead of Ctrl-C
23332 @anchor{set remotebreak}
23333 If set to on, @value{GDBN} sends a @code{BREAK} signal to the remote
23334 when you type @kbd{Ctrl-c} to interrupt the program running
23335 on the remote. If set to off, @value{GDBN} sends the @samp{Ctrl-C}
23336 character instead. The default is off, since most remote systems
23337 expect to see @samp{Ctrl-C} as the interrupt signal.
23338
23339 @item show remotebreak
23340 Show whether @value{GDBN} sends @code{BREAK} or @samp{Ctrl-C} to
23341 interrupt the remote program.
23342
23343 @item set remoteflow on
23344 @itemx set remoteflow off
23345 @kindex set remoteflow
23346 Enable or disable hardware flow control (@code{RTS}/@code{CTS})
23347 on the serial port used to communicate to the remote target.
23348
23349 @item show remoteflow
23350 @kindex show remoteflow
23351 Show the current setting of hardware flow control.
23352
23353 @item set remotelogbase @var{base}
23354 Set the base (a.k.a.@: radix) of logging serial protocol
23355 communications to @var{base}. Supported values of @var{base} are:
23356 @code{ascii}, @code{octal}, and @code{hex}. The default is
23357 @code{ascii}.
23358
23359 @item show remotelogbase
23360 Show the current setting of the radix for logging remote serial
23361 protocol.
23362
23363 @item set remotelogfile @var{file}
23364 @cindex record serial communications on file
23365 Record remote serial communications on the named @var{file}. The
23366 default is not to record at all.
23367
23368 @item show remotelogfile
23369 Show the current setting of the file name on which to record the
23370 serial communications.
23371
23372 @item set remotetimeout @var{num}
23373 @cindex timeout for serial communications
23374 @cindex remote timeout
23375 Set the timeout limit to wait for the remote target to respond to
23376 @var{num} seconds. The default is 2 seconds.
23377
23378 @item show remotetimeout
23379 Show the current number of seconds to wait for the remote target
23380 responses.
23381
23382 @cindex limit hardware breakpoints and watchpoints
23383 @cindex remote target, limit break- and watchpoints
23384 @anchor{set remote hardware-watchpoint-limit}
23385 @anchor{set remote hardware-breakpoint-limit}
23386 @item set remote hardware-watchpoint-limit @var{limit}
23387 @itemx set remote hardware-breakpoint-limit @var{limit}
23388 Restrict @value{GDBN} to using @var{limit} remote hardware watchpoints
23389 or breakpoints. The @var{limit} can be set to 0 to disable hardware
23390 watchpoints or breakpoints, and @code{unlimited} for unlimited
23391 watchpoints or breakpoints.
23392
23393 @item show remote hardware-watchpoint-limit
23394 @itemx show remote hardware-breakpoint-limit
23395 Show the current limit for the number of hardware watchpoints or
23396 breakpoints that @value{GDBN} can use.
23397
23398 @cindex limit hardware watchpoints length
23399 @cindex remote target, limit watchpoints length
23400 @anchor{set remote hardware-watchpoint-length-limit}
23401 @item set remote hardware-watchpoint-length-limit @var{limit}
23402 Restrict @value{GDBN} to using @var{limit} bytes for the maximum
23403 length of a remote hardware watchpoint. A @var{limit} of 0 disables
23404 hardware watchpoints and @code{unlimited} allows watchpoints of any
23405 length.
23406
23407 @item show remote hardware-watchpoint-length-limit
23408 Show the current limit (in bytes) of the maximum length of
23409 a remote hardware watchpoint.
23410
23411 @item set remote exec-file @var{filename}
23412 @itemx show remote exec-file
23413 @anchor{set remote exec-file}
23414 @cindex executable file, for remote target
23415 Select the file used for @code{run} with @code{target
23416 extended-remote}. This should be set to a filename valid on the
23417 target system. If it is not set, the target will use a default
23418 filename (e.g.@: the last program run).
23419
23420 @item set remote interrupt-sequence
23421 @cindex interrupt remote programs
23422 @cindex select Ctrl-C, BREAK or BREAK-g
23423 Allow the user to select one of @samp{Ctrl-C}, a @code{BREAK} or
23424 @samp{BREAK-g} as the
23425 sequence to the remote target in order to interrupt the execution.
23426 @samp{Ctrl-C} is a default. Some system prefers @code{BREAK} which
23427 is high level of serial line for some certain time.
23428 Linux kernel prefers @samp{BREAK-g}, a.k.a Magic SysRq g.
23429 It is @code{BREAK} signal followed by character @code{g}.
23430
23431 @item show remote interrupt-sequence
23432 Show which of @samp{Ctrl-C}, @code{BREAK} or @code{BREAK-g}
23433 is sent by @value{GDBN} to interrupt the remote program.
23434 @code{BREAK-g} is BREAK signal followed by @code{g} and
23435 also known as Magic SysRq g.
23436
23437 @item set remote interrupt-on-connect
23438 @cindex send interrupt-sequence on start
23439 Specify whether interrupt-sequence is sent to remote target when
23440 @value{GDBN} connects to it. This is mostly needed when you debug
23441 Linux kernel. Linux kernel expects @code{BREAK} followed by @code{g}
23442 which is known as Magic SysRq g in order to connect @value{GDBN}.
23443
23444 @item show remote interrupt-on-connect
23445 Show whether interrupt-sequence is sent
23446 to remote target when @value{GDBN} connects to it.
23447
23448 @kindex set tcp
23449 @kindex show tcp
23450 @item set tcp auto-retry on
23451 @cindex auto-retry, for remote TCP target
23452 Enable auto-retry for remote TCP connections. This is useful if the remote
23453 debugging agent is launched in parallel with @value{GDBN}; there is a race
23454 condition because the agent may not become ready to accept the connection
23455 before @value{GDBN} attempts to connect. When auto-retry is
23456 enabled, if the initial attempt to connect fails, @value{GDBN} reattempts
23457 to establish the connection using the timeout specified by
23458 @code{set tcp connect-timeout}.
23459
23460 @item set tcp auto-retry off
23461 Do not auto-retry failed TCP connections.
23462
23463 @item show tcp auto-retry
23464 Show the current auto-retry setting.
23465
23466 @item set tcp connect-timeout @var{seconds}
23467 @itemx set tcp connect-timeout unlimited
23468 @cindex connection timeout, for remote TCP target
23469 @cindex timeout, for remote target connection
23470 Set the timeout for establishing a TCP connection to the remote target to
23471 @var{seconds}. The timeout affects both polling to retry failed connections
23472 (enabled by @code{set tcp auto-retry on}) and waiting for connections
23473 that are merely slow to complete, and represents an approximate cumulative
23474 value. If @var{seconds} is @code{unlimited}, there is no timeout and
23475 @value{GDBN} will keep attempting to establish a connection forever,
23476 unless interrupted with @kbd{Ctrl-c}. The default is 15 seconds.
23477
23478 @item show tcp connect-timeout
23479 Show the current connection timeout setting.
23480 @end table
23481
23482 @cindex remote packets, enabling and disabling
23483 The @value{GDBN} remote protocol autodetects the packets supported by
23484 your debugging stub. If you need to override the autodetection, you
23485 can use these commands to enable or disable individual packets. Each
23486 packet can be set to @samp{on} (the remote target supports this
23487 packet), @samp{off} (the remote target does not support this packet),
23488 or @samp{auto} (detect remote target support for this packet). They
23489 all default to @samp{auto}. For more information about each packet,
23490 see @ref{Remote Protocol}.
23491
23492 During normal use, you should not have to use any of these commands.
23493 If you do, that may be a bug in your remote debugging stub, or a bug
23494 in @value{GDBN}. You may want to report the problem to the
23495 @value{GDBN} developers.
23496
23497 For each packet @var{name}, the command to enable or disable the
23498 packet is @code{set remote @var{name}-packet}. The available settings
23499 are:
23500
23501 @multitable @columnfractions 0.28 0.32 0.25
23502 @item Command Name
23503 @tab Remote Packet
23504 @tab Related Features
23505
23506 @item @code{fetch-register}
23507 @tab @code{p}
23508 @tab @code{info registers}
23509
23510 @item @code{set-register}
23511 @tab @code{P}
23512 @tab @code{set}
23513
23514 @item @code{binary-download}
23515 @tab @code{X}
23516 @tab @code{load}, @code{set}
23517
23518 @item @code{read-aux-vector}
23519 @tab @code{qXfer:auxv:read}
23520 @tab @code{info auxv}
23521
23522 @item @code{symbol-lookup}
23523 @tab @code{qSymbol}
23524 @tab Detecting multiple threads
23525
23526 @item @code{attach}
23527 @tab @code{vAttach}
23528 @tab @code{attach}
23529
23530 @item @code{verbose-resume}
23531 @tab @code{vCont}
23532 @tab Stepping or resuming multiple threads
23533
23534 @item @code{run}
23535 @tab @code{vRun}
23536 @tab @code{run}
23537
23538 @item @code{software-breakpoint}
23539 @tab @code{Z0}
23540 @tab @code{break}
23541
23542 @item @code{hardware-breakpoint}
23543 @tab @code{Z1}
23544 @tab @code{hbreak}
23545
23546 @item @code{write-watchpoint}
23547 @tab @code{Z2}
23548 @tab @code{watch}
23549
23550 @item @code{read-watchpoint}
23551 @tab @code{Z3}
23552 @tab @code{rwatch}
23553
23554 @item @code{access-watchpoint}
23555 @tab @code{Z4}
23556 @tab @code{awatch}
23557
23558 @item @code{pid-to-exec-file}
23559 @tab @code{qXfer:exec-file:read}
23560 @tab @code{attach}, @code{run}
23561
23562 @item @code{target-features}
23563 @tab @code{qXfer:features:read}
23564 @tab @code{set architecture}
23565
23566 @item @code{library-info}
23567 @tab @code{qXfer:libraries:read}
23568 @tab @code{info sharedlibrary}
23569
23570 @item @code{memory-map}
23571 @tab @code{qXfer:memory-map:read}
23572 @tab @code{info mem}
23573
23574 @item @code{read-sdata-object}
23575 @tab @code{qXfer:sdata:read}
23576 @tab @code{print $_sdata}
23577
23578 @item @code{read-siginfo-object}
23579 @tab @code{qXfer:siginfo:read}
23580 @tab @code{print $_siginfo}
23581
23582 @item @code{write-siginfo-object}
23583 @tab @code{qXfer:siginfo:write}
23584 @tab @code{set $_siginfo}
23585
23586 @item @code{threads}
23587 @tab @code{qXfer:threads:read}
23588 @tab @code{info threads}
23589
23590 @item @code{get-thread-local-@*storage-address}
23591 @tab @code{qGetTLSAddr}
23592 @tab Displaying @code{__thread} variables
23593
23594 @item @code{get-thread-information-block-address}
23595 @tab @code{qGetTIBAddr}
23596 @tab Display MS-Windows Thread Information Block.
23597
23598 @item @code{search-memory}
23599 @tab @code{qSearch:memory}
23600 @tab @code{find}
23601
23602 @item @code{supported-packets}
23603 @tab @code{qSupported}
23604 @tab Remote communications parameters
23605
23606 @item @code{catch-syscalls}
23607 @tab @code{QCatchSyscalls}
23608 @tab @code{catch syscall}
23609
23610 @item @code{pass-signals}
23611 @tab @code{QPassSignals}
23612 @tab @code{handle @var{signal}}
23613
23614 @item @code{program-signals}
23615 @tab @code{QProgramSignals}
23616 @tab @code{handle @var{signal}}
23617
23618 @item @code{hostio-close-packet}
23619 @tab @code{vFile:close}
23620 @tab @code{remote get}, @code{remote put}
23621
23622 @item @code{hostio-open-packet}
23623 @tab @code{vFile:open}
23624 @tab @code{remote get}, @code{remote put}
23625
23626 @item @code{hostio-pread-packet}
23627 @tab @code{vFile:pread}
23628 @tab @code{remote get}, @code{remote put}
23629
23630 @item @code{hostio-pwrite-packet}
23631 @tab @code{vFile:pwrite}
23632 @tab @code{remote get}, @code{remote put}
23633
23634 @item @code{hostio-unlink-packet}
23635 @tab @code{vFile:unlink}
23636 @tab @code{remote delete}
23637
23638 @item @code{hostio-readlink-packet}
23639 @tab @code{vFile:readlink}
23640 @tab Host I/O
23641
23642 @item @code{hostio-fstat-packet}
23643 @tab @code{vFile:fstat}
23644 @tab Host I/O
23645
23646 @item @code{hostio-setfs-packet}
23647 @tab @code{vFile:setfs}
23648 @tab Host I/O
23649
23650 @item @code{noack-packet}
23651 @tab @code{QStartNoAckMode}
23652 @tab Packet acknowledgment
23653
23654 @item @code{osdata}
23655 @tab @code{qXfer:osdata:read}
23656 @tab @code{info os}
23657
23658 @item @code{query-attached}
23659 @tab @code{qAttached}
23660 @tab Querying remote process attach state.
23661
23662 @item @code{trace-buffer-size}
23663 @tab @code{QTBuffer:size}
23664 @tab @code{set trace-buffer-size}
23665
23666 @item @code{trace-status}
23667 @tab @code{qTStatus}
23668 @tab @code{tstatus}
23669
23670 @item @code{traceframe-info}
23671 @tab @code{qXfer:traceframe-info:read}
23672 @tab Traceframe info
23673
23674 @item @code{install-in-trace}
23675 @tab @code{InstallInTrace}
23676 @tab Install tracepoint in tracing
23677
23678 @item @code{disable-randomization}
23679 @tab @code{QDisableRandomization}
23680 @tab @code{set disable-randomization}
23681
23682 @item @code{startup-with-shell}
23683 @tab @code{QStartupWithShell}
23684 @tab @code{set startup-with-shell}
23685
23686 @item @code{environment-hex-encoded}
23687 @tab @code{QEnvironmentHexEncoded}
23688 @tab @code{set environment}
23689
23690 @item @code{environment-unset}
23691 @tab @code{QEnvironmentUnset}
23692 @tab @code{unset environment}
23693
23694 @item @code{environment-reset}
23695 @tab @code{QEnvironmentReset}
23696 @tab @code{Reset the inferior environment (i.e., unset user-set variables)}
23697
23698 @item @code{set-working-dir}
23699 @tab @code{QSetWorkingDir}
23700 @tab @code{set cwd}
23701
23702 @item @code{conditional-breakpoints-packet}
23703 @tab @code{Z0 and Z1}
23704 @tab @code{Support for target-side breakpoint condition evaluation}
23705
23706 @item @code{multiprocess-extensions}
23707 @tab @code{multiprocess extensions}
23708 @tab Debug multiple processes and remote process PID awareness
23709
23710 @item @code{swbreak-feature}
23711 @tab @code{swbreak stop reason}
23712 @tab @code{break}
23713
23714 @item @code{hwbreak-feature}
23715 @tab @code{hwbreak stop reason}
23716 @tab @code{hbreak}
23717
23718 @item @code{fork-event-feature}
23719 @tab @code{fork stop reason}
23720 @tab @code{fork}
23721
23722 @item @code{vfork-event-feature}
23723 @tab @code{vfork stop reason}
23724 @tab @code{vfork}
23725
23726 @item @code{exec-event-feature}
23727 @tab @code{exec stop reason}
23728 @tab @code{exec}
23729
23730 @item @code{thread-events}
23731 @tab @code{QThreadEvents}
23732 @tab Tracking thread lifetime.
23733
23734 @item @code{no-resumed-stop-reply}
23735 @tab @code{no resumed thread left stop reply}
23736 @tab Tracking thread lifetime.
23737
23738 @end multitable
23739
23740 @node Remote Stub
23741 @section Implementing a Remote Stub
23742
23743 @cindex debugging stub, example
23744 @cindex remote stub, example
23745 @cindex stub example, remote debugging
23746 The stub files provided with @value{GDBN} implement the target side of the
23747 communication protocol, and the @value{GDBN} side is implemented in the
23748 @value{GDBN} source file @file{remote.c}. Normally, you can simply allow
23749 these subroutines to communicate, and ignore the details. (If you're
23750 implementing your own stub file, you can still ignore the details: start
23751 with one of the existing stub files. @file{sparc-stub.c} is the best
23752 organized, and therefore the easiest to read.)
23753
23754 @cindex remote serial debugging, overview
23755 To debug a program running on another machine (the debugging
23756 @dfn{target} machine), you must first arrange for all the usual
23757 prerequisites for the program to run by itself. For example, for a C
23758 program, you need:
23759
23760 @enumerate
23761 @item
23762 A startup routine to set up the C runtime environment; these usually
23763 have a name like @file{crt0}. The startup routine may be supplied by
23764 your hardware supplier, or you may have to write your own.
23765
23766 @item
23767 A C subroutine library to support your program's
23768 subroutine calls, notably managing input and output.
23769
23770 @item
23771 A way of getting your program to the other machine---for example, a
23772 download program. These are often supplied by the hardware
23773 manufacturer, but you may have to write your own from hardware
23774 documentation.
23775 @end enumerate
23776
23777 The next step is to arrange for your program to use a serial port to
23778 communicate with the machine where @value{GDBN} is running (the @dfn{host}
23779 machine). In general terms, the scheme looks like this:
23780
23781 @table @emph
23782 @item On the host,
23783 @value{GDBN} already understands how to use this protocol; when everything
23784 else is set up, you can simply use the @samp{target remote} command
23785 (@pxref{Targets,,Specifying a Debugging Target}).
23786
23787 @item On the target,
23788 you must link with your program a few special-purpose subroutines that
23789 implement the @value{GDBN} remote serial protocol. The file containing these
23790 subroutines is called a @dfn{debugging stub}.
23791
23792 On certain remote targets, you can use an auxiliary program
23793 @code{gdbserver} instead of linking a stub into your program.
23794 @xref{Server,,Using the @code{gdbserver} Program}, for details.
23795 @end table
23796
23797 The debugging stub is specific to the architecture of the remote
23798 machine; for example, use @file{sparc-stub.c} to debug programs on
23799 @sc{sparc} boards.
23800
23801 @cindex remote serial stub list
23802 These working remote stubs are distributed with @value{GDBN}:
23803
23804 @table @code
23805
23806 @item i386-stub.c
23807 @cindex @file{i386-stub.c}
23808 @cindex Intel
23809 @cindex i386
23810 For Intel 386 and compatible architectures.
23811
23812 @item m68k-stub.c
23813 @cindex @file{m68k-stub.c}
23814 @cindex Motorola 680x0
23815 @cindex m680x0
23816 For Motorola 680x0 architectures.
23817
23818 @item sh-stub.c
23819 @cindex @file{sh-stub.c}
23820 @cindex Renesas
23821 @cindex SH
23822 For Renesas SH architectures.
23823
23824 @item sparc-stub.c
23825 @cindex @file{sparc-stub.c}
23826 @cindex Sparc
23827 For @sc{sparc} architectures.
23828
23829 @item sparcl-stub.c
23830 @cindex @file{sparcl-stub.c}
23831 @cindex Fujitsu
23832 @cindex SparcLite
23833 For Fujitsu @sc{sparclite} architectures.
23834
23835 @end table
23836
23837 The @file{README} file in the @value{GDBN} distribution may list other
23838 recently added stubs.
23839
23840 @menu
23841 * Stub Contents:: What the stub can do for you
23842 * Bootstrapping:: What you must do for the stub
23843 * Debug Session:: Putting it all together
23844 @end menu
23845
23846 @node Stub Contents
23847 @subsection What the Stub Can Do for You
23848
23849 @cindex remote serial stub
23850 The debugging stub for your architecture supplies these three
23851 subroutines:
23852
23853 @table @code
23854 @item set_debug_traps
23855 @findex set_debug_traps
23856 @cindex remote serial stub, initialization
23857 This routine arranges for @code{handle_exception} to run when your
23858 program stops. You must call this subroutine explicitly in your
23859 program's startup code.
23860
23861 @item handle_exception
23862 @findex handle_exception
23863 @cindex remote serial stub, main routine
23864 This is the central workhorse, but your program never calls it
23865 explicitly---the setup code arranges for @code{handle_exception} to
23866 run when a trap is triggered.
23867
23868 @code{handle_exception} takes control when your program stops during
23869 execution (for example, on a breakpoint), and mediates communications
23870 with @value{GDBN} on the host machine. This is where the communications
23871 protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
23872 representative on the target machine. It begins by sending summary
23873 information on the state of your program, then continues to execute,
23874 retrieving and transmitting any information @value{GDBN} needs, until you
23875 execute a @value{GDBN} command that makes your program resume; at that point,
23876 @code{handle_exception} returns control to your own code on the target
23877 machine.
23878
23879 @item breakpoint
23880 @cindex @code{breakpoint} subroutine, remote
23881 Use this auxiliary subroutine to make your program contain a
23882 breakpoint. Depending on the particular situation, this may be the only
23883 way for @value{GDBN} to get control. For instance, if your target
23884 machine has some sort of interrupt button, you won't need to call this;
23885 pressing the interrupt button transfers control to
23886 @code{handle_exception}---in effect, to @value{GDBN}. On some machines,
23887 simply receiving characters on the serial port may also trigger a trap;
23888 again, in that situation, you don't need to call @code{breakpoint} from
23889 your own program---simply running @samp{target remote} from the host
23890 @value{GDBN} session gets control.
23891
23892 Call @code{breakpoint} if none of these is true, or if you simply want
23893 to make certain your program stops at a predetermined point for the
23894 start of your debugging session.
23895 @end table
23896
23897 @node Bootstrapping
23898 @subsection What You Must Do for the Stub
23899
23900 @cindex remote stub, support routines
23901 The debugging stubs that come with @value{GDBN} are set up for a particular
23902 chip architecture, but they have no information about the rest of your
23903 debugging target machine.
23904
23905 First of all you need to tell the stub how to communicate with the
23906 serial port.
23907
23908 @table @code
23909 @item int getDebugChar()
23910 @findex getDebugChar
23911 Write this subroutine to read a single character from the serial port.
23912 It may be identical to @code{getchar} for your target system; a
23913 different name is used to allow you to distinguish the two if you wish.
23914
23915 @item void putDebugChar(int)
23916 @findex putDebugChar
23917 Write this subroutine to write a single character to the serial port.
23918 It may be identical to @code{putchar} for your target system; a
23919 different name is used to allow you to distinguish the two if you wish.
23920 @end table
23921
23922 @cindex control C, and remote debugging
23923 @cindex interrupting remote targets
23924 If you want @value{GDBN} to be able to stop your program while it is
23925 running, you need to use an interrupt-driven serial driver, and arrange
23926 for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
23927 character). That is the character which @value{GDBN} uses to tell the
23928 remote system to stop.
23929
23930 Getting the debugging target to return the proper status to @value{GDBN}
23931 probably requires changes to the standard stub; one quick and dirty way
23932 is to just execute a breakpoint instruction (the ``dirty'' part is that
23933 @value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
23934
23935 Other routines you need to supply are:
23936
23937 @table @code
23938 @item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
23939 @findex exceptionHandler
23940 Write this function to install @var{exception_address} in the exception
23941 handling tables. You need to do this because the stub does not have any
23942 way of knowing what the exception handling tables on your target system
23943 are like (for example, the processor's table might be in @sc{rom},
23944 containing entries which point to a table in @sc{ram}).
23945 The @var{exception_number} specifies the exception which should be changed;
23946 its meaning is architecture-dependent (for example, different numbers
23947 might represent divide by zero, misaligned access, etc). When this
23948 exception occurs, control should be transferred directly to
23949 @var{exception_address}, and the processor state (stack, registers,
23950 and so on) should be just as it is when a processor exception occurs. So if
23951 you want to use a jump instruction to reach @var{exception_address}, it
23952 should be a simple jump, not a jump to subroutine.
23953
23954 For the 386, @var{exception_address} should be installed as an interrupt
23955 gate so that interrupts are masked while the handler runs. The gate
23956 should be at privilege level 0 (the most privileged level). The
23957 @sc{sparc} and 68k stubs are able to mask interrupts themselves without
23958 help from @code{exceptionHandler}.
23959
23960 @item void flush_i_cache()
23961 @findex flush_i_cache
23962 On @sc{sparc} and @sc{sparclite} only, write this subroutine to flush the
23963 instruction cache, if any, on your target machine. If there is no
23964 instruction cache, this subroutine may be a no-op.
23965
23966 On target machines that have instruction caches, @value{GDBN} requires this
23967 function to make certain that the state of your program is stable.
23968 @end table
23969
23970 @noindent
23971 You must also make sure this library routine is available:
23972
23973 @table @code
23974 @item void *memset(void *, int, int)
23975 @findex memset
23976 This is the standard library function @code{memset} that sets an area of
23977 memory to a known value. If you have one of the free versions of
23978 @code{libc.a}, @code{memset} can be found there; otherwise, you must
23979 either obtain it from your hardware manufacturer, or write your own.
23980 @end table
23981
23982 If you do not use the GNU C compiler, you may need other standard
23983 library subroutines as well; this varies from one stub to another,
23984 but in general the stubs are likely to use any of the common library
23985 subroutines which @code{@value{NGCC}} generates as inline code.
23986
23987
23988 @node Debug Session
23989 @subsection Putting it All Together
23990
23991 @cindex remote serial debugging summary
23992 In summary, when your program is ready to debug, you must follow these
23993 steps.
23994
23995 @enumerate
23996 @item
23997 Make sure you have defined the supporting low-level routines
23998 (@pxref{Bootstrapping,,What You Must Do for the Stub}):
23999 @display
24000 @code{getDebugChar}, @code{putDebugChar},
24001 @code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
24002 @end display
24003
24004 @item
24005 Insert these lines in your program's startup code, before the main
24006 procedure is called:
24007
24008 @smallexample
24009 set_debug_traps();
24010 breakpoint();
24011 @end smallexample
24012
24013 On some machines, when a breakpoint trap is raised, the hardware
24014 automatically makes the PC point to the instruction after the
24015 breakpoint. If your machine doesn't do that, you may need to adjust
24016 @code{handle_exception} to arrange for it to return to the instruction
24017 after the breakpoint on this first invocation, so that your program
24018 doesn't keep hitting the initial breakpoint instead of making
24019 progress.
24020
24021 @item
24022 For the 680x0 stub only, you need to provide a variable called
24023 @code{exceptionHook}. Normally you just use:
24024
24025 @smallexample
24026 void (*exceptionHook)() = 0;
24027 @end smallexample
24028
24029 @noindent
24030 but if before calling @code{set_debug_traps}, you set it to point to a
24031 function in your program, that function is called when
24032 @code{@value{GDBN}} continues after stopping on a trap (for example, bus
24033 error). The function indicated by @code{exceptionHook} is called with
24034 one parameter: an @code{int} which is the exception number.
24035
24036 @item
24037 Compile and link together: your program, the @value{GDBN} debugging stub for
24038 your target architecture, and the supporting subroutines.
24039
24040 @item
24041 Make sure you have a serial connection between your target machine and
24042 the @value{GDBN} host, and identify the serial port on the host.
24043
24044 @item
24045 @c The "remote" target now provides a `load' command, so we should
24046 @c document that. FIXME.
24047 Download your program to your target machine (or get it there by
24048 whatever means the manufacturer provides), and start it.
24049
24050 @item
24051 Start @value{GDBN} on the host, and connect to the target
24052 (@pxref{Connecting,,Connecting to a Remote Target}).
24053
24054 @end enumerate
24055
24056 @node Configurations
24057 @chapter Configuration-Specific Information
24058
24059 While nearly all @value{GDBN} commands are available for all native and
24060 cross versions of the debugger, there are some exceptions. This chapter
24061 describes things that are only available in certain configurations.
24062
24063 There are three major categories of configurations: native
24064 configurations, where the host and target are the same, embedded
24065 operating system configurations, which are usually the same for several
24066 different processor architectures, and bare embedded processors, which
24067 are quite different from each other.
24068
24069 @menu
24070 * Native::
24071 * Embedded OS::
24072 * Embedded Processors::
24073 * Architectures::
24074 @end menu
24075
24076 @node Native
24077 @section Native
24078
24079 This section describes details specific to particular native
24080 configurations.
24081
24082 @menu
24083 * BSD libkvm Interface:: Debugging BSD kernel memory images
24084 * Process Information:: Process information
24085 * DJGPP Native:: Features specific to the DJGPP port
24086 * Cygwin Native:: Features specific to the Cygwin port
24087 * Hurd Native:: Features specific to @sc{gnu} Hurd
24088 * Darwin:: Features specific to Darwin
24089 * FreeBSD:: Features specific to FreeBSD
24090 @end menu
24091
24092 @node BSD libkvm Interface
24093 @subsection BSD libkvm Interface
24094
24095 @cindex libkvm
24096 @cindex kernel memory image
24097 @cindex kernel crash dump
24098
24099 BSD-derived systems (FreeBSD/NetBSD/OpenBSD) have a kernel memory
24100 interface that provides a uniform interface for accessing kernel virtual
24101 memory images, including live systems and crash dumps. @value{GDBN}
24102 uses this interface to allow you to debug live kernels and kernel crash
24103 dumps on many native BSD configurations. This is implemented as a
24104 special @code{kvm} debugging target. For debugging a live system, load
24105 the currently running kernel into @value{GDBN} and connect to the
24106 @code{kvm} target:
24107
24108 @smallexample
24109 (@value{GDBP}) @b{target kvm}
24110 @end smallexample
24111
24112 For debugging crash dumps, provide the file name of the crash dump as an
24113 argument:
24114
24115 @smallexample
24116 (@value{GDBP}) @b{target kvm /var/crash/bsd.0}
24117 @end smallexample
24118
24119 Once connected to the @code{kvm} target, the following commands are
24120 available:
24121
24122 @table @code
24123 @kindex kvm
24124 @item kvm pcb
24125 Set current context from the @dfn{Process Control Block} (PCB) address.
24126
24127 @item kvm proc
24128 Set current context from proc address. This command isn't available on
24129 modern FreeBSD systems.
24130 @end table
24131
24132 @node Process Information
24133 @subsection Process Information
24134 @cindex /proc
24135 @cindex examine process image
24136 @cindex process info via @file{/proc}
24137
24138 Some operating systems provide interfaces to fetch additional
24139 information about running processes beyond memory and per-thread
24140 register state. If @value{GDBN} is configured for an operating system
24141 with a supported interface, the command @code{info proc} is available
24142 to report information about the process running your program, or about
24143 any process running on your system.
24144
24145 One supported interface is a facility called @samp{/proc} that can be
24146 used to examine the image of a running process using file-system
24147 subroutines. This facility is supported on @sc{gnu}/Linux and Solaris
24148 systems.
24149
24150 On FreeBSD and NetBSD systems, system control nodes are used to query
24151 process information.
24152
24153 In addition, some systems may provide additional process information
24154 in core files. Note that a core file may include a subset of the
24155 information available from a live process. Process information is
24156 currently available from cores created on @sc{gnu}/Linux and FreeBSD
24157 systems.
24158
24159 @table @code
24160 @kindex info proc
24161 @cindex process ID
24162 @item info proc
24163 @itemx info proc @var{process-id}
24164 Summarize available information about a process. If a
24165 process ID is specified by @var{process-id}, display information about
24166 that process; otherwise display information about the program being
24167 debugged. The summary includes the debugged process ID, the command
24168 line used to invoke it, its current working directory, and its
24169 executable file's absolute file name.
24170
24171 On some systems, @var{process-id} can be of the form
24172 @samp{[@var{pid}]/@var{tid}} which specifies a certain thread ID
24173 within a process. If the optional @var{pid} part is missing, it means
24174 a thread from the process being debugged (the leading @samp{/} still
24175 needs to be present, or else @value{GDBN} will interpret the number as
24176 a process ID rather than a thread ID).
24177
24178 @item info proc cmdline
24179 @cindex info proc cmdline
24180 Show the original command line of the process. This command is
24181 supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
24182
24183 @item info proc cwd
24184 @cindex info proc cwd
24185 Show the current working directory of the process. This command is
24186 supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
24187
24188 @item info proc exe
24189 @cindex info proc exe
24190 Show the name of executable of the process. This command is supported
24191 on @sc{gnu}/Linux, FreeBSD and NetBSD.
24192
24193 @item info proc files
24194 @cindex info proc files
24195 Show the file descriptors open by the process. For each open file
24196 descriptor, @value{GDBN} shows its number, type (file, directory,
24197 character device, socket), file pointer offset, and the name of the
24198 resource open on the descriptor. The resource name can be a file name
24199 (for files, directories, and devices) or a protocol followed by socket
24200 address (for network connections). This command is supported on
24201 FreeBSD.
24202
24203 This example shows the open file descriptors for a process using a
24204 tty for standard input and output as well as two network sockets:
24205
24206 @smallexample
24207 (gdb) info proc files 22136
24208 process 22136
24209 Open files:
24210
24211 FD Type Offset Flags Name
24212 text file - r-------- /usr/bin/ssh
24213 ctty chr - rw------- /dev/pts/20
24214 cwd dir - r-------- /usr/home/john
24215 root dir - r-------- /
24216 0 chr 0x32933a4 rw------- /dev/pts/20
24217 1 chr 0x32933a4 rw------- /dev/pts/20
24218 2 chr 0x32933a4 rw------- /dev/pts/20
24219 3 socket 0x0 rw----n-- tcp4 10.0.1.2:53014 -> 10.0.1.10:22
24220 4 socket 0x0 rw------- unix stream:/tmp/ssh-FIt89oAzOn5f/agent.2456
24221 @end smallexample
24222
24223 @item info proc mappings
24224 @cindex memory address space mappings
24225 Report the memory address space ranges accessible in a process. On
24226 Solaris, FreeBSD and NetBSD systems, each memory range includes information
24227 on whether the process has read, write, or execute access rights to each
24228 range. On @sc{gnu}/Linux, FreeBSD and NetBSD systems, each memory range
24229 includes the object file which is mapped to that range.
24230
24231 @item info proc stat
24232 @itemx info proc status
24233 @cindex process detailed status information
24234 Show additional process-related information, including the user ID and
24235 group ID; virtual memory usage; the signals that are pending, blocked,
24236 and ignored; its TTY; its consumption of system and user time; its
24237 stack size; its @samp{nice} value; etc. These commands are supported
24238 on @sc{gnu}/Linux, FreeBSD and NetBSD.
24239
24240 For @sc{gnu}/Linux systems, see the @samp{proc} man page for more
24241 information (type @kbd{man 5 proc} from your shell prompt).
24242
24243 For FreeBSD and NetBSD systems, @code{info proc stat} is an alias for
24244 @code{info proc status}.
24245
24246 @item info proc all
24247 Show all the information about the process described under all of the
24248 above @code{info proc} subcommands.
24249
24250 @ignore
24251 @comment These sub-options of 'info proc' were not included when
24252 @comment procfs.c was re-written. Keep their descriptions around
24253 @comment against the day when someone finds the time to put them back in.
24254 @kindex info proc times
24255 @item info proc times
24256 Starting time, user CPU time, and system CPU time for your program and
24257 its children.
24258
24259 @kindex info proc id
24260 @item info proc id
24261 Report on the process IDs related to your program: its own process ID,
24262 the ID of its parent, the process group ID, and the session ID.
24263 @end ignore
24264
24265 @item set procfs-trace
24266 @kindex set procfs-trace
24267 @cindex @code{procfs} API calls
24268 This command enables and disables tracing of @code{procfs} API calls.
24269
24270 @item show procfs-trace
24271 @kindex show procfs-trace
24272 Show the current state of @code{procfs} API call tracing.
24273
24274 @item set procfs-file @var{file}
24275 @kindex set procfs-file
24276 Tell @value{GDBN} to write @code{procfs} API trace to the named
24277 @var{file}. @value{GDBN} appends the trace info to the previous
24278 contents of the file. The default is to display the trace on the
24279 standard output.
24280
24281 @item show procfs-file
24282 @kindex show procfs-file
24283 Show the file to which @code{procfs} API trace is written.
24284
24285 @item proc-trace-entry
24286 @itemx proc-trace-exit
24287 @itemx proc-untrace-entry
24288 @itemx proc-untrace-exit
24289 @kindex proc-trace-entry
24290 @kindex proc-trace-exit
24291 @kindex proc-untrace-entry
24292 @kindex proc-untrace-exit
24293 These commands enable and disable tracing of entries into and exits
24294 from the @code{syscall} interface.
24295
24296 @item info pidlist
24297 @kindex info pidlist
24298 @cindex process list, QNX Neutrino
24299 For QNX Neutrino only, this command displays the list of all the
24300 processes and all the threads within each process.
24301
24302 @item info meminfo
24303 @kindex info meminfo
24304 @cindex mapinfo list, QNX Neutrino
24305 For QNX Neutrino only, this command displays the list of all mapinfos.
24306 @end table
24307
24308 @node DJGPP Native
24309 @subsection Features for Debugging @sc{djgpp} Programs
24310 @cindex @sc{djgpp} debugging
24311 @cindex native @sc{djgpp} debugging
24312 @cindex MS-DOS-specific commands
24313
24314 @cindex DPMI
24315 @sc{djgpp} is a port of the @sc{gnu} development tools to MS-DOS and
24316 MS-Windows. @sc{djgpp} programs are 32-bit protected-mode programs
24317 that use the @dfn{DPMI} (DOS Protected-Mode Interface) API to run on
24318 top of real-mode DOS systems and their emulations.
24319
24320 @value{GDBN} supports native debugging of @sc{djgpp} programs, and
24321 defines a few commands specific to the @sc{djgpp} port. This
24322 subsection describes those commands.
24323
24324 @table @code
24325 @kindex info dos
24326 @item info dos
24327 This is a prefix of @sc{djgpp}-specific commands which print
24328 information about the target system and important OS structures.
24329
24330 @kindex sysinfo
24331 @cindex MS-DOS system info
24332 @cindex free memory information (MS-DOS)
24333 @item info dos sysinfo
24334 This command displays assorted information about the underlying
24335 platform: the CPU type and features, the OS version and flavor, the
24336 DPMI version, and the available conventional and DPMI memory.
24337
24338 @cindex GDT
24339 @cindex LDT
24340 @cindex IDT
24341 @cindex segment descriptor tables
24342 @cindex descriptor tables display
24343 @item info dos gdt
24344 @itemx info dos ldt
24345 @itemx info dos idt
24346 These 3 commands display entries from, respectively, Global, Local,
24347 and Interrupt Descriptor Tables (GDT, LDT, and IDT). The descriptor
24348 tables are data structures which store a descriptor for each segment
24349 that is currently in use. The segment's selector is an index into a
24350 descriptor table; the table entry for that index holds the
24351 descriptor's base address and limit, and its attributes and access
24352 rights.
24353
24354 A typical @sc{djgpp} program uses 3 segments: a code segment, a data
24355 segment (used for both data and the stack), and a DOS segment (which
24356 allows access to DOS/BIOS data structures and absolute addresses in
24357 conventional memory). However, the DPMI host will usually define
24358 additional segments in order to support the DPMI environment.
24359
24360 @cindex garbled pointers
24361 These commands allow to display entries from the descriptor tables.
24362 Without an argument, all entries from the specified table are
24363 displayed. An argument, which should be an integer expression, means
24364 display a single entry whose index is given by the argument. For
24365 example, here's a convenient way to display information about the
24366 debugged program's data segment:
24367
24368 @smallexample
24369 @exdent @code{(@value{GDBP}) info dos ldt $ds}
24370 @exdent @code{0x13f: base=0x11970000 limit=0x0009ffff 32-Bit Data (Read/Write, Exp-up)}
24371 @end smallexample
24372
24373 @noindent
24374 This comes in handy when you want to see whether a pointer is outside
24375 the data segment's limit (i.e.@: @dfn{garbled}).
24376
24377 @cindex page tables display (MS-DOS)
24378 @item info dos pde
24379 @itemx info dos pte
24380 These two commands display entries from, respectively, the Page
24381 Directory and the Page Tables. Page Directories and Page Tables are
24382 data structures which control how virtual memory addresses are mapped
24383 into physical addresses. A Page Table includes an entry for every
24384 page of memory that is mapped into the program's address space; there
24385 may be several Page Tables, each one holding up to 4096 entries. A
24386 Page Directory has up to 4096 entries, one each for every Page Table
24387 that is currently in use.
24388
24389 Without an argument, @kbd{info dos pde} displays the entire Page
24390 Directory, and @kbd{info dos pte} displays all the entries in all of
24391 the Page Tables. An argument, an integer expression, given to the
24392 @kbd{info dos pde} command means display only that entry from the Page
24393 Directory table. An argument given to the @kbd{info dos pte} command
24394 means display entries from a single Page Table, the one pointed to by
24395 the specified entry in the Page Directory.
24396
24397 @cindex direct memory access (DMA) on MS-DOS
24398 These commands are useful when your program uses @dfn{DMA} (Direct
24399 Memory Access), which needs physical addresses to program the DMA
24400 controller.
24401
24402 These commands are supported only with some DPMI servers.
24403
24404 @cindex physical address from linear address
24405 @item info dos address-pte @var{addr}
24406 This command displays the Page Table entry for a specified linear
24407 address. The argument @var{addr} is a linear address which should
24408 already have the appropriate segment's base address added to it,
24409 because this command accepts addresses which may belong to @emph{any}
24410 segment. For example, here's how to display the Page Table entry for
24411 the page where a variable @code{i} is stored:
24412
24413 @smallexample
24414 @exdent @code{(@value{GDBP}) info dos address-pte __djgpp_base_address + (char *)&i}
24415 @exdent @code{Page Table entry for address 0x11a00d30:}
24416 @exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
24417 @end smallexample
24418
24419 @noindent
24420 This says that @code{i} is stored at offset @code{0xd30} from the page
24421 whose physical base address is @code{0x02698000}, and shows all the
24422 attributes of that page.
24423
24424 Note that you must cast the addresses of variables to a @code{char *},
24425 since otherwise the value of @code{__djgpp_base_address}, the base
24426 address of all variables and functions in a @sc{djgpp} program, will
24427 be added using the rules of C pointer arithmetics: if @code{i} is
24428 declared an @code{int}, @value{GDBN} will add 4 times the value of
24429 @code{__djgpp_base_address} to the address of @code{i}.
24430
24431 Here's another example, it displays the Page Table entry for the
24432 transfer buffer:
24433
24434 @smallexample
24435 @exdent @code{(@value{GDBP}) info dos address-pte *((unsigned *)&_go32_info_block + 3)}
24436 @exdent @code{Page Table entry for address 0x29110:}
24437 @exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
24438 @end smallexample
24439
24440 @noindent
24441 (The @code{+ 3} offset is because the transfer buffer's address is the
24442 3rd member of the @code{_go32_info_block} structure.) The output
24443 clearly shows that this DPMI server maps the addresses in conventional
24444 memory 1:1, i.e.@: the physical (@code{0x00029000} + @code{0x110}) and
24445 linear (@code{0x29110}) addresses are identical.
24446
24447 This command is supported only with some DPMI servers.
24448 @end table
24449
24450 @cindex DOS serial data link, remote debugging
24451 In addition to native debugging, the DJGPP port supports remote
24452 debugging via a serial data link. The following commands are specific
24453 to remote serial debugging in the DJGPP port of @value{GDBN}.
24454
24455 @table @code
24456 @kindex set com1base
24457 @kindex set com1irq
24458 @kindex set com2base
24459 @kindex set com2irq
24460 @kindex set com3base
24461 @kindex set com3irq
24462 @kindex set com4base
24463 @kindex set com4irq
24464 @item set com1base @var{addr}
24465 This command sets the base I/O port address of the @file{COM1} serial
24466 port.
24467
24468 @item set com1irq @var{irq}
24469 This command sets the @dfn{Interrupt Request} (@code{IRQ}) line to use
24470 for the @file{COM1} serial port.
24471
24472 There are similar commands @samp{set com2base}, @samp{set com3irq},
24473 etc.@: for setting the port address and the @code{IRQ} lines for the
24474 other 3 COM ports.
24475
24476 @kindex show com1base
24477 @kindex show com1irq
24478 @kindex show com2base
24479 @kindex show com2irq
24480 @kindex show com3base
24481 @kindex show com3irq
24482 @kindex show com4base
24483 @kindex show com4irq
24484 The related commands @samp{show com1base}, @samp{show com1irq} etc.@:
24485 display the current settings of the base address and the @code{IRQ}
24486 lines used by the COM ports.
24487
24488 @item info serial
24489 @kindex info serial
24490 @cindex DOS serial port status
24491 This command prints the status of the 4 DOS serial ports. For each
24492 port, it prints whether it's active or not, its I/O base address and
24493 IRQ number, whether it uses a 16550-style FIFO, its baudrate, and the
24494 counts of various errors encountered so far.
24495 @end table
24496
24497
24498 @node Cygwin Native
24499 @subsection Features for Debugging MS Windows PE Executables
24500 @cindex MS Windows debugging
24501 @cindex native Cygwin debugging
24502 @cindex Cygwin-specific commands
24503
24504 @value{GDBN} supports native debugging of MS Windows programs, including
24505 DLLs with and without symbolic debugging information.
24506
24507 @cindex Ctrl-BREAK, MS-Windows
24508 @cindex interrupt debuggee on MS-Windows
24509 MS-Windows programs that call @code{SetConsoleMode} to switch off the
24510 special meaning of the @samp{Ctrl-C} keystroke cannot be interrupted
24511 by typing @kbd{C-c}. For this reason, @value{GDBN} on MS-Windows
24512 supports @kbd{C-@key{BREAK}} as an alternative interrupt key
24513 sequence, which can be used to interrupt the debuggee even if it
24514 ignores @kbd{C-c}.
24515
24516 There are various additional Cygwin-specific commands, described in
24517 this section. Working with DLLs that have no debugging symbols is
24518 described in @ref{Non-debug DLL Symbols}.
24519
24520 @table @code
24521 @kindex info w32
24522 @item info w32
24523 This is a prefix of MS Windows-specific commands which print
24524 information about the target system and important OS structures.
24525
24526 @item info w32 selector
24527 This command displays information returned by
24528 the Win32 API @code{GetThreadSelectorEntry} function.
24529 It takes an optional argument that is evaluated to
24530 a long value to give the information about this given selector.
24531 Without argument, this command displays information
24532 about the six segment registers.
24533
24534 @item info w32 thread-information-block
24535 This command displays thread specific information stored in the
24536 Thread Information Block (readable on the X86 CPU family using @code{$fs}
24537 selector for 32-bit programs and @code{$gs} for 64-bit programs).
24538
24539 @kindex signal-event
24540 @item signal-event @var{id}
24541 This command signals an event with user-provided @var{id}. Used to resume
24542 crashing process when attached to it using MS-Windows JIT debugging (AeDebug).
24543
24544 To use it, create or edit the following keys in
24545 @code{HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug} and/or
24546 @code{HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug}
24547 (for x86_64 versions):
24548
24549 @itemize @minus
24550 @item
24551 @code{Debugger} (REG_SZ) --- a command to launch the debugger.
24552 Suggested command is: @code{@var{fully-qualified-path-to-gdb.exe} -ex
24553 "attach %ld" -ex "signal-event %ld" -ex "continue"}.
24554
24555 The first @code{%ld} will be replaced by the process ID of the
24556 crashing process, the second @code{%ld} will be replaced by the ID of
24557 the event that blocks the crashing process, waiting for @value{GDBN}
24558 to attach.
24559
24560 @item
24561 @code{Auto} (REG_SZ) --- either @code{1} or @code{0}. @code{1} will
24562 make the system run debugger specified by the Debugger key
24563 automatically, @code{0} will cause a dialog box with ``OK'' and
24564 ``Cancel'' buttons to appear, which allows the user to either
24565 terminate the crashing process (OK) or debug it (Cancel).
24566 @end itemize
24567
24568 @kindex set cygwin-exceptions
24569 @cindex debugging the Cygwin DLL
24570 @cindex Cygwin DLL, debugging
24571 @item set cygwin-exceptions @var{mode}
24572 If @var{mode} is @code{on}, @value{GDBN} will break on exceptions that
24573 happen inside the Cygwin DLL. If @var{mode} is @code{off},
24574 @value{GDBN} will delay recognition of exceptions, and may ignore some
24575 exceptions which seem to be caused by internal Cygwin DLL
24576 ``bookkeeping''. This option is meant primarily for debugging the
24577 Cygwin DLL itself; the default value is @code{off} to avoid annoying
24578 @value{GDBN} users with false @code{SIGSEGV} signals.
24579
24580 @kindex show cygwin-exceptions
24581 @item show cygwin-exceptions
24582 Displays whether @value{GDBN} will break on exceptions that happen
24583 inside the Cygwin DLL itself.
24584
24585 @kindex set new-console
24586 @item set new-console @var{mode}
24587 If @var{mode} is @code{on} the debuggee will
24588 be started in a new console on next start.
24589 If @var{mode} is @code{off}, the debuggee will
24590 be started in the same console as the debugger.
24591
24592 @kindex show new-console
24593 @item show new-console
24594 Displays whether a new console is used
24595 when the debuggee is started.
24596
24597 @kindex set new-group
24598 @item set new-group @var{mode}
24599 This boolean value controls whether the debuggee should
24600 start a new group or stay in the same group as the debugger.
24601 This affects the way the Windows OS handles
24602 @samp{Ctrl-C}.
24603
24604 @kindex show new-group
24605 @item show new-group
24606 Displays current value of new-group boolean.
24607
24608 @kindex set debugevents
24609 @item set debugevents
24610 This boolean value adds debug output concerning kernel events related
24611 to the debuggee seen by the debugger. This includes events that
24612 signal thread and process creation and exit, DLL loading and
24613 unloading, console interrupts, and debugging messages produced by the
24614 Windows @code{OutputDebugString} API call.
24615
24616 @kindex set debugexec
24617 @item set debugexec
24618 This boolean value adds debug output concerning execute events
24619 (such as resume thread) seen by the debugger.
24620
24621 @kindex set debugexceptions
24622 @item set debugexceptions
24623 This boolean value adds debug output concerning exceptions in the
24624 debuggee seen by the debugger.
24625
24626 @kindex set debugmemory
24627 @item set debugmemory
24628 This boolean value adds debug output concerning debuggee memory reads
24629 and writes by the debugger.
24630
24631 @kindex set shell
24632 @item set shell
24633 This boolean values specifies whether the debuggee is called
24634 via a shell or directly (default value is on).
24635
24636 @kindex show shell
24637 @item show shell
24638 Displays if the debuggee will be started with a shell.
24639
24640 @end table
24641
24642 @menu
24643 * Non-debug DLL Symbols:: Support for DLLs without debugging symbols
24644 @end menu
24645
24646 @node Non-debug DLL Symbols
24647 @subsubsection Support for DLLs without Debugging Symbols
24648 @cindex DLLs with no debugging symbols
24649 @cindex Minimal symbols and DLLs
24650
24651 Very often on windows, some of the DLLs that your program relies on do
24652 not include symbolic debugging information (for example,
24653 @file{kernel32.dll}). When @value{GDBN} doesn't recognize any debugging
24654 symbols in a DLL, it relies on the minimal amount of symbolic
24655 information contained in the DLL's export table. This section
24656 describes working with such symbols, known internally to @value{GDBN} as
24657 ``minimal symbols''.
24658
24659 Note that before the debugged program has started execution, no DLLs
24660 will have been loaded. The easiest way around this problem is simply to
24661 start the program --- either by setting a breakpoint or letting the
24662 program run once to completion.
24663
24664 @subsubsection DLL Name Prefixes
24665
24666 In keeping with the naming conventions used by the Microsoft debugging
24667 tools, DLL export symbols are made available with a prefix based on the
24668 DLL name, for instance @code{KERNEL32!CreateFileA}. The plain name is
24669 also entered into the symbol table, so @code{CreateFileA} is often
24670 sufficient. In some cases there will be name clashes within a program
24671 (particularly if the executable itself includes full debugging symbols)
24672 necessitating the use of the fully qualified name when referring to the
24673 contents of the DLL. Use single-quotes around the name to avoid the
24674 exclamation mark (``!'') being interpreted as a language operator.
24675
24676 Note that the internal name of the DLL may be all upper-case, even
24677 though the file name of the DLL is lower-case, or vice-versa. Since
24678 symbols within @value{GDBN} are @emph{case-sensitive} this may cause
24679 some confusion. If in doubt, try the @code{info functions} and
24680 @code{info variables} commands or even @code{maint print msymbols}
24681 (@pxref{Symbols}). Here's an example:
24682
24683 @smallexample
24684 (@value{GDBP}) info function CreateFileA
24685 All functions matching regular expression "CreateFileA":
24686
24687 Non-debugging symbols:
24688 0x77e885f4 CreateFileA
24689 0x77e885f4 KERNEL32!CreateFileA
24690 @end smallexample
24691
24692 @smallexample
24693 (@value{GDBP}) info function !
24694 All functions matching regular expression "!":
24695
24696 Non-debugging symbols:
24697 0x6100114c cygwin1!__assert
24698 0x61004034 cygwin1!_dll_crt0@@0
24699 0x61004240 cygwin1!dll_crt0(per_process *)
24700 [etc...]
24701 @end smallexample
24702
24703 @subsubsection Working with Minimal Symbols
24704
24705 Symbols extracted from a DLL's export table do not contain very much
24706 type information. All that @value{GDBN} can do is guess whether a symbol
24707 refers to a function or variable depending on the linker section that
24708 contains the symbol. Also note that the actual contents of the memory
24709 contained in a DLL are not available unless the program is running. This
24710 means that you cannot examine the contents of a variable or disassemble
24711 a function within a DLL without a running program.
24712
24713 Variables are generally treated as pointers and dereferenced
24714 automatically. For this reason, it is often necessary to prefix a
24715 variable name with the address-of operator (``&'') and provide explicit
24716 type information in the command. Here's an example of the type of
24717 problem:
24718
24719 @smallexample
24720 (@value{GDBP}) print 'cygwin1!__argv'
24721 'cygwin1!__argv' has unknown type; cast it to its declared type
24722 @end smallexample
24723
24724 @smallexample
24725 (@value{GDBP}) x 'cygwin1!__argv'
24726 'cygwin1!__argv' has unknown type; cast it to its declared type
24727 @end smallexample
24728
24729 And two possible solutions:
24730
24731 @smallexample
24732 (@value{GDBP}) print ((char **)'cygwin1!__argv')[0]
24733 $2 = 0x22fd98 "/cygdrive/c/mydirectory/myprogram"
24734 @end smallexample
24735
24736 @smallexample
24737 (@value{GDBP}) x/2x &'cygwin1!__argv'
24738 0x610c0aa8 <cygwin1!__argv>: 0x10021608 0x00000000
24739 (@value{GDBP}) x/x 0x10021608
24740 0x10021608: 0x0022fd98
24741 (@value{GDBP}) x/s 0x0022fd98
24742 0x22fd98: "/cygdrive/c/mydirectory/myprogram"
24743 @end smallexample
24744
24745 Setting a break point within a DLL is possible even before the program
24746 starts execution. However, under these circumstances, @value{GDBN} can't
24747 examine the initial instructions of the function in order to skip the
24748 function's frame set-up code. You can work around this by using ``*&''
24749 to set the breakpoint at a raw memory address:
24750
24751 @smallexample
24752 (@value{GDBP}) break *&'python22!PyOS_Readline'
24753 Breakpoint 1 at 0x1e04eff0
24754 @end smallexample
24755
24756 The author of these extensions is not entirely convinced that setting a
24757 break point within a shared DLL like @file{kernel32.dll} is completely
24758 safe.
24759
24760 @node Hurd Native
24761 @subsection Commands Specific to @sc{gnu} Hurd Systems
24762 @cindex @sc{gnu} Hurd debugging
24763
24764 This subsection describes @value{GDBN} commands specific to the
24765 @sc{gnu} Hurd native debugging.
24766
24767 @table @code
24768 @item set signals
24769 @itemx set sigs
24770 @kindex set signals@r{, Hurd command}
24771 @kindex set sigs@r{, Hurd command}
24772 This command toggles the state of inferior signal interception by
24773 @value{GDBN}. Mach exceptions, such as breakpoint traps, are not
24774 affected by this command. @code{sigs} is a shorthand alias for
24775 @code{signals}.
24776
24777 @item show signals
24778 @itemx show sigs
24779 @kindex show signals@r{, Hurd command}
24780 @kindex show sigs@r{, Hurd command}
24781 Show the current state of intercepting inferior's signals.
24782
24783 @item set signal-thread
24784 @itemx set sigthread
24785 @kindex set signal-thread
24786 @kindex set sigthread
24787 This command tells @value{GDBN} which thread is the @code{libc} signal
24788 thread. That thread is run when a signal is delivered to a running
24789 process. @code{set sigthread} is the shorthand alias of @code{set
24790 signal-thread}.
24791
24792 @item show signal-thread
24793 @itemx show sigthread
24794 @kindex show signal-thread
24795 @kindex show sigthread
24796 These two commands show which thread will run when the inferior is
24797 delivered a signal.
24798
24799 @item set stopped
24800 @kindex set stopped@r{, Hurd command}
24801 This commands tells @value{GDBN} that the inferior process is stopped,
24802 as with the @code{SIGSTOP} signal. The stopped process can be
24803 continued by delivering a signal to it.
24804
24805 @item show stopped
24806 @kindex show stopped@r{, Hurd command}
24807 This command shows whether @value{GDBN} thinks the debuggee is
24808 stopped.
24809
24810 @item set exceptions
24811 @kindex set exceptions@r{, Hurd command}
24812 Use this command to turn off trapping of exceptions in the inferior.
24813 When exception trapping is off, neither breakpoints nor
24814 single-stepping will work. To restore the default, set exception
24815 trapping on.
24816
24817 @item show exceptions
24818 @kindex show exceptions@r{, Hurd command}
24819 Show the current state of trapping exceptions in the inferior.
24820
24821 @item set task pause
24822 @kindex set task@r{, Hurd commands}
24823 @cindex task attributes (@sc{gnu} Hurd)
24824 @cindex pause current task (@sc{gnu} Hurd)
24825 This command toggles task suspension when @value{GDBN} has control.
24826 Setting it to on takes effect immediately, and the task is suspended
24827 whenever @value{GDBN} gets control. Setting it to off will take
24828 effect the next time the inferior is continued. If this option is set
24829 to off, you can use @code{set thread default pause on} or @code{set
24830 thread pause on} (see below) to pause individual threads.
24831
24832 @item show task pause
24833 @kindex show task@r{, Hurd commands}
24834 Show the current state of task suspension.
24835
24836 @item set task detach-suspend-count
24837 @cindex task suspend count
24838 @cindex detach from task, @sc{gnu} Hurd
24839 This command sets the suspend count the task will be left with when
24840 @value{GDBN} detaches from it.
24841
24842 @item show task detach-suspend-count
24843 Show the suspend count the task will be left with when detaching.
24844
24845 @item set task exception-port
24846 @itemx set task excp
24847 @cindex task exception port, @sc{gnu} Hurd
24848 This command sets the task exception port to which @value{GDBN} will
24849 forward exceptions. The argument should be the value of the @dfn{send
24850 rights} of the task. @code{set task excp} is a shorthand alias.
24851
24852 @item set noninvasive
24853 @cindex noninvasive task options
24854 This command switches @value{GDBN} to a mode that is the least
24855 invasive as far as interfering with the inferior is concerned. This
24856 is the same as using @code{set task pause}, @code{set exceptions}, and
24857 @code{set signals} to values opposite to the defaults.
24858
24859 @item info send-rights
24860 @itemx info receive-rights
24861 @itemx info port-rights
24862 @itemx info port-sets
24863 @itemx info dead-names
24864 @itemx info ports
24865 @itemx info psets
24866 @cindex send rights, @sc{gnu} Hurd
24867 @cindex receive rights, @sc{gnu} Hurd
24868 @cindex port rights, @sc{gnu} Hurd
24869 @cindex port sets, @sc{gnu} Hurd
24870 @cindex dead names, @sc{gnu} Hurd
24871 These commands display information about, respectively, send rights,
24872 receive rights, port rights, port sets, and dead names of a task.
24873 There are also shorthand aliases: @code{info ports} for @code{info
24874 port-rights} and @code{info psets} for @code{info port-sets}.
24875
24876 @item set thread pause
24877 @kindex set thread@r{, Hurd command}
24878 @cindex thread properties, @sc{gnu} Hurd
24879 @cindex pause current thread (@sc{gnu} Hurd)
24880 This command toggles current thread suspension when @value{GDBN} has
24881 control. Setting it to on takes effect immediately, and the current
24882 thread is suspended whenever @value{GDBN} gets control. Setting it to
24883 off will take effect the next time the inferior is continued.
24884 Normally, this command has no effect, since when @value{GDBN} has
24885 control, the whole task is suspended. However, if you used @code{set
24886 task pause off} (see above), this command comes in handy to suspend
24887 only the current thread.
24888
24889 @item show thread pause
24890 @kindex show thread@r{, Hurd command}
24891 This command shows the state of current thread suspension.
24892
24893 @item set thread run
24894 This command sets whether the current thread is allowed to run.
24895
24896 @item show thread run
24897 Show whether the current thread is allowed to run.
24898
24899 @item set thread detach-suspend-count
24900 @cindex thread suspend count, @sc{gnu} Hurd
24901 @cindex detach from thread, @sc{gnu} Hurd
24902 This command sets the suspend count @value{GDBN} will leave on a
24903 thread when detaching. This number is relative to the suspend count
24904 found by @value{GDBN} when it notices the thread; use @code{set thread
24905 takeover-suspend-count} to force it to an absolute value.
24906
24907 @item show thread detach-suspend-count
24908 Show the suspend count @value{GDBN} will leave on the thread when
24909 detaching.
24910
24911 @item set thread exception-port
24912 @itemx set thread excp
24913 Set the thread exception port to which to forward exceptions. This
24914 overrides the port set by @code{set task exception-port} (see above).
24915 @code{set thread excp} is the shorthand alias.
24916
24917 @item set thread takeover-suspend-count
24918 Normally, @value{GDBN}'s thread suspend counts are relative to the
24919 value @value{GDBN} finds when it notices each thread. This command
24920 changes the suspend counts to be absolute instead.
24921
24922 @item set thread default
24923 @itemx show thread default
24924 @cindex thread default settings, @sc{gnu} Hurd
24925 Each of the above @code{set thread} commands has a @code{set thread
24926 default} counterpart (e.g., @code{set thread default pause}, @code{set
24927 thread default exception-port}, etc.). The @code{thread default}
24928 variety of commands sets the default thread properties for all
24929 threads; you can then change the properties of individual threads with
24930 the non-default commands.
24931 @end table
24932
24933 @node Darwin
24934 @subsection Darwin
24935 @cindex Darwin
24936
24937 @value{GDBN} provides the following commands specific to the Darwin target:
24938
24939 @table @code
24940 @item set debug darwin @var{num}
24941 @kindex set debug darwin
24942 When set to a non zero value, enables debugging messages specific to
24943 the Darwin support. Higher values produce more verbose output.
24944
24945 @item show debug darwin
24946 @kindex show debug darwin
24947 Show the current state of Darwin messages.
24948
24949 @item set debug mach-o @var{num}
24950 @kindex set debug mach-o
24951 When set to a non zero value, enables debugging messages while
24952 @value{GDBN} is reading Darwin object files. (@dfn{Mach-O} is the
24953 file format used on Darwin for object and executable files.) Higher
24954 values produce more verbose output. This is a command to diagnose
24955 problems internal to @value{GDBN} and should not be needed in normal
24956 usage.
24957
24958 @item show debug mach-o
24959 @kindex show debug mach-o
24960 Show the current state of Mach-O file messages.
24961
24962 @item set mach-exceptions on
24963 @itemx set mach-exceptions off
24964 @kindex set mach-exceptions
24965 On Darwin, faults are first reported as a Mach exception and are then
24966 mapped to a Posix signal. Use this command to turn on trapping of
24967 Mach exceptions in the inferior. This might be sometimes useful to
24968 better understand the cause of a fault. The default is off.
24969
24970 @item show mach-exceptions
24971 @kindex show mach-exceptions
24972 Show the current state of exceptions trapping.
24973 @end table
24974
24975 @node FreeBSD
24976 @subsection FreeBSD
24977 @cindex FreeBSD
24978
24979 When the ABI of a system call is changed in the FreeBSD kernel, this
24980 is implemented by leaving a compatibility system call using the old
24981 ABI at the existing number and allocating a new system call number for
24982 the version using the new ABI. As a convenience, when a system call
24983 is caught by name (@pxref{catch syscall}), compatibility system calls
24984 are also caught.
24985
24986 For example, FreeBSD 12 introduced a new variant of the @code{kevent}
24987 system call and catching the @code{kevent} system call by name catches
24988 both variants:
24989
24990 @smallexample
24991 (@value{GDBP}) catch syscall kevent
24992 Catchpoint 1 (syscalls 'freebsd11_kevent' [363] 'kevent' [560])
24993 (@value{GDBP})
24994 @end smallexample
24995
24996
24997 @node Embedded OS
24998 @section Embedded Operating Systems
24999
25000 This section describes configurations involving the debugging of
25001 embedded operating systems that are available for several different
25002 architectures.
25003
25004 @value{GDBN} includes the ability to debug programs running on
25005 various real-time operating systems.
25006
25007 @node Embedded Processors
25008 @section Embedded Processors
25009
25010 This section goes into details specific to particular embedded
25011 configurations.
25012
25013 @cindex send command to simulator
25014 Whenever a specific embedded processor has a simulator, @value{GDBN}
25015 allows to send an arbitrary command to the simulator.
25016
25017 @table @code
25018 @item sim @var{command}
25019 @kindex sim@r{, a command}
25020 Send an arbitrary @var{command} string to the simulator. Consult the
25021 documentation for the specific simulator in use for information about
25022 acceptable commands.
25023 @end table
25024
25025
25026 @menu
25027 * ARC:: Synopsys ARC
25028 * ARM:: ARM
25029 * BPF:: eBPF
25030 * M68K:: Motorola M68K
25031 * MicroBlaze:: Xilinx MicroBlaze
25032 * MIPS Embedded:: MIPS Embedded
25033 * OpenRISC 1000:: OpenRISC 1000 (or1k)
25034 * PowerPC Embedded:: PowerPC Embedded
25035 * AVR:: Atmel AVR
25036 * CRIS:: CRIS
25037 * Super-H:: Renesas Super-H
25038 @end menu
25039
25040 @node ARC
25041 @subsection Synopsys ARC
25042 @cindex Synopsys ARC
25043 @cindex ARC specific commands
25044 @cindex ARC600
25045 @cindex ARC700
25046 @cindex ARC EM
25047 @cindex ARC HS
25048
25049 @value{GDBN} provides the following ARC-specific commands:
25050
25051 @table @code
25052 @item set debug arc
25053 @kindex set debug arc
25054 Control the level of ARC specific debug messages. Use 0 for no messages (the
25055 default), 1 for debug messages, and 2 for even more debug messages.
25056
25057 @item show debug arc
25058 @kindex show debug arc
25059 Show the level of ARC specific debugging in operation.
25060
25061 @item maint print arc arc-instruction @var{address}
25062 @kindex maint print arc arc-instruction
25063 Print internal disassembler information about instruction at a given address.
25064
25065 @end table
25066
25067 @node ARM
25068 @subsection ARM
25069
25070 @value{GDBN} provides the following ARM-specific commands:
25071
25072 @table @code
25073 @item set arm disassembler
25074 @kindex set arm
25075 This commands selects from a list of disassembly styles. The
25076 @code{"std"} style is the standard style.
25077
25078 @item show arm disassembler
25079 @kindex show arm
25080 Show the current disassembly style.
25081
25082 @item set arm apcs32
25083 @cindex ARM 32-bit mode
25084 This command toggles ARM operation mode between 32-bit and 26-bit.
25085
25086 @item show arm apcs32
25087 Display the current usage of the ARM 32-bit mode.
25088
25089 @item set arm fpu @var{fputype}
25090 This command sets the ARM floating-point unit (FPU) type. The
25091 argument @var{fputype} can be one of these:
25092
25093 @table @code
25094 @item auto
25095 Determine the FPU type by querying the OS ABI.
25096 @item softfpa
25097 Software FPU, with mixed-endian doubles on little-endian ARM
25098 processors.
25099 @item fpa
25100 GCC-compiled FPA co-processor.
25101 @item softvfp
25102 Software FPU with pure-endian doubles.
25103 @item vfp
25104 VFP co-processor.
25105 @end table
25106
25107 @item show arm fpu
25108 Show the current type of the FPU.
25109
25110 @item set arm abi
25111 This command forces @value{GDBN} to use the specified ABI.
25112
25113 @item show arm abi
25114 Show the currently used ABI.
25115
25116 @item set arm fallback-mode (arm|thumb|auto)
25117 @value{GDBN} uses the symbol table, when available, to determine
25118 whether instructions are ARM or Thumb. This command controls
25119 @value{GDBN}'s default behavior when the symbol table is not
25120 available. The default is @samp{auto}, which causes @value{GDBN} to
25121 use the current execution mode (from the @code{T} bit in the @code{CPSR}
25122 register).
25123
25124 @item show arm fallback-mode
25125 Show the current fallback instruction mode.
25126
25127 @item set arm force-mode (arm|thumb|auto)
25128 This command overrides use of the symbol table to determine whether
25129 instructions are ARM or Thumb. The default is @samp{auto}, which
25130 causes @value{GDBN} to use the symbol table and then the setting
25131 of @samp{set arm fallback-mode}.
25132
25133 @item show arm force-mode
25134 Show the current forced instruction mode.
25135
25136 @item set arm unwind-secure-frames
25137 This command enables unwinding from Non-secure to Secure mode on
25138 Cortex-M with Security extension.
25139 This can trigger security exceptions when unwinding the exception
25140 stack.
25141 It is enabled by default.
25142
25143 @item show arm unwind-secure-frames
25144 Show whether unwinding from Non-secure to Secure mode is enabled.
25145
25146 @item set debug arm
25147 Toggle whether to display ARM-specific debugging messages from the ARM
25148 target support subsystem.
25149
25150 @item show debug arm
25151 Show whether ARM-specific debugging messages are enabled.
25152 @end table
25153
25154 @table @code
25155 @item target sim @r{[}@var{simargs}@r{]} @dots{}
25156 The @value{GDBN} ARM simulator accepts the following optional arguments.
25157
25158 @table @code
25159 @item --swi-support=@var{type}
25160 Tell the simulator which SWI interfaces to support. The argument
25161 @var{type} may be a comma separated list of the following values.
25162 The default value is @code{all}.
25163
25164 @table @code
25165 @item none
25166 @item demon
25167 @item angel
25168 @item redboot
25169 @item all
25170 @end table
25171 @end table
25172 @end table
25173
25174 @node BPF
25175 @subsection BPF
25176
25177 @table @code
25178 @item target sim @r{[}@var{simargs}@r{]} @dots{}
25179 The @value{GDBN} BPF simulator accepts the following optional arguments.
25180
25181 @table @code
25182 @item --skb-data-offset=@var{offset}
25183 Tell the simulator the offset, measured in bytes, of the
25184 @code{skb_data} field in the kernel @code{struct sk_buff} structure.
25185 This offset is used by some BPF specific-purpose load/store
25186 instructions. Defaults to 0.
25187 @end table
25188 @end table
25189
25190 @node M68K
25191 @subsection M68k
25192
25193 The Motorola m68k configuration includes ColdFire support.
25194
25195 @node MicroBlaze
25196 @subsection MicroBlaze
25197 @cindex Xilinx MicroBlaze
25198 @cindex XMD, Xilinx Microprocessor Debugger
25199
25200 The MicroBlaze is a soft-core processor supported on various Xilinx
25201 FPGAs, such as Spartan or Virtex series. Boards with these processors
25202 usually have JTAG ports which connect to a host system running the Xilinx
25203 Embedded Development Kit (EDK) or Software Development Kit (SDK).
25204 This host system is used to download the configuration bitstream to
25205 the target FPGA. The Xilinx Microprocessor Debugger (XMD) program
25206 communicates with the target board using the JTAG interface and
25207 presents a @code{gdbserver} interface to the board. By default
25208 @code{xmd} uses port @code{1234}. (While it is possible to change
25209 this default port, it requires the use of undocumented @code{xmd}
25210 commands. Contact Xilinx support if you need to do this.)
25211
25212 Use these GDB commands to connect to the MicroBlaze target processor.
25213
25214 @table @code
25215 @item target remote :1234
25216 Use this command to connect to the target if you are running @value{GDBN}
25217 on the same system as @code{xmd}.
25218
25219 @item target remote @var{xmd-host}:1234
25220 Use this command to connect to the target if it is connected to @code{xmd}
25221 running on a different system named @var{xmd-host}.
25222
25223 @item load
25224 Use this command to download a program to the MicroBlaze target.
25225
25226 @item set debug microblaze @var{n}
25227 Enable MicroBlaze-specific debugging messages if non-zero.
25228
25229 @item show debug microblaze @var{n}
25230 Show MicroBlaze-specific debugging level.
25231 @end table
25232
25233 @node MIPS Embedded
25234 @subsection @acronym{MIPS} Embedded
25235
25236 @noindent
25237 @value{GDBN} supports these special commands for @acronym{MIPS} targets:
25238
25239 @table @code
25240 @item set mipsfpu double
25241 @itemx set mipsfpu single
25242 @itemx set mipsfpu none
25243 @itemx set mipsfpu auto
25244 @itemx show mipsfpu
25245 @kindex set mipsfpu
25246 @kindex show mipsfpu
25247 @cindex @acronym{MIPS} remote floating point
25248 @cindex floating point, @acronym{MIPS} remote
25249 If your target board does not support the @acronym{MIPS} floating point
25250 coprocessor, you should use the command @samp{set mipsfpu none} (if you
25251 need this, you may wish to put the command in your @value{GDBN} init
25252 file). This tells @value{GDBN} how to find the return value of
25253 functions which return floating point values. It also allows
25254 @value{GDBN} to avoid saving the floating point registers when calling
25255 functions on the board. If you are using a floating point coprocessor
25256 with only single precision floating point support, as on the @sc{r4650}
25257 processor, use the command @samp{set mipsfpu single}. The default
25258 double precision floating point coprocessor may be selected using
25259 @samp{set mipsfpu double}.
25260
25261 In previous versions the only choices were double precision or no
25262 floating point, so @samp{set mipsfpu on} will select double precision
25263 and @samp{set mipsfpu off} will select no floating point.
25264
25265 As usual, you can inquire about the @code{mipsfpu} variable with
25266 @samp{show mipsfpu}.
25267 @end table
25268
25269 @node OpenRISC 1000
25270 @subsection OpenRISC 1000
25271 @cindex OpenRISC 1000
25272
25273 @noindent
25274 The OpenRISC 1000 provides a free RISC instruction set architecture. It is
25275 mainly provided as a soft-core which can run on Xilinx, Altera and other
25276 FPGA's.
25277
25278 @value{GDBN} for OpenRISC supports the below commands when connecting to
25279 a target:
25280
25281 @table @code
25282
25283 @kindex target sim
25284 @item target sim
25285
25286 Runs the builtin CPU simulator which can run very basic
25287 programs but does not support most hardware functions like MMU.
25288 For more complex use cases the user is advised to run an external
25289 target, and connect using @samp{target remote}.
25290
25291 Example: @code{target sim}
25292
25293 @item set debug or1k
25294 Toggle whether to display OpenRISC-specific debugging messages from the
25295 OpenRISC target support subsystem.
25296
25297 @item show debug or1k
25298 Show whether OpenRISC-specific debugging messages are enabled.
25299 @end table
25300
25301 @node PowerPC Embedded
25302 @subsection PowerPC Embedded
25303
25304 @cindex DVC register
25305 @value{GDBN} supports using the DVC (Data Value Compare) register to
25306 implement in hardware simple hardware watchpoint conditions of the form:
25307
25308 @smallexample
25309 (@value{GDBP}) watch @var{address|variable} \
25310 if @var{address|variable} == @var{constant expression}
25311 @end smallexample
25312
25313 The DVC register will be automatically used when @value{GDBN} detects
25314 such pattern in a condition expression, and the created watchpoint uses one
25315 debug register (either the @code{exact-watchpoints} option is on and the
25316 variable is scalar, or the variable has a length of one byte). This feature
25317 is available in native @value{GDBN} running on a Linux kernel version 2.6.34
25318 or newer.
25319
25320 When running on PowerPC embedded processors, @value{GDBN} automatically uses
25321 ranged hardware watchpoints, unless the @code{exact-watchpoints} option is on,
25322 in which case watchpoints using only one debug register are created when
25323 watching variables of scalar types.
25324
25325 You can create an artificial array to watch an arbitrary memory
25326 region using one of the following commands (@pxref{Expressions}):
25327
25328 @smallexample
25329 (@value{GDBP}) watch *((char *) @var{address})@@@var{length}
25330 (@value{GDBP}) watch @{char[@var{length}]@} @var{address}
25331 @end smallexample
25332
25333 PowerPC embedded processors support masked watchpoints. See the discussion
25334 about the @code{mask} argument in @ref{Set Watchpoints}.
25335
25336 @cindex ranged breakpoint
25337 PowerPC embedded processors support hardware accelerated
25338 @dfn{ranged breakpoints}. A ranged breakpoint stops execution of
25339 the inferior whenever it executes an instruction at any address within
25340 the range it specifies. To set a ranged breakpoint in @value{GDBN},
25341 use the @code{break-range} command.
25342
25343 @value{GDBN} provides the following PowerPC-specific commands:
25344
25345 @table @code
25346 @kindex break-range
25347 @item break-range @var{start-location}, @var{end-location}
25348 Set a breakpoint for an address range given by
25349 @var{start-location} and @var{end-location}, which can specify a function name,
25350 a line number, an offset of lines from the current line or from the start
25351 location, or an address of an instruction (see @ref{Specify Location},
25352 for a list of all the possible ways to specify a @var{location}.)
25353 The breakpoint will stop execution of the inferior whenever it
25354 executes an instruction at any address within the specified range,
25355 (including @var{start-location} and @var{end-location}.)
25356
25357 @kindex set powerpc
25358 @item set powerpc soft-float
25359 @itemx show powerpc soft-float
25360 Force @value{GDBN} to use (or not use) a software floating point calling
25361 convention. By default, @value{GDBN} selects the calling convention based
25362 on the selected architecture and the provided executable file.
25363
25364 @item set powerpc vector-abi
25365 @itemx show powerpc vector-abi
25366 Force @value{GDBN} to use the specified calling convention for vector
25367 arguments and return values. The valid options are @samp{auto};
25368 @samp{generic}, to avoid vector registers even if they are present;
25369 @samp{altivec}, to use AltiVec registers; and @samp{spe} to use SPE
25370 registers. By default, @value{GDBN} selects the calling convention
25371 based on the selected architecture and the provided executable file.
25372
25373 @item set powerpc exact-watchpoints
25374 @itemx show powerpc exact-watchpoints
25375 Allow @value{GDBN} to use only one debug register when watching a variable
25376 of scalar type, thus assuming that the variable is accessed through the
25377 address of its first byte.
25378
25379 @end table
25380
25381 @node AVR
25382 @subsection Atmel AVR
25383 @cindex AVR
25384
25385 When configured for debugging the Atmel AVR, @value{GDBN} supports the
25386 following AVR-specific commands:
25387
25388 @table @code
25389 @item info io_registers
25390 @kindex info io_registers@r{, AVR}
25391 @cindex I/O registers (Atmel AVR)
25392 This command displays information about the AVR I/O registers. For
25393 each register, @value{GDBN} prints its number and value.
25394 @end table
25395
25396 @node CRIS
25397 @subsection CRIS
25398 @cindex CRIS
25399
25400 When configured for debugging CRIS, @value{GDBN} provides the
25401 following CRIS-specific commands:
25402
25403 @table @code
25404 @item set cris-version @var{ver}
25405 @cindex CRIS version
25406 Set the current CRIS version to @var{ver}, either @samp{10} or @samp{32}.
25407 The CRIS version affects register names and sizes. This command is useful in
25408 case autodetection of the CRIS version fails.
25409
25410 @item show cris-version
25411 Show the current CRIS version.
25412
25413 @item set cris-dwarf2-cfi
25414 @cindex DWARF-2 CFI and CRIS
25415 Set the usage of DWARF-2 CFI for CRIS debugging. The default is @samp{on}.
25416 Change to @samp{off} when using @code{gcc-cris} whose version is below
25417 @code{R59}.
25418
25419 @item show cris-dwarf2-cfi
25420 Show the current state of using DWARF-2 CFI.
25421
25422 @item set cris-mode @var{mode}
25423 @cindex CRIS mode
25424 Set the current CRIS mode to @var{mode}. It should only be changed when
25425 debugging in guru mode, in which case it should be set to
25426 @samp{guru} (the default is @samp{normal}).
25427
25428 @item show cris-mode
25429 Show the current CRIS mode.
25430 @end table
25431
25432 @node Super-H
25433 @subsection Renesas Super-H
25434 @cindex Super-H
25435
25436 For the Renesas Super-H processor, @value{GDBN} provides these
25437 commands:
25438
25439 @table @code
25440 @item set sh calling-convention @var{convention}
25441 @kindex set sh calling-convention
25442 Set the calling-convention used when calling functions from @value{GDBN}.
25443 Allowed values are @samp{gcc}, which is the default setting, and @samp{renesas}.
25444 With the @samp{gcc} setting, functions are called using the @value{NGCC} calling
25445 convention. If the DWARF-2 information of the called function specifies
25446 that the function follows the Renesas calling convention, the function
25447 is called using the Renesas calling convention. If the calling convention
25448 is set to @samp{renesas}, the Renesas calling convention is always used,
25449 regardless of the DWARF-2 information. This can be used to override the
25450 default of @samp{gcc} if debug information is missing, or the compiler
25451 does not emit the DWARF-2 calling convention entry for a function.
25452
25453 @item show sh calling-convention
25454 @kindex show sh calling-convention
25455 Show the current calling convention setting.
25456
25457 @end table
25458
25459
25460 @node Architectures
25461 @section Architectures
25462
25463 This section describes characteristics of architectures that affect
25464 all uses of @value{GDBN} with the architecture, both native and cross.
25465
25466 @menu
25467 * AArch64::
25468 * i386::
25469 * Alpha::
25470 * MIPS::
25471 * HPPA:: HP PA architecture
25472 * PowerPC::
25473 * Nios II::
25474 * Sparc64::
25475 * S12Z::
25476 @end menu
25477
25478 @node AArch64
25479 @subsection AArch64
25480 @cindex AArch64 support
25481
25482 When @value{GDBN} is debugging the AArch64 architecture, it provides the
25483 following special commands:
25484
25485 @table @code
25486 @item set debug aarch64
25487 @kindex set debug aarch64
25488 This command determines whether AArch64 architecture-specific debugging
25489 messages are to be displayed.
25490
25491 @item show debug aarch64
25492 Show whether AArch64 debugging messages are displayed.
25493
25494 @end table
25495
25496 @subsubsection AArch64 SVE.
25497 @cindex AArch64 SVE.
25498
25499 When @value{GDBN} is debugging the AArch64 architecture, if the Scalable Vector
25500 Extension (SVE) is present, then @value{GDBN} will provide the vector registers
25501 @code{$z0} through @code{$z31}, vector predicate registers @code{$p0} through
25502 @code{$p15}, and the @code{$ffr} register. In addition, the pseudo register
25503 @code{$vg} will be provided. This is the vector granule for the current thread
25504 and represents the number of 64-bit chunks in an SVE @code{z} register.
25505
25506 If the vector length changes, then the @code{$vg} register will be updated,
25507 but the lengths of the @code{z} and @code{p} registers will not change. This
25508 is a known limitation of @value{GDBN} and does not affect the execution of the
25509 target process.
25510
25511 @subsubsection AArch64 Pointer Authentication.
25512 @cindex AArch64 Pointer Authentication.
25513 @anchor{AArch64 PAC}
25514
25515 When @value{GDBN} is debugging the AArch64 architecture, and the program is
25516 using the v8.3-A feature Pointer Authentication (PAC), then whenever the link
25517 register @code{$lr} is pointing to an PAC function its value will be masked.
25518 When GDB prints a backtrace, any addresses that required unmasking will be
25519 postfixed with the marker [PAC]. When using the MI, this is printed as part
25520 of the @code{addr_flags} field.
25521
25522 @subsubsection AArch64 Memory Tagging Extension.
25523 @cindex AArch64 Memory Tagging Extension.
25524
25525 When @value{GDBN} is debugging the AArch64 architecture, the program is
25526 using the v8.5-A feature Memory Tagging Extension (MTE) and there is support
25527 in the kernel for MTE, @value{GDBN} will make memory tagging functionality
25528 available for inspection and editing of logical and allocation tags.
25529 @xref{Memory Tagging}.
25530
25531 To aid debugging, @value{GDBN} will output additional information when SIGSEGV
25532 signals are generated as a result of memory tag failures.
25533
25534 If the tag violation is synchronous, the following will be shown:
25535
25536 @smallexample
25537 Program received signal SIGSEGV, Segmentation fault
25538 Memory tag violation while accessing address 0x0500fffff7ff8000
25539 Allocation tag 0x1
25540 Logical tag 0x5.
25541 @end smallexample
25542
25543 If the tag violation is asynchronous, the fault address is not available.
25544 In this case @value{GDBN} will show the following:
25545
25546 @smallexample
25547 Program received signal SIGSEGV, Segmentation fault
25548 Memory tag violation
25549 Fault address unavailable.
25550 @end smallexample
25551
25552 A special register, @code{tag_ctl}, is made available through the
25553 @code{org.gnu.gdb.aarch64.mte} feature. This register exposes some
25554 options that can be controlled at runtime and emulates the @code{prctl}
25555 option @code{PR_SET_TAGGED_ADDR_CTRL}. For further information, see the
25556 documentation in the Linux kernel.
25557
25558 @node i386
25559 @subsection x86 Architecture-specific Issues
25560
25561 @table @code
25562 @item set struct-convention @var{mode}
25563 @kindex set struct-convention
25564 @cindex struct return convention
25565 @cindex struct/union returned in registers
25566 Set the convention used by the inferior to return @code{struct}s and
25567 @code{union}s from functions to @var{mode}. Possible values of
25568 @var{mode} are @code{"pcc"}, @code{"reg"}, and @code{"default"} (the
25569 default). @code{"default"} or @code{"pcc"} means that @code{struct}s
25570 are returned on the stack, while @code{"reg"} means that a
25571 @code{struct} or a @code{union} whose size is 1, 2, 4, or 8 bytes will
25572 be returned in a register.
25573
25574 @item show struct-convention
25575 @kindex show struct-convention
25576 Show the current setting of the convention to return @code{struct}s
25577 from functions.
25578 @end table
25579
25580
25581 @subsubsection Intel @dfn{Memory Protection Extensions} (MPX).
25582 @cindex Intel Memory Protection Extensions (MPX).
25583
25584 Memory Protection Extension (MPX) adds the bound registers @samp{BND0}
25585 @footnote{The register named with capital letters represent the architecture
25586 registers.} through @samp{BND3}. Bound registers store a pair of 64-bit values
25587 which are the lower bound and upper bound. Bounds are effective addresses or
25588 memory locations. The upper bounds are architecturally represented in 1's
25589 complement form. A bound having lower bound = 0, and upper bound = 0
25590 (1's complement of all bits set) will allow access to the entire address space.
25591
25592 @samp{BND0} through @samp{BND3} are represented in @value{GDBN} as @samp{bnd0raw}
25593 through @samp{bnd3raw}. Pseudo registers @samp{bnd0} through @samp{bnd3}
25594 display the upper bound performing the complement of one operation on the
25595 upper bound value, i.e.@ when upper bound in @samp{bnd0raw} is 0 in the
25596 @value{GDBN} @samp{bnd0} it will be @code{0xfff@dots{}}. In this sense it
25597 can also be noted that the upper bounds are inclusive.
25598
25599 As an example, assume that the register BND0 holds bounds for a pointer having
25600 access allowed for the range between 0x32 and 0x71. The values present on
25601 bnd0raw and bnd registers are presented as follows:
25602
25603 @smallexample
25604 bnd0raw = @{0x32, 0xffffffff8e@}
25605 bnd0 = @{lbound = 0x32, ubound = 0x71@} : size 64
25606 @end smallexample
25607
25608 This way the raw value can be accessed via bnd0raw@dots{}bnd3raw. Any
25609 change on bnd0@dots{}bnd3 or bnd0raw@dots{}bnd3raw is reflect on its
25610 counterpart. When the bnd0@dots{}bnd3 registers are displayed via
25611 Python, the display includes the memory size, in bits, accessible to
25612 the pointer.
25613
25614 Bounds can also be stored in bounds tables, which are stored in
25615 application memory. These tables store bounds for pointers by specifying
25616 the bounds pointer's value along with its bounds. Evaluating and changing
25617 bounds located in bound tables is therefore interesting while investigating
25618 bugs on MPX context. @value{GDBN} provides commands for this purpose:
25619
25620 @table @code
25621 @item show mpx bound @var{pointer}
25622 @kindex show mpx bound
25623 Display bounds of the given @var{pointer}.
25624
25625 @item set mpx bound @var{pointer}, @var{lbound}, @var{ubound}
25626 @kindex set mpx bound
25627 Set the bounds of a pointer in the bound table.
25628 This command takes three parameters: @var{pointer} is the pointers
25629 whose bounds are to be changed, @var{lbound} and @var{ubound} are new values
25630 for lower and upper bounds respectively.
25631 @end table
25632
25633 When you call an inferior function on an Intel MPX enabled program,
25634 GDB sets the inferior's bound registers to the init (disabled) state
25635 before calling the function. As a consequence, bounds checks for the
25636 pointer arguments passed to the function will always pass.
25637
25638 This is necessary because when you call an inferior function, the
25639 program is usually in the middle of the execution of other function.
25640 Since at that point bound registers are in an arbitrary state, not
25641 clearing them would lead to random bound violations in the called
25642 function.
25643
25644 You can still examine the influence of the bound registers on the
25645 execution of the called function by stopping the execution of the
25646 called function at its prologue, setting bound registers, and
25647 continuing the execution. For example:
25648
25649 @smallexample
25650 $ break *upper
25651 Breakpoint 2 at 0x4009de: file i386-mpx-call.c, line 47.
25652 $ print upper (a, b, c, d, 1)
25653 Breakpoint 2, upper (a=0x0, b=0x6e0000005b, c=0x0, d=0x0, len=48)....
25654 $ print $bnd0
25655 @{lbound = 0x0, ubound = ffffffff@} : size -1
25656 @end smallexample
25657
25658 At this last step the value of bnd0 can be changed for investigation of bound
25659 violations caused along the execution of the call. In order to know how to
25660 set the bound registers or bound table for the call consult the ABI.
25661
25662 @node Alpha
25663 @subsection Alpha
25664
25665 See the following section.
25666
25667 @node MIPS
25668 @subsection @acronym{MIPS}
25669
25670 @cindex stack on Alpha
25671 @cindex stack on @acronym{MIPS}
25672 @cindex Alpha stack
25673 @cindex @acronym{MIPS} stack
25674 Alpha- and @acronym{MIPS}-based computers use an unusual stack frame, which
25675 sometimes requires @value{GDBN} to search backward in the object code to
25676 find the beginning of a function.
25677
25678 @cindex response time, @acronym{MIPS} debugging
25679 To improve response time (especially for embedded applications, where
25680 @value{GDBN} may be restricted to a slow serial line for this search)
25681 you may want to limit the size of this search, using one of these
25682 commands:
25683
25684 @table @code
25685 @cindex @code{heuristic-fence-post} (Alpha, @acronym{MIPS})
25686 @item set heuristic-fence-post @var{limit}
25687 Restrict @value{GDBN} to examining at most @var{limit} bytes in its
25688 search for the beginning of a function. A value of @var{0} (the
25689 default) means there is no limit. However, except for @var{0}, the
25690 larger the limit the more bytes @code{heuristic-fence-post} must search
25691 and therefore the longer it takes to run. You should only need to use
25692 this command when debugging a stripped executable.
25693
25694 @item show heuristic-fence-post
25695 Display the current limit.
25696 @end table
25697
25698 @noindent
25699 These commands are available @emph{only} when @value{GDBN} is configured
25700 for debugging programs on Alpha or @acronym{MIPS} processors.
25701
25702 Several @acronym{MIPS}-specific commands are available when debugging @acronym{MIPS}
25703 programs:
25704
25705 @table @code
25706 @item set mips abi @var{arg}
25707 @kindex set mips abi
25708 @cindex set ABI for @acronym{MIPS}
25709 Tell @value{GDBN} which @acronym{MIPS} ABI is used by the inferior. Possible
25710 values of @var{arg} are:
25711
25712 @table @samp
25713 @item auto
25714 The default ABI associated with the current binary (this is the
25715 default).
25716 @item o32
25717 @item o64
25718 @item n32
25719 @item n64
25720 @item eabi32
25721 @item eabi64
25722 @end table
25723
25724 @item show mips abi
25725 @kindex show mips abi
25726 Show the @acronym{MIPS} ABI used by @value{GDBN} to debug the inferior.
25727
25728 @item set mips compression @var{arg}
25729 @kindex set mips compression
25730 @cindex code compression, @acronym{MIPS}
25731 Tell @value{GDBN} which @acronym{MIPS} compressed
25732 @acronym{ISA, Instruction Set Architecture} encoding is used by the
25733 inferior. @value{GDBN} uses this for code disassembly and other
25734 internal interpretation purposes. This setting is only referred to
25735 when no executable has been associated with the debugging session or
25736 the executable does not provide information about the encoding it uses.
25737 Otherwise this setting is automatically updated from information
25738 provided by the executable.
25739
25740 Possible values of @var{arg} are @samp{mips16} and @samp{micromips}.
25741 The default compressed @acronym{ISA} encoding is @samp{mips16}, as
25742 executables containing @acronym{MIPS16} code frequently are not
25743 identified as such.
25744
25745 This setting is ``sticky''; that is, it retains its value across
25746 debugging sessions until reset either explicitly with this command or
25747 implicitly from an executable.
25748
25749 The compiler and/or assembler typically add symbol table annotations to
25750 identify functions compiled for the @acronym{MIPS16} or
25751 @acronym{microMIPS} @acronym{ISA}s. If these function-scope annotations
25752 are present, @value{GDBN} uses them in preference to the global
25753 compressed @acronym{ISA} encoding setting.
25754
25755 @item show mips compression
25756 @kindex show mips compression
25757 Show the @acronym{MIPS} compressed @acronym{ISA} encoding used by
25758 @value{GDBN} to debug the inferior.
25759
25760 @item set mipsfpu
25761 @itemx show mipsfpu
25762 @xref{MIPS Embedded, set mipsfpu}.
25763
25764 @item set mips mask-address @var{arg}
25765 @kindex set mips mask-address
25766 @cindex @acronym{MIPS} addresses, masking
25767 This command determines whether the most-significant 32 bits of 64-bit
25768 @acronym{MIPS} addresses are masked off. The argument @var{arg} can be
25769 @samp{on}, @samp{off}, or @samp{auto}. The latter is the default
25770 setting, which lets @value{GDBN} determine the correct value.
25771
25772 @item show mips mask-address
25773 @kindex show mips mask-address
25774 Show whether the upper 32 bits of @acronym{MIPS} addresses are masked off or
25775 not.
25776
25777 @item set remote-mips64-transfers-32bit-regs
25778 @kindex set remote-mips64-transfers-32bit-regs
25779 This command controls compatibility with 64-bit @acronym{MIPS} targets that
25780 transfer data in 32-bit quantities. If you have an old @acronym{MIPS} 64 target
25781 that transfers 32 bits for some registers, like @sc{sr} and @sc{fsr},
25782 and 64 bits for other registers, set this option to @samp{on}.
25783
25784 @item show remote-mips64-transfers-32bit-regs
25785 @kindex show remote-mips64-transfers-32bit-regs
25786 Show the current setting of compatibility with older @acronym{MIPS} 64 targets.
25787
25788 @item set debug mips
25789 @kindex set debug mips
25790 This command turns on and off debugging messages for the @acronym{MIPS}-specific
25791 target code in @value{GDBN}.
25792
25793 @item show debug mips
25794 @kindex show debug mips
25795 Show the current setting of @acronym{MIPS} debugging messages.
25796 @end table
25797
25798
25799 @node HPPA
25800 @subsection HPPA
25801 @cindex HPPA support
25802
25803 When @value{GDBN} is debugging the HP PA architecture, it provides the
25804 following special commands:
25805
25806 @table @code
25807 @item set debug hppa
25808 @kindex set debug hppa
25809 This command determines whether HPPA architecture-specific debugging
25810 messages are to be displayed.
25811
25812 @item show debug hppa
25813 Show whether HPPA debugging messages are displayed.
25814
25815 @item maint print unwind @var{address}
25816 @kindex maint print unwind@r{, HPPA}
25817 This command displays the contents of the unwind table entry at the
25818 given @var{address}.
25819
25820 @end table
25821
25822
25823 @node PowerPC
25824 @subsection PowerPC
25825 @cindex PowerPC architecture
25826
25827 When @value{GDBN} is debugging the PowerPC architecture, it provides a set of
25828 pseudo-registers to enable inspection of 128-bit wide Decimal Floating Point
25829 numbers stored in the floating point registers. These values must be stored
25830 in two consecutive registers, always starting at an even register like
25831 @code{f0} or @code{f2}.
25832
25833 The pseudo-registers go from @code{$dl0} through @code{$dl15}, and are formed
25834 by joining the even/odd register pairs @code{f0} and @code{f1} for @code{$dl0},
25835 @code{f2} and @code{f3} for @code{$dl1} and so on.
25836
25837 For POWER7 processors, @value{GDBN} provides a set of pseudo-registers, the 64-bit
25838 wide Extended Floating Point Registers (@samp{f32} through @samp{f63}).
25839
25840 @node Nios II
25841 @subsection Nios II
25842 @cindex Nios II architecture
25843
25844 When @value{GDBN} is debugging the Nios II architecture,
25845 it provides the following special commands:
25846
25847 @table @code
25848
25849 @item set debug nios2
25850 @kindex set debug nios2
25851 This command turns on and off debugging messages for the Nios II
25852 target code in @value{GDBN}.
25853
25854 @item show debug nios2
25855 @kindex show debug nios2
25856 Show the current setting of Nios II debugging messages.
25857 @end table
25858
25859 @node Sparc64
25860 @subsection Sparc64
25861 @cindex Sparc64 support
25862 @cindex Application Data Integrity
25863 @subsubsection ADI Support
25864
25865 The M7 processor supports an Application Data Integrity (ADI) feature that
25866 detects invalid data accesses. When software allocates memory and enables
25867 ADI on the allocated memory, it chooses a 4-bit version number, sets the
25868 version in the upper 4 bits of the 64-bit pointer to that data, and stores
25869 the 4-bit version in every cacheline of that data. Hardware saves the latter
25870 in spare bits in the cache and memory hierarchy. On each load and store,
25871 the processor compares the upper 4 VA (virtual address) bits to the
25872 cacheline's version. If there is a mismatch, the processor generates a
25873 version mismatch trap which can be either precise or disrupting. The trap
25874 is an error condition which the kernel delivers to the process as a SIGSEGV
25875 signal.
25876
25877 Note that only 64-bit applications can use ADI and need to be built with
25878 ADI-enabled.
25879
25880 Values of the ADI version tags, which are in granularity of a
25881 cacheline (64 bytes), can be viewed or modified.
25882
25883
25884 @table @code
25885 @kindex adi examine
25886 @item adi (examine | x) [ / @var{n} ] @var{addr}
25887
25888 The @code{adi examine} command displays the value of one ADI version tag per
25889 cacheline.
25890
25891 @var{n} is a decimal integer specifying the number in bytes; the default
25892 is 1. It specifies how much ADI version information, at the ratio of 1:ADI
25893 block size, to display.
25894
25895 @var{addr} is the address in user address space where you want @value{GDBN}
25896 to begin displaying the ADI version tags.
25897
25898 Below is an example of displaying ADI versions of variable "shmaddr".
25899
25900 @smallexample
25901 (@value{GDBP}) adi x/100 shmaddr
25902 0xfff800010002c000: 0 0
25903 @end smallexample
25904
25905 @kindex adi assign
25906 @item adi (assign | a) [ / @var{n} ] @var{addr} = @var{tag}
25907
25908 The @code{adi assign} command is used to assign new ADI version tag
25909 to an address.
25910
25911 @var{n} is a decimal integer specifying the number in bytes;
25912 the default is 1. It specifies how much ADI version information, at the
25913 ratio of 1:ADI block size, to modify.
25914
25915 @var{addr} is the address in user address space where you want @value{GDBN}
25916 to begin modifying the ADI version tags.
25917
25918 @var{tag} is the new ADI version tag.
25919
25920 For example, do the following to modify then verify ADI versions of
25921 variable "shmaddr":
25922
25923 @smallexample
25924 (@value{GDBP}) adi a/100 shmaddr = 7
25925 (@value{GDBP}) adi x/100 shmaddr
25926 0xfff800010002c000: 7 7
25927 @end smallexample
25928
25929 @end table
25930
25931 @node S12Z
25932 @subsection S12Z
25933 @cindex S12Z support
25934
25935 When @value{GDBN} is debugging the S12Z architecture,
25936 it provides the following special command:
25937
25938 @table @code
25939 @item maint info bdccsr
25940 @kindex maint info bdccsr@r{, S12Z}
25941 This command displays the current value of the microprocessor's
25942 BDCCSR register.
25943 @end table
25944
25945
25946 @node Controlling GDB
25947 @chapter Controlling @value{GDBN}
25948
25949 You can alter the way @value{GDBN} interacts with you by using the
25950 @code{set} command. For commands controlling how @value{GDBN} displays
25951 data, see @ref{Print Settings, ,Print Settings}. Other settings are
25952 described here.
25953
25954 @menu
25955 * Prompt:: Prompt
25956 * Editing:: Command editing
25957 * Command History:: Command history
25958 * Screen Size:: Screen size
25959 * Output Styling:: Output styling
25960 * Numbers:: Numbers
25961 * ABI:: Configuring the current ABI
25962 * Auto-loading:: Automatically loading associated files
25963 * Messages/Warnings:: Optional warnings and messages
25964 * Debugging Output:: Optional messages about internal happenings
25965 * Other Misc Settings:: Other Miscellaneous Settings
25966 @end menu
25967
25968 @node Prompt
25969 @section Prompt
25970
25971 @cindex prompt
25972
25973 @value{GDBN} indicates its readiness to read a command by printing a string
25974 called the @dfn{prompt}. This string is normally @samp{(@value{GDBP})}. You
25975 can change the prompt string with the @code{set prompt} command. For
25976 instance, when debugging @value{GDBN} with @value{GDBN}, it is useful to change
25977 the prompt in one of the @value{GDBN} sessions so that you can always tell
25978 which one you are talking to.
25979
25980 @emph{Note:} @code{set prompt} does not add a space for you after the
25981 prompt you set. This allows you to set a prompt which ends in a space
25982 or a prompt that does not.
25983
25984 @table @code
25985 @kindex set prompt
25986 @item set prompt @var{newprompt}
25987 Directs @value{GDBN} to use @var{newprompt} as its prompt string henceforth.
25988
25989 @kindex show prompt
25990 @item show prompt
25991 Prints a line of the form: @samp{Gdb's prompt is: @var{your-prompt}}
25992 @end table
25993
25994 Versions of @value{GDBN} that ship with Python scripting enabled have
25995 prompt extensions. The commands for interacting with these extensions
25996 are:
25997
25998 @table @code
25999 @kindex set extended-prompt
26000 @item set extended-prompt @var{prompt}
26001 Set an extended prompt that allows for substitutions.
26002 @xref{gdb.prompt}, for a list of escape sequences that can be used for
26003 substitution. Any escape sequences specified as part of the prompt
26004 string are replaced with the corresponding strings each time the prompt
26005 is displayed.
26006
26007 For example:
26008
26009 @smallexample
26010 set extended-prompt Current working directory: \w (gdb)
26011 @end smallexample
26012
26013 Note that when an extended-prompt is set, it takes control of the
26014 @var{prompt_hook} hook. @xref{prompt_hook}, for further information.
26015
26016 @kindex show extended-prompt
26017 @item show extended-prompt
26018 Prints the extended prompt. Any escape sequences specified as part of
26019 the prompt string with @code{set extended-prompt}, are replaced with the
26020 corresponding strings each time the prompt is displayed.
26021 @end table
26022
26023 @node Editing
26024 @section Command Editing
26025 @cindex readline
26026 @cindex command line editing
26027
26028 @value{GDBN} reads its input commands via the @dfn{Readline} interface. This
26029 @sc{gnu} library provides consistent behavior for programs which provide a
26030 command line interface to the user. Advantages are @sc{gnu} Emacs-style
26031 or @dfn{vi}-style inline editing of commands, @code{csh}-like history
26032 substitution, and a storage and recall of command history across
26033 debugging sessions.
26034
26035 You may control the behavior of command line editing in @value{GDBN} with the
26036 command @code{set}.
26037
26038 @table @code
26039 @kindex set editing
26040 @cindex editing
26041 @item set editing
26042 @itemx set editing on
26043 Enable command line editing (enabled by default).
26044
26045 @item set editing off
26046 Disable command line editing.
26047
26048 @kindex show editing
26049 @item show editing
26050 Show whether command line editing is enabled.
26051 @end table
26052
26053 @ifset SYSTEM_READLINE
26054 @xref{Command Line Editing, , , rluserman, GNU Readline Library},
26055 @end ifset
26056 @ifclear SYSTEM_READLINE
26057 @xref{Command Line Editing},
26058 @end ifclear
26059 for more details about the Readline
26060 interface. Users unfamiliar with @sc{gnu} Emacs or @code{vi} are
26061 encouraged to read that chapter.
26062
26063 @cindex Readline application name
26064 @value{GDBN} sets the Readline application name to @samp{gdb}. This
26065 is useful for conditions in @file{.inputrc}.
26066
26067 @cindex operate-and-get-next
26068 @value{GDBN} defines a bindable Readline command,
26069 @code{operate-and-get-next}. This is bound to @kbd{C-o} by default.
26070 This command accepts the current line for execution and fetches the
26071 next line relative to the current line from the history for editing.
26072 Any argument is ignored.
26073
26074 @node Command History
26075 @section Command History
26076 @cindex command history
26077
26078 @value{GDBN} can keep track of the commands you type during your
26079 debugging sessions, so that you can be certain of precisely what
26080 happened. Use these commands to manage the @value{GDBN} command
26081 history facility.
26082
26083 @value{GDBN} uses the @sc{gnu} History library, a part of the Readline
26084 package, to provide the history facility.
26085 @ifset SYSTEM_READLINE
26086 @xref{Using History Interactively, , , history, GNU History Library},
26087 @end ifset
26088 @ifclear SYSTEM_READLINE
26089 @xref{Using History Interactively},
26090 @end ifclear
26091 for the detailed description of the History library.
26092
26093 To issue a command to @value{GDBN} without affecting certain aspects of
26094 the state which is seen by users, prefix it with @samp{server }
26095 (@pxref{Server Prefix}). This
26096 means that this command will not affect the command history, nor will it
26097 affect @value{GDBN}'s notion of which command to repeat if @key{RET} is
26098 pressed on a line by itself.
26099
26100 @cindex @code{server}, command prefix
26101 The server prefix does not affect the recording of values into the value
26102 history; to print a value without recording it into the value history,
26103 use the @code{output} command instead of the @code{print} command.
26104
26105 Here is the description of @value{GDBN} commands related to command
26106 history.
26107
26108 @table @code
26109 @cindex history substitution
26110 @cindex history file
26111 @kindex set history filename
26112 @cindex @env{GDBHISTFILE}, environment variable
26113 @item set history filename @r{[}@var{fname}@r{]}
26114 Set the name of the @value{GDBN} command history file to @var{fname}.
26115 This is the file where @value{GDBN} reads an initial command history
26116 list, and where it writes the command history from this session when it
26117 exits. You can access this list through history expansion or through
26118 the history command editing characters listed below. This file defaults
26119 to the value of the environment variable @env{GDBHISTFILE}, or to
26120 @file{./.gdb_history} (@file{./_gdb_history} on MS-DOS) if this variable
26121 is not set.
26122
26123 The @env{GDBHISTFILE} environment variable is read after processing
26124 any @value{GDBN} initialization files (@pxref{Startup}) and after
26125 processing any commands passed using command line options (for
26126 example, @code{-ex}).
26127
26128 If the @var{fname} argument is not given, or if the @env{GDBHISTFILE}
26129 is the empty string then @value{GDBN} will neither try to load an
26130 existing history file, nor will it try to save the history on exit.
26131
26132 @cindex save command history
26133 @kindex set history save
26134 @item set history save
26135 @itemx set history save on
26136 Record command history in a file, whose name may be specified with the
26137 @code{set history filename} command. By default, this option is
26138 disabled. The command history will be recorded when @value{GDBN}
26139 exits. If @code{set history filename} is set to the empty string then
26140 history saving is disabled, even when @code{set history save} is
26141 @code{on}.
26142
26143 @item set history save off
26144 Don't record the command history into the file specified by @code{set
26145 history filename} when @value{GDBN} exits.
26146
26147 @cindex history size
26148 @kindex set history size
26149 @cindex @env{GDBHISTSIZE}, environment variable
26150 @item set history size @var{size}
26151 @itemx set history size unlimited
26152 Set the number of commands which @value{GDBN} keeps in its history list.
26153 This defaults to the value of the environment variable @env{GDBHISTSIZE}, or
26154 to 256 if this variable is not set. Non-numeric values of @env{GDBHISTSIZE}
26155 are ignored. If @var{size} is @code{unlimited} or if @env{GDBHISTSIZE} is
26156 either a negative number or the empty string, then the number of commands
26157 @value{GDBN} keeps in the history list is unlimited.
26158
26159 The @env{GDBHISTSIZE} environment variable is read after processing
26160 any @value{GDBN} initialization files (@pxref{Startup}) and after
26161 processing any commands passed using command line options (for
26162 example, @code{-ex}).
26163
26164 @cindex remove duplicate history
26165 @kindex set history remove-duplicates
26166 @item set history remove-duplicates @var{count}
26167 @itemx set history remove-duplicates unlimited
26168 Control the removal of duplicate history entries in the command history list.
26169 If @var{count} is non-zero, @value{GDBN} will look back at the last @var{count}
26170 history entries and remove the first entry that is a duplicate of the current
26171 entry being added to the command history list. If @var{count} is
26172 @code{unlimited} then this lookbehind is unbounded. If @var{count} is 0, then
26173 removal of duplicate history entries is disabled.
26174
26175 Only history entries added during the current session are considered for
26176 removal. This option is set to 0 by default.
26177
26178 @end table
26179
26180 History expansion assigns special meaning to the character @kbd{!}.
26181 @ifset SYSTEM_READLINE
26182 @xref{Event Designators, , , history, GNU History Library},
26183 @end ifset
26184 @ifclear SYSTEM_READLINE
26185 @xref{Event Designators},
26186 @end ifclear
26187 for more details.
26188
26189 @cindex history expansion, turn on/off
26190 Since @kbd{!} is also the logical not operator in C, history expansion
26191 is off by default. If you decide to enable history expansion with the
26192 @code{set history expansion on} command, you may sometimes need to
26193 follow @kbd{!} (when it is used as logical not, in an expression) with
26194 a space or a tab to prevent it from being expanded. The readline
26195 history facilities do not attempt substitution on the strings
26196 @kbd{!=} and @kbd{!(}, even when history expansion is enabled.
26197
26198 The commands to control history expansion are:
26199
26200 @table @code
26201 @item set history expansion on
26202 @itemx set history expansion
26203 @kindex set history expansion
26204 Enable history expansion. History expansion is off by default.
26205
26206 @item set history expansion off
26207 Disable history expansion.
26208
26209 @c @group
26210 @kindex show history
26211 @item show history
26212 @itemx show history filename
26213 @itemx show history save
26214 @itemx show history size
26215 @itemx show history expansion
26216 These commands display the state of the @value{GDBN} history parameters.
26217 @code{show history} by itself displays all four states.
26218 @c @end group
26219 @end table
26220
26221 @table @code
26222 @kindex show commands
26223 @cindex show last commands
26224 @cindex display command history
26225 @item show commands
26226 Display the last ten commands in the command history.
26227
26228 @item show commands @var{n}
26229 Print ten commands centered on command number @var{n}.
26230
26231 @item show commands +
26232 Print ten commands just after the commands last printed.
26233 @end table
26234
26235 @node Screen Size
26236 @section Screen Size
26237 @cindex size of screen
26238 @cindex screen size
26239 @cindex pagination
26240 @cindex page size
26241 @cindex pauses in output
26242
26243 Certain commands to @value{GDBN} may produce large amounts of
26244 information output to the screen. To help you read all of it,
26245 @value{GDBN} pauses and asks you for input at the end of each page of
26246 output. Type @key{RET} when you want to see one more page of output,
26247 @kbd{q} to discard the remaining output, or @kbd{c} to continue
26248 without paging for the rest of the current command. Also, the screen
26249 width setting determines when to wrap lines of output. Depending on
26250 what is being printed, @value{GDBN} tries to break the line at a
26251 readable place, rather than simply letting it overflow onto the
26252 following line.
26253
26254 Normally @value{GDBN} knows the size of the screen from the terminal
26255 driver software. For example, on Unix @value{GDBN} uses the termcap data base
26256 together with the value of the @env{TERM} environment variable and the
26257 @code{stty rows} and @code{stty cols} settings. If this is not correct,
26258 you can override it with the @code{set height} and @code{set
26259 width} commands:
26260
26261 @table @code
26262 @kindex set height
26263 @kindex set width
26264 @kindex show width
26265 @kindex show height
26266 @item set height @var{lpp}
26267 @itemx set height unlimited
26268 @itemx show height
26269 @itemx set width @var{cpl}
26270 @itemx set width unlimited
26271 @itemx show width
26272 These @code{set} commands specify a screen height of @var{lpp} lines and
26273 a screen width of @var{cpl} characters. The associated @code{show}
26274 commands display the current settings.
26275
26276 If you specify a height of either @code{unlimited} or zero lines,
26277 @value{GDBN} does not pause during output no matter how long the
26278 output is. This is useful if output is to a file or to an editor
26279 buffer.
26280
26281 Likewise, you can specify @samp{set width unlimited} or @samp{set
26282 width 0} to prevent @value{GDBN} from wrapping its output.
26283
26284 @item set pagination on
26285 @itemx set pagination off
26286 @kindex set pagination
26287 Turn the output pagination on or off; the default is on. Turning
26288 pagination off is the alternative to @code{set height unlimited}. Note that
26289 running @value{GDBN} with the @option{--batch} option (@pxref{Mode
26290 Options, -batch}) also automatically disables pagination.
26291
26292 @item show pagination
26293 @kindex show pagination
26294 Show the current pagination mode.
26295 @end table
26296
26297 @node Output Styling
26298 @section Output Styling
26299 @cindex styling
26300 @cindex colors
26301
26302 @kindex set style
26303 @kindex show style
26304 @value{GDBN} can style its output on a capable terminal. This is
26305 enabled by default on most systems, but disabled by default when in
26306 batch mode (@pxref{Mode Options}). Various style settings are available;
26307 and styles can also be disabled entirely.
26308
26309 @table @code
26310 @item set style enabled @samp{on|off}
26311 Enable or disable all styling. The default is host-dependent, with
26312 most hosts defaulting to @samp{on}.
26313
26314 @item show style enabled
26315 Show the current state of styling.
26316
26317 @item set style sources @samp{on|off}
26318 Enable or disable source code styling. This affects whether source
26319 code, such as the output of the @code{list} command, is styled. The
26320 default is @samp{on}. Note that source styling only works if styling
26321 in general is enabled, and if a source highlighting library is
26322 available to @value{GDBN}.
26323
26324 There are two ways that highlighting can be done. First, if
26325 @value{GDBN} was linked with the GNU Source Highlight library, then it
26326 is used. Otherwise, if @value{GDBN} was configured with Python
26327 scripting support, and if the Python Pygments package is available,
26328 then it will be used.
26329
26330 @item show style sources
26331 Show the current state of source code styling.
26332
26333 @item set style disassembler enabled @samp{on|off}
26334 Enable or disable disassembler styling. This affects whether
26335 disassembler output, such as the output of the @code{disassemble}
26336 command, is styled. Disassembler styling only works if styling in
26337 general is enabled (with @code{set style enabled on}), and if a source
26338 highlighting library is available to @value{GDBN}.
26339
26340 To highlight disassembler output, @value{GDBN} must be compiled with
26341 Python support, and the Python Pygments package must be available. If
26342 these requirements are not met then @value{GDBN} will not highlight
26343 disassembler output, even when this option is @samp{on}.
26344
26345 @item show style disassembler enabled
26346 Show the current state of disassembler styling.
26347 @end table
26348
26349 Subcommands of @code{set style} control specific forms of styling.
26350 These subcommands all follow the same pattern: each style-able object
26351 can be styled with a foreground color, a background color, and an
26352 intensity.
26353
26354 For example, the style of file names can be controlled using the
26355 @code{set style filename} group of commands:
26356
26357 @table @code
26358 @item set style filename background @var{color}
26359 Set the background to @var{color}. Valid colors are @samp{none}
26360 (meaning the terminal's default color), @samp{black}, @samp{red},
26361 @samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
26362 and@samp{white}.
26363
26364 @item set style filename foreground @var{color}
26365 Set the foreground to @var{color}. Valid colors are @samp{none}
26366 (meaning the terminal's default color), @samp{black}, @samp{red},
26367 @samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
26368 and@samp{white}.
26369
26370 @item set style filename intensity @var{value}
26371 Set the intensity to @var{value}. Valid intensities are @samp{normal}
26372 (the default), @samp{bold}, and @samp{dim}.
26373 @end table
26374
26375 The @code{show style} command and its subcommands are styling
26376 a style name in their output using its own style.
26377 So, use @command{show style} to see the complete list of styles,
26378 their characteristics and the visual aspect of each style.
26379
26380 The style-able objects are:
26381 @table @code
26382 @item filename
26383 Control the styling of file names and URLs. By default, this style's
26384 foreground color is green.
26385
26386 @item function
26387 Control the styling of function names. These are managed with the
26388 @code{set style function} family of commands. By default, this
26389 style's foreground color is yellow.
26390
26391 @item variable
26392 Control the styling of variable names. These are managed with the
26393 @code{set style variable} family of commands. By default, this style's
26394 foreground color is cyan.
26395
26396 @item address
26397 Control the styling of addresses. These are managed with the
26398 @code{set style address} family of commands. By default, this style's
26399 foreground color is blue.
26400
26401 @item version
26402 Control the styling of @value{GDBN}'s version number text. By
26403 default, this style's foreground color is magenta and it has bold
26404 intensity. The version number is displayed in two places, the output
26405 of @command{show version}, and when @value{GDBN} starts up.
26406
26407 In order to control how @value{GDBN} styles the version number at
26408 startup, add the @code{set style version} family of commands to the
26409 early initialization command file (@pxref{Initialization
26410 Files}).
26411
26412 @item title
26413 Control the styling of titles. These are managed with the
26414 @code{set style title} family of commands. By default, this style's
26415 intensity is bold. Commands are using the title style to improve
26416 the readability of large output. For example, the commands
26417 @command{apropos} and @command{help} are using the title style
26418 for the command names.
26419
26420 @item highlight
26421 Control the styling of highlightings. These are managed with the
26422 @code{set style highlight} family of commands. By default, this style's
26423 foreground color is red. Commands are using the highlight style to draw
26424 the user attention to some specific parts of their output. For example,
26425 the command @command{apropos -v REGEXP} uses the highlight style to
26426 mark the documentation parts matching @var{regexp}.
26427
26428 @item metadata
26429 Control the styling of data annotations added by @value{GDBN} to data
26430 it displays. By default, this style's intensity is dim. Metadata
26431 annotations include the @samp{repeats @var{n} times} annotation for
26432 suppressed display of repeated array elements (@pxref{Print Strings}),
26433 @samp{<unavailable>} and @w{@samp{<error @var{descr}>}} annotations
26434 for errors and @samp{<optimized-out>} annotations for optimized-out
26435 values in displaying stack frame information in backtraces
26436 (@pxref{Backtrace}), etc.
26437
26438 @item tui-border
26439 Control the styling of the TUI border. Note that, unlike other
26440 styling options, only the color of the border can be controlled via
26441 @code{set style}. This was done for compatibility reasons, as TUI
26442 controls to set the border's intensity predated the addition of
26443 general styling to @value{GDBN}. @xref{TUI Configuration}.
26444
26445 @item tui-active-border
26446 Control the styling of the active TUI border; that is, the TUI window
26447 that has the focus.
26448
26449 @end table
26450
26451 @node Numbers
26452 @section Numbers
26453 @cindex number representation
26454 @cindex entering numbers
26455
26456 You can always enter numbers in octal, decimal, or hexadecimal in
26457 @value{GDBN} by the usual conventions: octal numbers begin with
26458 @samp{0}, decimal numbers end with @samp{.}, and hexadecimal numbers
26459 begin with @samp{0x}. Numbers that neither begin with @samp{0} or
26460 @samp{0x}, nor end with a @samp{.} are, by default, entered in base
26461 10; likewise, the default display for numbers---when no particular
26462 format is specified---is base 10. You can change the default base for
26463 both input and output with the commands described below.
26464
26465 @table @code
26466 @kindex set input-radix
26467 @item set input-radix @var{base}
26468 Set the default base for numeric input. Supported choices
26469 for @var{base} are decimal 8, 10, or 16. The base must itself be
26470 specified either unambiguously or using the current input radix; for
26471 example, any of
26472
26473 @smallexample
26474 set input-radix 012
26475 set input-radix 10.
26476 set input-radix 0xa
26477 @end smallexample
26478
26479 @noindent
26480 sets the input base to decimal. On the other hand, @samp{set input-radix 10}
26481 leaves the input radix unchanged, no matter what it was, since
26482 @samp{10}, being without any leading or trailing signs of its base, is
26483 interpreted in the current radix. Thus, if the current radix is 16,
26484 @samp{10} is interpreted in hex, i.e.@: as 16 decimal, which doesn't
26485 change the radix.
26486
26487 @kindex set output-radix
26488 @item set output-radix @var{base}
26489 Set the default base for numeric display. 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.
26492
26493 @kindex show input-radix
26494 @item show input-radix
26495 Display the current default base for numeric input.
26496
26497 @kindex show output-radix
26498 @item show output-radix
26499 Display the current default base for numeric display.
26500
26501 @item set radix @r{[}@var{base}@r{]}
26502 @itemx show radix
26503 @kindex set radix
26504 @kindex show radix
26505 These commands set and show the default base for both input and output
26506 of numbers. @code{set radix} sets the radix of input and output to
26507 the same base; without an argument, it resets the radix back to its
26508 default value of 10.
26509
26510 @end table
26511
26512 @node ABI
26513 @section Configuring the Current ABI
26514
26515 @value{GDBN} can determine the @dfn{ABI} (Application Binary Interface) of your
26516 application automatically. However, sometimes you need to override its
26517 conclusions. Use these commands to manage @value{GDBN}'s view of the
26518 current ABI.
26519
26520 @cindex OS ABI
26521 @kindex set osabi
26522 @kindex show osabi
26523 @cindex Newlib OS ABI and its influence on the longjmp handling
26524
26525 One @value{GDBN} configuration can debug binaries for multiple operating
26526 system targets, either via remote debugging or native emulation.
26527 @value{GDBN} will autodetect the @dfn{OS ABI} (Operating System ABI) in use,
26528 but you can override its conclusion using the @code{set osabi} command.
26529 One example where this is useful is in debugging of binaries which use
26530 an alternate C library (e.g.@: @sc{uClibc} for @sc{gnu}/Linux) which does
26531 not have the same identifying marks that the standard C library for your
26532 platform provides.
26533
26534 When @value{GDBN} is debugging the AArch64 architecture, it provides a
26535 ``Newlib'' OS ABI. This is useful for handling @code{setjmp} and
26536 @code{longjmp} when debugging binaries that use the @sc{newlib} C library.
26537 The ``Newlib'' OS ABI can be selected by @code{set osabi Newlib}.
26538
26539 @table @code
26540 @item show osabi
26541 Show the OS ABI currently in use.
26542
26543 @item set osabi
26544 With no argument, show the list of registered available OS ABI's.
26545
26546 @item set osabi @var{abi}
26547 Set the current OS ABI to @var{abi}.
26548 @end table
26549
26550 @cindex float promotion
26551
26552 Generally, the way that an argument of type @code{float} is passed to a
26553 function depends on whether the function is prototyped. For a prototyped
26554 (i.e.@: ANSI/ISO style) function, @code{float} arguments are passed unchanged,
26555 according to the architecture's convention for @code{float}. For unprototyped
26556 (i.e.@: K&R style) functions, @code{float} arguments are first promoted to type
26557 @code{double} and then passed.
26558
26559 Unfortunately, some forms of debug information do not reliably indicate whether
26560 a function is prototyped. If @value{GDBN} calls a function that is not marked
26561 as prototyped, it consults @kbd{set coerce-float-to-double}.
26562
26563 @table @code
26564 @kindex set coerce-float-to-double
26565 @item set coerce-float-to-double
26566 @itemx set coerce-float-to-double on
26567 Arguments of type @code{float} will be promoted to @code{double} when passed
26568 to an unprototyped function. This is the default setting.
26569
26570 @item set coerce-float-to-double off
26571 Arguments of type @code{float} will be passed directly to unprototyped
26572 functions.
26573
26574 @kindex show coerce-float-to-double
26575 @item show coerce-float-to-double
26576 Show the current setting of promoting @code{float} to @code{double}.
26577 @end table
26578
26579 @kindex set cp-abi
26580 @kindex show cp-abi
26581 @value{GDBN} needs to know the ABI used for your program's C@t{++}
26582 objects. The correct C@t{++} ABI depends on which C@t{++} compiler was
26583 used to build your application. @value{GDBN} only fully supports
26584 programs with a single C@t{++} ABI; if your program contains code using
26585 multiple C@t{++} ABI's or if @value{GDBN} can not identify your
26586 program's ABI correctly, you can tell @value{GDBN} which ABI to use.
26587 Currently supported ABI's include ``gnu-v2'', for @code{g++} versions
26588 before 3.0, ``gnu-v3'', for @code{g++} versions 3.0 and later, and
26589 ``hpaCC'' for the HP ANSI C@t{++} compiler. Other C@t{++} compilers may
26590 use the ``gnu-v2'' or ``gnu-v3'' ABI's as well. The default setting is
26591 ``auto''.
26592
26593 @table @code
26594 @item show cp-abi
26595 Show the C@t{++} ABI currently in use.
26596
26597 @item set cp-abi
26598 With no argument, show the list of supported C@t{++} ABI's.
26599
26600 @item set cp-abi @var{abi}
26601 @itemx set cp-abi auto
26602 Set the current C@t{++} ABI to @var{abi}, or return to automatic detection.
26603 @end table
26604
26605 @node Auto-loading
26606 @section Automatically loading associated files
26607 @cindex auto-loading
26608
26609 @value{GDBN} sometimes reads files with commands and settings automatically,
26610 without being explicitly told so by the user. We call this feature
26611 @dfn{auto-loading}. While auto-loading is useful for automatically adapting
26612 @value{GDBN} to the needs of your project, it can sometimes produce unexpected
26613 results or introduce security risks (e.g., if the file comes from untrusted
26614 sources).
26615
26616 There are various kinds of files @value{GDBN} can automatically load.
26617 In addition to these files, @value{GDBN} supports auto-loading code written
26618 in various extension languages. @xref{Auto-loading extensions}.
26619
26620 Note that loading of these associated files (including the local @file{.gdbinit}
26621 file) requires accordingly configured @code{auto-load safe-path}
26622 (@pxref{Auto-loading safe path}).
26623
26624 For these reasons, @value{GDBN} includes commands and options to let you
26625 control when to auto-load files and which files should be auto-loaded.
26626
26627 @table @code
26628 @anchor{set auto-load off}
26629 @kindex set auto-load off
26630 @item set auto-load off
26631 Globally disable loading of all auto-loaded files.
26632 You may want to use this command with the @samp{-iex} option
26633 (@pxref{Option -init-eval-command}) such as:
26634 @smallexample
26635 $ @kbd{gdb -iex "set auto-load off" untrusted-executable corefile}
26636 @end smallexample
26637
26638 Be aware that system init file (@pxref{System-wide configuration})
26639 and init files from your home directory (@pxref{Home Directory Init File})
26640 still get read (as they come from generally trusted directories).
26641 To prevent @value{GDBN} from auto-loading even those init files, use the
26642 @option{-nx} option (@pxref{Mode Options}), in addition to
26643 @code{set auto-load no}.
26644
26645 @anchor{show auto-load}
26646 @kindex show auto-load
26647 @item show auto-load
26648 Show whether auto-loading of each specific @samp{auto-load} file(s) is enabled
26649 or disabled.
26650
26651 @smallexample
26652 (gdb) show auto-load
26653 gdb-scripts: Auto-loading of canned sequences of commands scripts is on.
26654 libthread-db: Auto-loading of inferior specific libthread_db is on.
26655 local-gdbinit: Auto-loading of .gdbinit script from current directory
26656 is on.
26657 python-scripts: Auto-loading of Python scripts is on.
26658 safe-path: List of directories from which it is safe to auto-load files
26659 is $debugdir:$datadir/auto-load.
26660 scripts-directory: List of directories from which to load auto-loaded scripts
26661 is $debugdir:$datadir/auto-load.
26662 @end smallexample
26663
26664 @anchor{info auto-load}
26665 @kindex info auto-load
26666 @item info auto-load
26667 Print whether each specific @samp{auto-load} file(s) have been auto-loaded or
26668 not.
26669
26670 @smallexample
26671 (gdb) info auto-load
26672 gdb-scripts:
26673 Loaded Script
26674 Yes /home/user/gdb/gdb-gdb.gdb
26675 libthread-db: No auto-loaded libthread-db.
26676 local-gdbinit: Local .gdbinit file "/home/user/gdb/.gdbinit" has been
26677 loaded.
26678 python-scripts:
26679 Loaded Script
26680 Yes /home/user/gdb/gdb-gdb.py
26681 @end smallexample
26682 @end table
26683
26684 These are @value{GDBN} control commands for the auto-loading:
26685
26686 @multitable @columnfractions .5 .5
26687 @item @xref{set auto-load off}.
26688 @tab Disable auto-loading globally.
26689 @item @xref{show auto-load}.
26690 @tab Show setting of all kinds of files.
26691 @item @xref{info auto-load}.
26692 @tab Show state of all kinds of files.
26693 @item @xref{set auto-load gdb-scripts}.
26694 @tab Control for @value{GDBN} command scripts.
26695 @item @xref{show auto-load gdb-scripts}.
26696 @tab Show setting of @value{GDBN} command scripts.
26697 @item @xref{info auto-load gdb-scripts}.
26698 @tab Show state of @value{GDBN} command scripts.
26699 @item @xref{set auto-load python-scripts}.
26700 @tab Control for @value{GDBN} Python scripts.
26701 @item @xref{show auto-load python-scripts}.
26702 @tab Show setting of @value{GDBN} Python scripts.
26703 @item @xref{info auto-load python-scripts}.
26704 @tab Show state of @value{GDBN} Python scripts.
26705 @item @xref{set auto-load guile-scripts}.
26706 @tab Control for @value{GDBN} Guile scripts.
26707 @item @xref{show auto-load guile-scripts}.
26708 @tab Show setting of @value{GDBN} Guile scripts.
26709 @item @xref{info auto-load guile-scripts}.
26710 @tab Show state of @value{GDBN} Guile scripts.
26711 @item @xref{set auto-load scripts-directory}.
26712 @tab Control for @value{GDBN} auto-loaded scripts location.
26713 @item @xref{show auto-load scripts-directory}.
26714 @tab Show @value{GDBN} auto-loaded scripts location.
26715 @item @xref{add-auto-load-scripts-directory}.
26716 @tab Add directory for auto-loaded scripts location list.
26717 @item @xref{set auto-load local-gdbinit}.
26718 @tab Control for init file in the current directory.
26719 @item @xref{show auto-load local-gdbinit}.
26720 @tab Show setting of init file in the current directory.
26721 @item @xref{info auto-load local-gdbinit}.
26722 @tab Show state of init file in the current directory.
26723 @item @xref{set auto-load libthread-db}.
26724 @tab Control for thread debugging library.
26725 @item @xref{show auto-load libthread-db}.
26726 @tab Show setting of thread debugging library.
26727 @item @xref{info auto-load libthread-db}.
26728 @tab Show state of thread debugging library.
26729 @item @xref{set auto-load safe-path}.
26730 @tab Control directories trusted for automatic loading.
26731 @item @xref{show auto-load safe-path}.
26732 @tab Show directories trusted for automatic loading.
26733 @item @xref{add-auto-load-safe-path}.
26734 @tab Add directory trusted for automatic loading.
26735 @end multitable
26736
26737 @menu
26738 * Init File in the Current Directory:: @samp{set/show/info auto-load local-gdbinit}
26739 * libthread_db.so.1 file:: @samp{set/show/info auto-load libthread-db}
26740
26741 * Auto-loading safe path:: @samp{set/show/info auto-load safe-path}
26742 * Auto-loading verbose mode:: @samp{set/show debug auto-load}
26743 @end menu
26744
26745 @node Init File in the Current Directory
26746 @subsection Automatically loading init file in the current directory
26747 @cindex auto-loading init file in the current directory
26748
26749 By default, @value{GDBN} reads and executes the canned sequences of commands
26750 from init file (if any) in the current working directory,
26751 see @ref{Init File in the Current Directory during Startup}.
26752
26753 Note that loading of this local @file{.gdbinit} file also requires accordingly
26754 configured @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26755
26756 @table @code
26757 @anchor{set auto-load local-gdbinit}
26758 @kindex set auto-load local-gdbinit
26759 @item set auto-load local-gdbinit [on|off]
26760 Enable or disable the auto-loading of canned sequences of commands
26761 (@pxref{Sequences}) found in init file in the current directory.
26762
26763 @anchor{show auto-load local-gdbinit}
26764 @kindex show auto-load local-gdbinit
26765 @item show auto-load local-gdbinit
26766 Show whether auto-loading of canned sequences of commands from init file in the
26767 current directory is enabled or disabled.
26768
26769 @anchor{info auto-load local-gdbinit}
26770 @kindex info auto-load local-gdbinit
26771 @item info auto-load local-gdbinit
26772 Print whether canned sequences of commands from init file in the
26773 current directory have been auto-loaded.
26774 @end table
26775
26776 @node libthread_db.so.1 file
26777 @subsection Automatically loading thread debugging library
26778 @cindex auto-loading libthread_db.so.1
26779
26780 This feature is currently present only on @sc{gnu}/Linux native hosts.
26781
26782 @value{GDBN} reads in some cases thread debugging library from places specific
26783 to the inferior (@pxref{set libthread-db-search-path}).
26784
26785 The special @samp{libthread-db-search-path} entry @samp{$sdir} is processed
26786 without checking this @samp{set auto-load libthread-db} switch as system
26787 libraries have to be trusted in general. In all other cases of
26788 @samp{libthread-db-search-path} entries @value{GDBN} checks first if @samp{set
26789 auto-load libthread-db} is enabled before trying to open such thread debugging
26790 library.
26791
26792 Note that loading of this debugging library also requires accordingly configured
26793 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26794
26795 @table @code
26796 @anchor{set auto-load libthread-db}
26797 @kindex set auto-load libthread-db
26798 @item set auto-load libthread-db [on|off]
26799 Enable or disable the auto-loading of inferior specific thread debugging library.
26800
26801 @anchor{show auto-load libthread-db}
26802 @kindex show auto-load libthread-db
26803 @item show auto-load libthread-db
26804 Show whether auto-loading of inferior specific thread debugging library is
26805 enabled or disabled.
26806
26807 @anchor{info auto-load libthread-db}
26808 @kindex info auto-load libthread-db
26809 @item info auto-load libthread-db
26810 Print the list of all loaded inferior specific thread debugging libraries and
26811 for each such library print list of inferior @var{pid}s using it.
26812 @end table
26813
26814 @node Auto-loading safe path
26815 @subsection Security restriction for auto-loading
26816 @cindex auto-loading safe-path
26817
26818 As the files of inferior can come from untrusted source (such as submitted by
26819 an application user) @value{GDBN} does not always load any files automatically.
26820 @value{GDBN} provides the @samp{set auto-load safe-path} setting to list
26821 directories trusted for loading files not explicitly requested by user.
26822 Each directory can also be a shell wildcard pattern.
26823
26824 If the path is not set properly you will see a warning and the file will not
26825 get loaded:
26826
26827 @smallexample
26828 $ ./gdb -q ./gdb
26829 Reading symbols from /home/user/gdb/gdb...
26830 warning: File "/home/user/gdb/gdb-gdb.gdb" auto-loading has been
26831 declined by your `auto-load safe-path' set
26832 to "$debugdir:$datadir/auto-load".
26833 warning: File "/home/user/gdb/gdb-gdb.py" auto-loading has been
26834 declined by your `auto-load safe-path' set
26835 to "$debugdir:$datadir/auto-load".
26836 @end smallexample
26837
26838 @noindent
26839 To instruct @value{GDBN} to go ahead and use the init files anyway,
26840 invoke @value{GDBN} like this:
26841
26842 @smallexample
26843 $ gdb -q -iex "set auto-load safe-path /home/user/gdb" ./gdb
26844 @end smallexample
26845
26846 The list of trusted directories is controlled by the following commands:
26847
26848 @table @code
26849 @anchor{set auto-load safe-path}
26850 @kindex set auto-load safe-path
26851 @item set auto-load safe-path @r{[}@var{directories}@r{]}
26852 Set the list of directories (and their subdirectories) trusted for automatic
26853 loading and execution of scripts. You can also enter a specific trusted file.
26854 Each directory can also be a shell wildcard pattern; wildcards do not match
26855 directory separator - see @code{FNM_PATHNAME} for system function @code{fnmatch}
26856 (@pxref{Wildcard Matching, fnmatch, , libc, GNU C Library Reference Manual}).
26857 If you omit @var{directories}, @samp{auto-load safe-path} will be reset to
26858 its default value as specified during @value{GDBN} compilation.
26859
26860 The list of directories uses path separator (@samp{:} on GNU and Unix
26861 systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
26862 to the @env{PATH} environment variable.
26863
26864 @anchor{show auto-load safe-path}
26865 @kindex show auto-load safe-path
26866 @item show auto-load safe-path
26867 Show the list of directories trusted for automatic loading and execution of
26868 scripts.
26869
26870 @anchor{add-auto-load-safe-path}
26871 @kindex add-auto-load-safe-path
26872 @item add-auto-load-safe-path
26873 Add an entry (or list of entries) to the list of directories trusted for
26874 automatic loading and execution of scripts. Multiple entries may be delimited
26875 by the host platform path separator in use.
26876 @end table
26877
26878 This variable defaults to what @code{--with-auto-load-dir} has been configured
26879 to (@pxref{with-auto-load-dir}). @file{$debugdir} and @file{$datadir}
26880 substitution applies the same as for @ref{set auto-load scripts-directory}.
26881 The default @code{set auto-load safe-path} value can be also overriden by
26882 @value{GDBN} configuration option @option{--with-auto-load-safe-path}.
26883
26884 Setting this variable to @file{/} disables this security protection,
26885 corresponding @value{GDBN} configuration option is
26886 @option{--without-auto-load-safe-path}.
26887 This variable is supposed to be set to the system directories writable by the
26888 system superuser only. Users can add their source directories in init files in
26889 their home directories (@pxref{Home Directory Init File}). See also deprecated
26890 init file in the current directory
26891 (@pxref{Init File in the Current Directory during Startup}).
26892
26893 To force @value{GDBN} to load the files it declined to load in the previous
26894 example, you could use one of the following ways:
26895
26896 @table @asis
26897 @item @file{~/.gdbinit}: @samp{add-auto-load-safe-path ~/src/gdb}
26898 Specify this trusted directory (or a file) as additional component of the list.
26899 You have to specify also any existing directories displayed by
26900 by @samp{show auto-load safe-path} (such as @samp{/usr:/bin} in this example).
26901
26902 @item @kbd{gdb -iex "set auto-load safe-path /usr:/bin:~/src/gdb" @dots{}}
26903 Specify this directory as in the previous case but just for a single
26904 @value{GDBN} session.
26905
26906 @item @kbd{gdb -iex "set auto-load safe-path /" @dots{}}
26907 Disable auto-loading safety for a single @value{GDBN} session.
26908 This assumes all the files you debug during this @value{GDBN} session will come
26909 from trusted sources.
26910
26911 @item @kbd{./configure --without-auto-load-safe-path}
26912 During compilation of @value{GDBN} you may disable any auto-loading safety.
26913 This assumes all the files you will ever debug with this @value{GDBN} come from
26914 trusted sources.
26915 @end table
26916
26917 On the other hand you can also explicitly forbid automatic files loading which
26918 also suppresses any such warning messages:
26919
26920 @table @asis
26921 @item @kbd{gdb -iex "set auto-load no" @dots{}}
26922 You can use @value{GDBN} command-line option for a single @value{GDBN} session.
26923
26924 @item @file{~/.gdbinit}: @samp{set auto-load no}
26925 Disable auto-loading globally for the user
26926 (@pxref{Home Directory Init File}). While it is improbable, you could also
26927 use system init file instead (@pxref{System-wide configuration}).
26928 @end table
26929
26930 This setting applies to the file names as entered by user. If no entry matches
26931 @value{GDBN} tries as a last resort to also resolve all the file names into
26932 their canonical form (typically resolving symbolic links) and compare the
26933 entries again. @value{GDBN} already canonicalizes most of the filenames on its
26934 own before starting the comparison so a canonical form of directories is
26935 recommended to be entered.
26936
26937 @node Auto-loading verbose mode
26938 @subsection Displaying files tried for auto-load
26939 @cindex auto-loading verbose mode
26940
26941 For better visibility of all the file locations where you can place scripts to
26942 be auto-loaded with inferior --- or to protect yourself against accidental
26943 execution of untrusted scripts --- @value{GDBN} provides a feature for printing
26944 all the files attempted to be loaded. Both existing and non-existing files may
26945 be printed.
26946
26947 For example the list of directories from which it is safe to auto-load files
26948 (@pxref{Auto-loading safe path}) applies also to canonicalized filenames which
26949 may not be too obvious while setting it up.
26950
26951 @smallexample
26952 (gdb) set debug auto-load on
26953 (gdb) file ~/src/t/true
26954 auto-load: Loading canned sequences of commands script "/tmp/true-gdb.gdb"
26955 for objfile "/tmp/true".
26956 auto-load: Updating directories of "/usr:/opt".
26957 auto-load: Using directory "/usr".
26958 auto-load: Using directory "/opt".
26959 warning: File "/tmp/true-gdb.gdb" auto-loading has been declined
26960 by your `auto-load safe-path' set to "/usr:/opt".
26961 @end smallexample
26962
26963 @table @code
26964 @anchor{set debug auto-load}
26965 @kindex set debug auto-load
26966 @item set debug auto-load [on|off]
26967 Set whether to print the filenames attempted to be auto-loaded.
26968
26969 @anchor{show debug auto-load}
26970 @kindex show debug auto-load
26971 @item show debug auto-load
26972 Show whether printing of the filenames attempted to be auto-loaded is turned
26973 on or off.
26974 @end table
26975
26976 @node Messages/Warnings
26977 @section Optional Warnings and Messages
26978
26979 @cindex verbose operation
26980 @cindex optional warnings
26981 By default, @value{GDBN} is silent about its inner workings. If you are
26982 running on a slow machine, you may want to use the @code{set verbose}
26983 command. This makes @value{GDBN} tell you when it does a lengthy
26984 internal operation, so you will not think it has crashed.
26985
26986 Currently, the messages controlled by @code{set verbose} are those
26987 which announce that the symbol table for a source file is being read;
26988 see @code{symbol-file} in @ref{Files, ,Commands to Specify Files}.
26989
26990 @table @code
26991 @kindex set verbose
26992 @item set verbose on
26993 Enables @value{GDBN} output of certain informational messages.
26994
26995 @item set verbose off
26996 Disables @value{GDBN} output of certain informational messages.
26997
26998 @kindex show verbose
26999 @item show verbose
27000 Displays whether @code{set verbose} is on or off.
27001 @end table
27002
27003 By default, if @value{GDBN} encounters bugs in the symbol table of an
27004 object file, it is silent; but if you are debugging a compiler, you may
27005 find this information useful (@pxref{Symbol Errors, ,Errors Reading
27006 Symbol Files}).
27007
27008 @table @code
27009
27010 @kindex set complaints
27011 @item set complaints @var{limit}
27012 Permits @value{GDBN} to output @var{limit} complaints about each type of
27013 unusual symbols before becoming silent about the problem. Set
27014 @var{limit} to zero to suppress all complaints; set it to a large number
27015 to prevent complaints from being suppressed.
27016
27017 @kindex show complaints
27018 @item show complaints
27019 Displays how many symbol complaints @value{GDBN} is permitted to produce.
27020
27021 @end table
27022
27023 @anchor{confirmation requests}
27024 By default, @value{GDBN} is cautious, and asks what sometimes seems to be a
27025 lot of stupid questions to confirm certain commands. For example, if
27026 you try to run a program which is already running:
27027
27028 @smallexample
27029 (@value{GDBP}) run
27030 The program being debugged has been started already.
27031 Start it from the beginning? (y or n)
27032 @end smallexample
27033
27034 If you are willing to unflinchingly face the consequences of your own
27035 commands, you can disable this ``feature'':
27036
27037 @table @code
27038
27039 @kindex set confirm
27040 @cindex flinching
27041 @cindex confirmation
27042 @cindex stupid questions
27043 @item set confirm off
27044 Disables confirmation requests. Note that running @value{GDBN} with
27045 the @option{--batch} option (@pxref{Mode Options, -batch}) also
27046 automatically disables confirmation requests.
27047
27048 @item set confirm on
27049 Enables confirmation requests (the default).
27050
27051 @kindex show confirm
27052 @item show confirm
27053 Displays state of confirmation requests.
27054
27055 @end table
27056
27057 @cindex command tracing
27058 If you need to debug user-defined commands or sourced files you may find it
27059 useful to enable @dfn{command tracing}. In this mode each command will be
27060 printed as it is executed, prefixed with one or more @samp{+} symbols, the
27061 quantity denoting the call depth of each command.
27062
27063 @table @code
27064 @kindex set trace-commands
27065 @cindex command scripts, debugging
27066 @item set trace-commands on
27067 Enable command tracing.
27068 @item set trace-commands off
27069 Disable command tracing.
27070 @item show trace-commands
27071 Display the current state of command tracing.
27072 @end table
27073
27074 @node Debugging Output
27075 @section Optional Messages about Internal Happenings
27076 @cindex optional debugging messages
27077
27078 @value{GDBN} has commands that enable optional debugging messages from
27079 various @value{GDBN} subsystems; normally these commands are of
27080 interest to @value{GDBN} maintainers, or when reporting a bug. This
27081 section documents those commands.
27082
27083 @table @code
27084 @kindex set exec-done-display
27085 @item set exec-done-display
27086 Turns on or off the notification of asynchronous commands'
27087 completion. When on, @value{GDBN} will print a message when an
27088 asynchronous command finishes its execution. The default is off.
27089 @kindex show exec-done-display
27090 @item show exec-done-display
27091 Displays the current setting of asynchronous command completion
27092 notification.
27093
27094 @kindex set debug
27095 @cindex ARM AArch64
27096 @item set debug aarch64
27097 Turns on or off display of debugging messages related to ARM AArch64.
27098 The default is off.
27099 @kindex show debug
27100 @item show debug aarch64
27101 Displays the current state of displaying debugging messages related to
27102 ARM AArch64.
27103
27104 @cindex gdbarch debugging info
27105 @cindex architecture debugging info
27106 @item set debug arch
27107 Turns on or off display of gdbarch debugging info. The default is off
27108 @item show debug arch
27109 Displays the current state of displaying gdbarch debugging info.
27110
27111 @item set debug aix-solib
27112 @cindex AIX shared library debugging
27113 Control display of debugging messages from the AIX shared library
27114 support module. The default is off.
27115 @item show debug aix-solib
27116 Show the current state of displaying AIX shared library debugging messages.
27117
27118 @item set debug aix-thread
27119 @cindex AIX threads
27120 Display debugging messages about inner workings of the AIX thread
27121 module.
27122 @item show debug aix-thread
27123 Show the current state of AIX thread debugging info display.
27124
27125 @item set debug check-physname
27126 @cindex physname
27127 Check the results of the ``physname'' computation. When reading DWARF
27128 debugging information for C@t{++}, @value{GDBN} attempts to compute
27129 each entity's name. @value{GDBN} can do this computation in two
27130 different ways, depending on exactly what information is present.
27131 When enabled, this setting causes @value{GDBN} to compute the names
27132 both ways and display any discrepancies.
27133 @item show debug check-physname
27134 Show the current state of ``physname'' checking.
27135
27136 @item set debug coff-pe-read
27137 @cindex COFF/PE exported symbols
27138 Control display of debugging messages related to reading of COFF/PE
27139 exported symbols. The default is off.
27140 @item show debug coff-pe-read
27141 Displays the current state of displaying debugging messages related to
27142 reading of COFF/PE exported symbols.
27143
27144 @item set debug dwarf-die
27145 @cindex DWARF DIEs
27146 Dump DWARF DIEs after they are read in.
27147 The value is the number of nesting levels to print.
27148 A value of zero turns off the display.
27149 @item show debug dwarf-die
27150 Show the current state of DWARF DIE debugging.
27151
27152 @item set debug dwarf-line
27153 @cindex DWARF Line Tables
27154 Turns on or off display of debugging messages related to reading
27155 DWARF line tables. The default is 0 (off).
27156 A value of 1 provides basic information.
27157 A value greater than 1 provides more verbose information.
27158 @item show debug dwarf-line
27159 Show the current state of DWARF line table debugging.
27160
27161 @item set debug dwarf-read
27162 @cindex DWARF Reading
27163 Turns on or off display of debugging messages related to reading
27164 DWARF debug info. The default is 0 (off).
27165 A value of 1 provides basic information.
27166 A value greater than 1 provides more verbose information.
27167 @item show debug dwarf-read
27168 Show the current state of DWARF reader debugging.
27169
27170 @item set debug displaced
27171 @cindex displaced stepping debugging info
27172 Turns on or off display of @value{GDBN} debugging info for the
27173 displaced stepping support. The default is off.
27174 @item show debug displaced
27175 Displays the current state of displaying @value{GDBN} debugging info
27176 related to displaced stepping.
27177
27178 @item set debug event
27179 @cindex event debugging info
27180 Turns on or off display of @value{GDBN} event debugging info. The
27181 default is off.
27182 @item show debug event
27183 Displays the current state of displaying @value{GDBN} event debugging
27184 info.
27185
27186 @item set debug event-loop
27187 @cindex event-loop debugging
27188 Controls output of debugging info about the event loop. The possible
27189 values are @samp{off}, @samp{all} (shows all debugging info) and
27190 @samp{all-except-ui} (shows all debugging info except those about
27191 UI-related events).
27192 @item show debug event-loop
27193 Shows the current state of displaying debugging info about the event
27194 loop.
27195
27196 @item set debug expression
27197 @cindex expression debugging info
27198 Turns on or off display of debugging info about @value{GDBN}
27199 expression parsing. The default is off.
27200 @item show debug expression
27201 Displays the current state of displaying debugging info about
27202 @value{GDBN} expression parsing.
27203
27204 @item set debug fbsd-lwp
27205 @cindex FreeBSD LWP debug messages
27206 Turns on or off debugging messages from the FreeBSD LWP debug support.
27207 @item show debug fbsd-lwp
27208 Show the current state of FreeBSD LWP debugging messages.
27209
27210 @item set debug fbsd-nat
27211 @cindex FreeBSD native target debug messages
27212 Turns on or off debugging messages from the FreeBSD native target.
27213 @item show debug fbsd-nat
27214 Show the current state of FreeBSD native target debugging messages.
27215
27216 @item set debug fortran-array-slicing
27217 @cindex fortran array slicing debugging info
27218 Turns on or off display of @value{GDBN} Fortran array slicing
27219 debugging info. The default is off.
27220
27221 @item show debug fortran-array-slicing
27222 Displays the current state of displaying @value{GDBN} Fortran array
27223 slicing debugging info.
27224
27225 @item set debug frame
27226 @cindex frame debugging info
27227 Turns on or off display of @value{GDBN} frame debugging info. The
27228 default is off.
27229 @item show debug frame
27230 Displays the current state of displaying @value{GDBN} frame debugging
27231 info.
27232
27233 @item set debug gnu-nat
27234 @cindex @sc{gnu}/Hurd debug messages
27235 Turn on or off debugging messages from the @sc{gnu}/Hurd debug support.
27236 @item show debug gnu-nat
27237 Show the current state of @sc{gnu}/Hurd debugging messages.
27238
27239 @item set debug infrun
27240 @cindex inferior debugging info
27241 Turns on or off display of @value{GDBN} debugging info for running the inferior.
27242 The default is off. @file{infrun.c} contains GDB's runtime state machine used
27243 for implementing operations such as single-stepping the inferior.
27244 @item show debug infrun
27245 Displays the current state of @value{GDBN} inferior debugging.
27246
27247 @item set debug jit
27248 @cindex just-in-time compilation, debugging messages
27249 Turn on or off debugging messages from JIT debug support.
27250 @item show debug jit
27251 Displays the current state of @value{GDBN} JIT debugging.
27252
27253 @item set debug linux-nat @r{[}on@r{|}off@r{]}
27254 @cindex @sc{gnu}/Linux native target debug messages
27255 @cindex Linux native targets
27256 Turn on or off debugging messages from the Linux native target debug support.
27257 @item show debug linux-nat
27258 Show the current state of Linux native target debugging messages.
27259
27260 @item set debug linux-namespaces
27261 @cindex @sc{gnu}/Linux namespaces debug messages
27262 Turn on or off debugging messages from the Linux namespaces debug support.
27263 @item show debug linux-namespaces
27264 Show the current state of Linux namespaces debugging messages.
27265
27266 @item set debug mach-o
27267 @cindex Mach-O symbols processing
27268 Control display of debugging messages related to Mach-O symbols
27269 processing. The default is off.
27270 @item show debug mach-o
27271 Displays the current state of displaying debugging messages related to
27272 reading of COFF/PE exported symbols.
27273
27274 @item set debug notification
27275 @cindex remote async notification debugging info
27276 Turn on or off debugging messages about remote async notification.
27277 The default is off.
27278 @item show debug notification
27279 Displays the current state of remote async notification debugging messages.
27280
27281 @item set debug observer
27282 @cindex observer debugging info
27283 Turns on or off display of @value{GDBN} observer debugging. This
27284 includes info such as the notification of observable events.
27285 @item show debug observer
27286 Displays the current state of observer debugging.
27287
27288 @item set debug overload
27289 @cindex C@t{++} overload debugging info
27290 Turns on or off display of @value{GDBN} C@t{++} overload debugging
27291 info. This includes info such as ranking of functions, etc. The default
27292 is off.
27293 @item show debug overload
27294 Displays the current state of displaying @value{GDBN} C@t{++} overload
27295 debugging info.
27296
27297 @cindex expression parser, debugging info
27298 @cindex debug expression parser
27299 @item set debug parser
27300 Turns on or off the display of expression parser debugging output.
27301 Internally, this sets the @code{yydebug} variable in the expression
27302 parser. @xref{Tracing, , Tracing Your Parser, bison, Bison}, for
27303 details. The default is off.
27304 @item show debug parser
27305 Show the current state of expression parser debugging.
27306
27307 @cindex packets, reporting on stdout
27308 @cindex serial connections, debugging
27309 @cindex debug remote protocol
27310 @cindex remote protocol debugging
27311 @cindex display remote packets
27312 @item set debug remote
27313 Turns on or off display of reports on all packets sent back and forth across
27314 the serial line to the remote machine. The info is printed on the
27315 @value{GDBN} standard output stream. The default is off.
27316 @item show debug remote
27317 Displays the state of display of remote packets.
27318
27319 @item set debug remote-packet-max-chars
27320 Sets the maximum number of characters to display for each remote packet when
27321 @code{set debug remote} is on. This is useful to prevent @value{GDBN} from
27322 displaying lengthy remote packets and polluting the console.
27323
27324 The default value is @code{512}, which means @value{GDBN} will truncate each
27325 remote packet after 512 bytes.
27326
27327 Setting this option to @code{unlimited} will disable truncation and will output
27328 the full length of the remote packets.
27329 @item show debug remote-packet-max-chars
27330 Displays the number of bytes to output for remote packet debugging.
27331
27332 @item set debug separate-debug-file
27333 Turns on or off display of debug output about separate debug file search.
27334 @item show debug separate-debug-file
27335 Displays the state of separate debug file search debug output.
27336
27337 @item set debug serial
27338 Turns on or off display of @value{GDBN} serial debugging info. The
27339 default is off.
27340 @item show debug serial
27341 Displays the current state of displaying @value{GDBN} serial debugging
27342 info.
27343
27344 @item set debug solib-frv
27345 @cindex FR-V shared-library debugging
27346 Turn on or off debugging messages for FR-V shared-library code.
27347 @item show debug solib-frv
27348 Display the current state of FR-V shared-library code debugging
27349 messages.
27350
27351 @item set debug symbol-lookup
27352 @cindex symbol lookup
27353 Turns on or off display of debugging messages related to symbol lookup.
27354 The default is 0 (off).
27355 A value of 1 provides basic information.
27356 A value greater than 1 provides more verbose information.
27357 @item show debug symbol-lookup
27358 Show the current state of symbol lookup debugging messages.
27359
27360 @item set debug symfile
27361 @cindex symbol file functions
27362 Turns on or off display of debugging messages related to symbol file functions.
27363 The default is off. @xref{Files}.
27364 @item show debug symfile
27365 Show the current state of symbol file debugging messages.
27366
27367 @item set debug symtab-create
27368 @cindex symbol table creation
27369 Turns on or off display of debugging messages related to symbol table creation.
27370 The default is 0 (off).
27371 A value of 1 provides basic information.
27372 A value greater than 1 provides more verbose information.
27373 @item show debug symtab-create
27374 Show the current state of symbol table creation debugging.
27375
27376 @item set debug target
27377 @cindex target debugging info
27378 Turns on or off display of @value{GDBN} target debugging info. This info
27379 includes what is going on at the target level of GDB, as it happens. The
27380 default is 0. Set it to 1 to track events, and to 2 to also track the
27381 value of large memory transfers.
27382 @item show debug target
27383 Displays the current state of displaying @value{GDBN} target debugging
27384 info.
27385
27386 @item set debug timestamp
27387 @cindex timestamping debugging info
27388 Turns on or off display of timestamps with @value{GDBN} debugging info.
27389 When enabled, seconds and microseconds are displayed before each debugging
27390 message.
27391 @item show debug timestamp
27392 Displays the current state of displaying timestamps with @value{GDBN}
27393 debugging info.
27394
27395 @item set debug varobj
27396 @cindex variable object debugging info
27397 Turns on or off display of @value{GDBN} variable object debugging
27398 info. The default is off.
27399 @item show debug varobj
27400 Displays the current state of displaying @value{GDBN} variable object
27401 debugging info.
27402
27403 @item set debug xml
27404 @cindex XML parser debugging
27405 Turn on or off debugging messages for built-in XML parsers.
27406 @item show debug xml
27407 Displays the current state of XML debugging messages.
27408 @end table
27409
27410 @node Other Misc Settings
27411 @section Other Miscellaneous Settings
27412 @cindex miscellaneous settings
27413
27414 @table @code
27415 @kindex set interactive-mode
27416 @item set interactive-mode
27417 If @code{on}, forces @value{GDBN} to assume that GDB was started
27418 in a terminal. In practice, this means that @value{GDBN} should wait
27419 for the user to answer queries generated by commands entered at
27420 the command prompt. If @code{off}, forces @value{GDBN} to operate
27421 in the opposite mode, and it uses the default answers to all queries.
27422 If @code{auto} (the default), @value{GDBN} tries to determine whether
27423 its standard input is a terminal, and works in interactive-mode if it
27424 is, non-interactively otherwise.
27425
27426 In the vast majority of cases, the debugger should be able to guess
27427 correctly which mode should be used. But this setting can be useful
27428 in certain specific cases, such as running a MinGW @value{GDBN}
27429 inside a cygwin window.
27430
27431 @kindex show interactive-mode
27432 @item show interactive-mode
27433 Displays whether the debugger is operating in interactive mode or not.
27434 @end table
27435
27436 @table @code
27437 @kindex set suppress-cli-notifications
27438 @item set suppress-cli-notifications
27439 If @code{on}, command-line-interface (CLI) notifications that are
27440 printed by @value{GDBN} are suppressed. If @code{off}, the
27441 notifications are printed as usual. The default value is @code{off}.
27442 CLI notifications occur when you change the selected context or when
27443 the program being debugged stops, as detailed below.
27444
27445 @table @emph
27446 @item User-selected context changes:
27447 When you change the selected context (i.e.@: the current inferior,
27448 thread and/or the frame), @value{GDBN} prints information about the
27449 new context. For example, the default behavior is below:
27450
27451 @smallexample
27452 (gdb) inferior 1
27453 [Switching to inferior 1 [process 634] (/tmp/test)]
27454 [Switching to thread 1 (process 634)]
27455 #0 main () at test.c:3
27456 3 return 0;
27457 (gdb)
27458 @end smallexample
27459
27460 When the notifications are suppressed, the new context is not printed:
27461
27462 @smallexample
27463 (gdb) set suppress-cli-notifications on
27464 (gdb) inferior 1
27465 (gdb)
27466 @end smallexample
27467
27468 @item The program being debugged stops:
27469 When the program you are debugging stops (e.g.@: because of hitting a
27470 breakpoint, completing source-stepping, an interrupt, etc.),
27471 @value{GDBN} prints information about the stop event. For example,
27472 below is a breakpoint hit:
27473
27474 @smallexample
27475 (gdb) break test.c:3
27476 Breakpoint 2 at 0x555555555155: file test.c, line 3.
27477 (gdb) continue
27478 Continuing.
27479
27480 Breakpoint 2, main () at test.c:3
27481 3 return 0;
27482 (gdb)
27483 @end smallexample
27484
27485 When the notifications are suppressed, the output becomes:
27486
27487 @smallexample
27488 (gdb) break test.c:3
27489 Breakpoint 2 at 0x555555555155: file test.c, line 3.
27490 (gdb) set suppress-cli-notifications on
27491 (gdb) continue
27492 Continuing.
27493 (gdb)
27494 @end smallexample
27495
27496 Suppressing CLI notifications may be useful in scripts to obtain a
27497 reduced output from a list of commands.
27498 @end table
27499
27500 @kindex show suppress-cli-notifications
27501 @item show suppress-cli-notifications
27502 Displays whether printing CLI notifications is suppressed or not.
27503 @end table
27504
27505 @node Extending GDB
27506 @chapter Extending @value{GDBN}
27507 @cindex extending GDB
27508
27509 @value{GDBN} provides several mechanisms for extension.
27510 @value{GDBN} also provides the ability to automatically load
27511 extensions when it reads a file for debugging. This allows the
27512 user to automatically customize @value{GDBN} for the program
27513 being debugged.
27514
27515 To facilitate the use of extension languages, @value{GDBN} is capable
27516 of evaluating the contents of a file. When doing so, @value{GDBN}
27517 can recognize which extension language is being used by looking at
27518 the filename extension. Files with an unrecognized filename extension
27519 are always treated as a @value{GDBN} Command Files.
27520 @xref{Command Files,, Command files}.
27521
27522 You can control how @value{GDBN} evaluates these files with the following
27523 setting:
27524
27525 @table @code
27526 @kindex set script-extension
27527 @kindex show script-extension
27528 @item set script-extension off
27529 All scripts are always evaluated as @value{GDBN} Command Files.
27530
27531 @item set script-extension soft
27532 The debugger determines the scripting language based on filename
27533 extension. If this scripting language is supported, @value{GDBN}
27534 evaluates the script using that language. Otherwise, it evaluates
27535 the file as a @value{GDBN} Command File.
27536
27537 @item set script-extension strict
27538 The debugger determines the scripting language based on filename
27539 extension, and evaluates the script using that language. If the
27540 language is not supported, then the evaluation fails.
27541
27542 @item show script-extension
27543 Display the current value of the @code{script-extension} option.
27544
27545 @end table
27546
27547 @ifset SYSTEM_GDBINIT_DIR
27548 This setting is not used for files in the system-wide gdbinit directory.
27549 Files in that directory must have an extension matching their language,
27550 or have a @file{.gdb} extension to be interpreted as regular @value{GDBN}
27551 commands. @xref{Startup}.
27552 @end ifset
27553
27554 @menu
27555 * Sequences:: Canned Sequences of @value{GDBN} Commands
27556 * Aliases:: Command Aliases
27557 * Python:: Extending @value{GDBN} using Python
27558 * Guile:: Extending @value{GDBN} using Guile
27559 * Auto-loading extensions:: Automatically loading extensions
27560 * Multiple Extension Languages:: Working with multiple extension languages
27561 @end menu
27562
27563 @node Sequences
27564 @section Canned Sequences of Commands
27565
27566 Aside from breakpoint commands (@pxref{Break Commands, ,Breakpoint
27567 Command Lists}), @value{GDBN} provides two ways to store sequences of
27568 commands for execution as a unit: user-defined commands and command
27569 files.
27570
27571 @menu
27572 * Define:: How to define your own commands
27573 * Hooks:: Hooks for user-defined commands
27574 * Command Files:: How to write scripts of commands to be stored in a file
27575 * Output:: Commands for controlled output
27576 * Auto-loading sequences:: Controlling auto-loaded command files
27577 @end menu
27578
27579 @node Define
27580 @subsection User-defined Commands
27581
27582 @cindex user-defined command
27583 @cindex arguments, to user-defined commands
27584 A @dfn{user-defined command} is a sequence of @value{GDBN} commands to
27585 which you assign a new name as a command. This is done with the
27586 @code{define} command. User commands may accept an unlimited number of arguments
27587 separated by whitespace. Arguments are accessed within the user command
27588 via @code{$arg0@dots{}$argN}. A trivial example:
27589
27590 @smallexample
27591 define adder
27592 print $arg0 + $arg1 + $arg2
27593 end
27594 @end smallexample
27595
27596 @noindent
27597 To execute the command use:
27598
27599 @smallexample
27600 adder 1 2 3
27601 @end smallexample
27602
27603 @noindent
27604 This defines the command @code{adder}, which prints the sum of
27605 its three arguments. Note the arguments are text substitutions, so they may
27606 reference variables, use complex expressions, or even perform inferior
27607 functions calls.
27608
27609 @cindex argument count in user-defined commands
27610 @cindex how many arguments (user-defined commands)
27611 In addition, @code{$argc} may be used to find out how many arguments have
27612 been passed.
27613
27614 @smallexample
27615 define adder
27616 if $argc == 2
27617 print $arg0 + $arg1
27618 end
27619 if $argc == 3
27620 print $arg0 + $arg1 + $arg2
27621 end
27622 end
27623 @end smallexample
27624
27625 Combining with the @code{eval} command (@pxref{eval}) makes it easier
27626 to process a variable number of arguments:
27627
27628 @smallexample
27629 define adder
27630 set $i = 0
27631 set $sum = 0
27632 while $i < $argc
27633 eval "set $sum = $sum + $arg%d", $i
27634 set $i = $i + 1
27635 end
27636 print $sum
27637 end
27638 @end smallexample
27639
27640 @table @code
27641
27642 @kindex define
27643 @item define @var{commandname}
27644 Define a command named @var{commandname}. If there is already a command
27645 by that name, you are asked to confirm that you want to redefine it.
27646 The argument @var{commandname} may be a bare command name consisting of letters,
27647 numbers, dashes, dots, and underscores. It may also start with any
27648 predefined or user-defined prefix command.
27649 For example, @samp{define target my-target} creates
27650 a user-defined @samp{target my-target} command.
27651
27652 The definition of the command is made up of other @value{GDBN} command lines,
27653 which are given following the @code{define} command. The end of these
27654 commands is marked by a line containing @code{end}.
27655
27656 @kindex document
27657 @kindex end@r{ (user-defined commands)}
27658 @item document @var{commandname}
27659 Document the user-defined command @var{commandname}, so that it can be
27660 accessed by @code{help}. The command @var{commandname} must already be
27661 defined. This command reads lines of documentation just as @code{define}
27662 reads the lines of the command definition, ending with @code{end}.
27663 After the @code{document} command is finished, @code{help} on command
27664 @var{commandname} displays the documentation you have written.
27665
27666 You may use the @code{document} command again to change the
27667 documentation of a command. Redefining the command with @code{define}
27668 does not change the documentation.
27669
27670 @kindex define-prefix
27671 @item define-prefix @var{commandname}
27672 Define or mark the command @var{commandname} as a user-defined prefix
27673 command. Once marked, @var{commandname} can be used as prefix command
27674 by the @code{define} command.
27675 Note that @code{define-prefix} can be used with a not yet defined
27676 @var{commandname}. In such a case, @var{commandname} is defined as
27677 an empty user-defined command.
27678 In case you redefine a command that was marked as a user-defined
27679 prefix command, the subcommands of the redefined command are kept
27680 (and @value{GDBN} indicates so to the user).
27681
27682 Example:
27683 @example
27684 (gdb) define-prefix abc
27685 (gdb) define-prefix abc def
27686 (gdb) define abc def
27687 Type commands for definition of "abc def".
27688 End with a line saying just "end".
27689 >echo command initial def\n
27690 >end
27691 (gdb) define abc def ghi
27692 Type commands for definition of "abc def ghi".
27693 End with a line saying just "end".
27694 >echo command ghi\n
27695 >end
27696 (gdb) define abc def
27697 Keeping subcommands of prefix command "def".
27698 Redefine command "def"? (y or n) y
27699 Type commands for definition of "abc def".
27700 End with a line saying just "end".
27701 >echo command def\n
27702 >end
27703 (gdb) abc def ghi
27704 command ghi
27705 (gdb) abc def
27706 command def
27707 (gdb)
27708 @end example
27709
27710 @kindex dont-repeat
27711 @cindex don't repeat command
27712 @item dont-repeat
27713 Used inside a user-defined command, this tells @value{GDBN} that this
27714 command should not be repeated when the user hits @key{RET}
27715 (@pxref{Command Syntax, repeat last command}).
27716
27717 @kindex help user-defined
27718 @item help user-defined
27719 List all user-defined commands and all python commands defined in class
27720 COMMAND_USER. The first line of the documentation or docstring is
27721 included (if any).
27722
27723 @kindex show user
27724 @item show user
27725 @itemx show user @var{commandname}
27726 Display the @value{GDBN} commands used to define @var{commandname} (but
27727 not its documentation). If no @var{commandname} is given, display the
27728 definitions for all user-defined commands.
27729 This does not work for user-defined python commands.
27730
27731 @cindex infinite recursion in user-defined commands
27732 @kindex show max-user-call-depth
27733 @kindex set max-user-call-depth
27734 @item show max-user-call-depth
27735 @itemx set max-user-call-depth
27736 The value of @code{max-user-call-depth} controls how many recursion
27737 levels are allowed in user-defined commands before @value{GDBN} suspects an
27738 infinite recursion and aborts the command.
27739 This does not apply to user-defined python commands.
27740 @end table
27741
27742 In addition to the above commands, user-defined commands frequently
27743 use control flow commands, described in @ref{Command Files}.
27744
27745 When user-defined commands are executed, the
27746 commands of the definition are not printed. An error in any command
27747 stops execution of the user-defined command.
27748
27749 If used interactively, commands that would ask for confirmation proceed
27750 without asking when used inside a user-defined command. Many @value{GDBN}
27751 commands that normally print messages to say what they are doing omit the
27752 messages when used in a user-defined command.
27753
27754 @node Hooks
27755 @subsection User-defined Command Hooks
27756 @cindex command hooks
27757 @cindex hooks, for commands
27758 @cindex hooks, pre-command
27759
27760 @kindex hook
27761 You may define @dfn{hooks}, which are a special kind of user-defined
27762 command. Whenever you run the command @samp{foo}, if the user-defined
27763 command @samp{hook-foo} exists, it is executed (with no arguments)
27764 before that command.
27765
27766 @cindex hooks, post-command
27767 @kindex hookpost
27768 A hook may also be defined which is run after the command you executed.
27769 Whenever you run the command @samp{foo}, if the user-defined command
27770 @samp{hookpost-foo} exists, it is executed (with no arguments) after
27771 that command. Post-execution hooks may exist simultaneously with
27772 pre-execution hooks, for the same command.
27773
27774 It is valid for a hook to call the command which it hooks. If this
27775 occurs, the hook is not re-executed, thereby avoiding infinite recursion.
27776
27777 @c It would be nice if hookpost could be passed a parameter indicating
27778 @c if the command it hooks executed properly or not. FIXME!
27779
27780 @kindex stop@r{, a pseudo-command}
27781 In addition, a pseudo-command, @samp{stop} exists. Defining
27782 (@samp{hook-stop}) makes the associated commands execute every time
27783 execution stops in your program: before breakpoint commands are run,
27784 displays are printed, or the stack frame is printed.
27785
27786 For example, to ignore @code{SIGALRM} signals while
27787 single-stepping, but treat them normally during normal execution,
27788 you could define:
27789
27790 @smallexample
27791 define hook-stop
27792 handle SIGALRM nopass
27793 end
27794
27795 define hook-run
27796 handle SIGALRM pass
27797 end
27798
27799 define hook-continue
27800 handle SIGALRM pass
27801 end
27802 @end smallexample
27803
27804 As a further example, to hook at the beginning and end of the @code{echo}
27805 command, and to add extra text to the beginning and end of the message,
27806 you could define:
27807
27808 @smallexample
27809 define hook-echo
27810 echo <<<---
27811 end
27812
27813 define hookpost-echo
27814 echo --->>>\n
27815 end
27816
27817 (@value{GDBP}) echo Hello World
27818 <<<---Hello World--->>>
27819 (@value{GDBP})
27820
27821 @end smallexample
27822
27823 You can define a hook for any single-word command in @value{GDBN}, but
27824 not for command aliases; you should define a hook for the basic command
27825 name, e.g.@: @code{backtrace} rather than @code{bt}.
27826 @c FIXME! So how does Joe User discover whether a command is an alias
27827 @c or not?
27828 You can hook a multi-word command by adding @code{hook-} or
27829 @code{hookpost-} to the last word of the command, e.g.@:
27830 @samp{define target hook-remote} to add a hook to @samp{target remote}.
27831
27832 If an error occurs during the execution of your hook, execution of
27833 @value{GDBN} commands stops and @value{GDBN} issues a prompt
27834 (before the command that you actually typed had a chance to run).
27835
27836 If you try to define a hook which does not match any known command, you
27837 get a warning from the @code{define} command.
27838
27839 @node Command Files
27840 @subsection Command Files
27841
27842 @cindex command files
27843 @cindex scripting commands
27844 A command file for @value{GDBN} is a text file made of lines that are
27845 @value{GDBN} commands. Comments (lines starting with @kbd{#}) may
27846 also be included. An empty line in a command file does nothing; it
27847 does not mean to repeat the last command, as it would from the
27848 terminal.
27849
27850 You can request the execution of a command file with the @code{source}
27851 command. Note that the @code{source} command is also used to evaluate
27852 scripts that are not Command Files. The exact behavior can be configured
27853 using the @code{script-extension} setting.
27854 @xref{Extending GDB,, Extending GDB}.
27855
27856 @table @code
27857 @kindex source
27858 @cindex execute commands from a file
27859 @item source [-s] [-v] @var{filename}
27860 Execute the command file @var{filename}.
27861 @end table
27862
27863 The lines in a command file are generally executed sequentially,
27864 unless the order of execution is changed by one of the
27865 @emph{flow-control commands} described below. The commands are not
27866 printed as they are executed. An error in any command terminates
27867 execution of the command file and control is returned to the console.
27868
27869 @value{GDBN} first searches for @var{filename} in the current directory.
27870 If the file is not found there, and @var{filename} does not specify a
27871 directory, then @value{GDBN} also looks for the file on the source search path
27872 (specified with the @samp{directory} command);
27873 except that @file{$cdir} is not searched because the compilation directory
27874 is not relevant to scripts.
27875
27876 If @code{-s} is specified, then @value{GDBN} searches for @var{filename}
27877 on the search path even if @var{filename} specifies a directory.
27878 The search is done by appending @var{filename} to each element of the
27879 search path. So, for example, if @var{filename} is @file{mylib/myscript}
27880 and the search path contains @file{/home/user} then @value{GDBN} will
27881 look for the script @file{/home/user/mylib/myscript}.
27882 The search is also done if @var{filename} is an absolute path.
27883 For example, if @var{filename} is @file{/tmp/myscript} and
27884 the search path contains @file{/home/user} then @value{GDBN} will
27885 look for the script @file{/home/user/tmp/myscript}.
27886 For DOS-like systems, if @var{filename} contains a drive specification,
27887 it is stripped before concatenation. For example, if @var{filename} is
27888 @file{d:myscript} and the search path contains @file{c:/tmp} then @value{GDBN}
27889 will look for the script @file{c:/tmp/myscript}.
27890
27891 If @code{-v}, for verbose mode, is given then @value{GDBN} displays
27892 each command as it is executed. The option must be given before
27893 @var{filename}, and is interpreted as part of the filename anywhere else.
27894
27895 Commands that would ask for confirmation if used interactively proceed
27896 without asking when used in a command file. Many @value{GDBN} commands that
27897 normally print messages to say what they are doing omit the messages
27898 when called from command files.
27899
27900 @value{GDBN} also accepts command input from standard input. In this
27901 mode, normal output goes to standard output and error output goes to
27902 standard error. Errors in a command file supplied on standard input do
27903 not terminate execution of the command file---execution continues with
27904 the next command.
27905
27906 @smallexample
27907 gdb < cmds > log 2>&1
27908 @end smallexample
27909
27910 (The syntax above will vary depending on the shell used.) This example
27911 will execute commands from the file @file{cmds}. All output and errors
27912 would be directed to @file{log}.
27913
27914 Since commands stored on command files tend to be more general than
27915 commands typed interactively, they frequently need to deal with
27916 complicated situations, such as different or unexpected values of
27917 variables and symbols, changes in how the program being debugged is
27918 built, etc. @value{GDBN} provides a set of flow-control commands to
27919 deal with these complexities. Using these commands, you can write
27920 complex scripts that loop over data structures, execute commands
27921 conditionally, etc.
27922
27923 @table @code
27924 @kindex if
27925 @kindex else
27926 @item if
27927 @itemx else
27928 This command allows to include in your script conditionally executed
27929 commands. The @code{if} command takes a single argument, which is an
27930 expression to evaluate. It is followed by a series of commands that
27931 are executed only if the expression is true (its value is nonzero).
27932 There can then optionally be an @code{else} line, followed by a series
27933 of commands that are only executed if the expression was false. The
27934 end of the list is marked by a line containing @code{end}.
27935
27936 @kindex while
27937 @item while
27938 This command allows to write loops. Its syntax is similar to
27939 @code{if}: the command takes a single argument, which is an expression
27940 to evaluate, and must be followed by the commands to execute, one per
27941 line, terminated by an @code{end}. These commands are called the
27942 @dfn{body} of the loop. The commands in the body of @code{while} are
27943 executed repeatedly as long as the expression evaluates to true.
27944
27945 @kindex loop_break
27946 @item loop_break
27947 This command exits the @code{while} loop in whose body it is included.
27948 Execution of the script continues after that @code{while}s @code{end}
27949 line.
27950
27951 @kindex loop_continue
27952 @item loop_continue
27953 This command skips the execution of the rest of the body of commands
27954 in the @code{while} loop in whose body it is included. Execution
27955 branches to the beginning of the @code{while} loop, where it evaluates
27956 the controlling expression.
27957
27958 @kindex end@r{ (if/else/while commands)}
27959 @item end
27960 Terminate the block of commands that are the body of @code{if},
27961 @code{else}, or @code{while} flow-control commands.
27962 @end table
27963
27964
27965 @node Output
27966 @subsection Commands for Controlled Output
27967
27968 During the execution of a command file or a user-defined command, normal
27969 @value{GDBN} output is suppressed; the only output that appears is what is
27970 explicitly printed by the commands in the definition. This section
27971 describes three commands useful for generating exactly the output you
27972 want.
27973
27974 @table @code
27975 @kindex echo
27976 @item echo @var{text}
27977 @c I do not consider backslash-space a standard C escape sequence
27978 @c because it is not in ANSI.
27979 Print @var{text}. Nonprinting characters can be included in
27980 @var{text} using C escape sequences, such as @samp{\n} to print a
27981 newline. @strong{No newline is printed unless you specify one.}
27982 In addition to the standard C escape sequences, a backslash followed
27983 by a space stands for a space. This is useful for displaying a
27984 string with spaces at the beginning or the end, since leading and
27985 trailing spaces are otherwise trimmed from all arguments.
27986 To print @samp{@w{ }and foo =@w{ }}, use the command
27987 @samp{echo \@w{ }and foo = \@w{ }}.
27988
27989 A backslash at the end of @var{text} can be used, as in C, to continue
27990 the command onto subsequent lines. For example,
27991
27992 @smallexample
27993 echo This is some text\n\
27994 which is continued\n\
27995 onto several lines.\n
27996 @end smallexample
27997
27998 produces the same output as
27999
28000 @smallexample
28001 echo This is some text\n
28002 echo which is continued\n
28003 echo onto several lines.\n
28004 @end smallexample
28005
28006 @kindex output
28007 @item output @var{expression}
28008 Print the value of @var{expression} and nothing but that value: no
28009 newlines, no @samp{$@var{nn} = }. The value is not entered in the
28010 value history either. @xref{Expressions, ,Expressions}, for more information
28011 on expressions.
28012
28013 @item output/@var{fmt} @var{expression}
28014 Print the value of @var{expression} in format @var{fmt}. You can use
28015 the same formats as for @code{print}. @xref{Output Formats,,Output
28016 Formats}, for more information.
28017
28018 @kindex printf
28019 @item printf @var{template}, @var{expressions}@dots{}
28020 Print the values of one or more @var{expressions} under the control of
28021 the string @var{template}. To print several values, make
28022 @var{expressions} be a comma-separated list of individual expressions,
28023 which may be either numbers or pointers. Their values are printed as
28024 specified by @var{template}, exactly as a C program would do by
28025 executing the code below:
28026
28027 @smallexample
28028 printf (@var{template}, @var{expressions}@dots{});
28029 @end smallexample
28030
28031 As in @code{C} @code{printf}, ordinary characters in @var{template}
28032 are printed verbatim, while @dfn{conversion specification} introduced
28033 by the @samp{%} character cause subsequent @var{expressions} to be
28034 evaluated, their values converted and formatted according to type and
28035 style information encoded in the conversion specifications, and then
28036 printed.
28037
28038 For example, you can print two values in hex like this:
28039
28040 @smallexample
28041 printf "foo, bar-foo = 0x%x, 0x%x\n", foo, bar-foo
28042 @end smallexample
28043
28044 @code{printf} supports all the standard @code{C} conversion
28045 specifications, including the flags and modifiers between the @samp{%}
28046 character and the conversion letter, with the following exceptions:
28047
28048 @itemize @bullet
28049 @item
28050 The argument-ordering modifiers, such as @samp{2$}, are not supported.
28051
28052 @item
28053 The modifier @samp{*} is not supported for specifying precision or
28054 width.
28055
28056 @item
28057 The @samp{'} flag (for separation of digits into groups according to
28058 @code{LC_NUMERIC'}) is not supported.
28059
28060 @item
28061 The type modifiers @samp{hh}, @samp{j}, @samp{t}, and @samp{z} are not
28062 supported.
28063
28064 @item
28065 The conversion letter @samp{n} (as in @samp{%n}) is not supported.
28066
28067 @item
28068 The conversion letters @samp{a} and @samp{A} are not supported.
28069 @end itemize
28070
28071 @noindent
28072 Note that the @samp{ll} type modifier is supported only if the
28073 underlying @code{C} implementation used to build @value{GDBN} supports
28074 the @code{long long int} type, and the @samp{L} type modifier is
28075 supported only if @code{long double} type is available.
28076
28077 As in @code{C}, @code{printf} supports simple backslash-escape
28078 sequences, such as @code{\n}, @samp{\t}, @samp{\\}, @samp{\"},
28079 @samp{\a}, and @samp{\f}, that consist of backslash followed by a
28080 single character. Octal and hexadecimal escape sequences are not
28081 supported.
28082
28083 Additionally, @code{printf} supports conversion specifications for DFP
28084 (@dfn{Decimal Floating Point}) types using the following length modifiers
28085 together with a floating point specifier.
28086 letters:
28087
28088 @itemize @bullet
28089 @item
28090 @samp{H} for printing @code{Decimal32} types.
28091
28092 @item
28093 @samp{D} for printing @code{Decimal64} types.
28094
28095 @item
28096 @samp{DD} for printing @code{Decimal128} types.
28097 @end itemize
28098
28099 If the underlying @code{C} implementation used to build @value{GDBN} has
28100 support for the three length modifiers for DFP types, other modifiers
28101 such as width and precision will also be available for @value{GDBN} to use.
28102
28103 In case there is no such @code{C} support, no additional modifiers will be
28104 available and the value will be printed in the standard way.
28105
28106 Here's an example of printing DFP types using the above conversion letters:
28107 @smallexample
28108 printf "D32: %Hf - D64: %Df - D128: %DDf\n",1.2345df,1.2E10dd,1.2E1dl
28109 @end smallexample
28110
28111 @anchor{eval}
28112 @kindex eval
28113 @item eval @var{template}, @var{expressions}@dots{}
28114 Convert the values of one or more @var{expressions} under the control of
28115 the string @var{template} to a command line, and call it.
28116
28117 @end table
28118
28119 @node Auto-loading sequences
28120 @subsection Controlling auto-loading native @value{GDBN} scripts
28121 @cindex native script auto-loading
28122
28123 When a new object file is read (for example, due to the @code{file}
28124 command, or because the inferior has loaded a shared library),
28125 @value{GDBN} will look for the command file @file{@var{objfile}-gdb.gdb}.
28126 @xref{Auto-loading extensions}.
28127
28128 Auto-loading can be enabled or disabled,
28129 and the list of auto-loaded scripts can be printed.
28130
28131 @table @code
28132 @anchor{set auto-load gdb-scripts}
28133 @kindex set auto-load gdb-scripts
28134 @item set auto-load gdb-scripts [on|off]
28135 Enable or disable the auto-loading of canned sequences of commands scripts.
28136
28137 @anchor{show auto-load gdb-scripts}
28138 @kindex show auto-load gdb-scripts
28139 @item show auto-load gdb-scripts
28140 Show whether auto-loading of canned sequences of commands scripts is enabled or
28141 disabled.
28142
28143 @anchor{info auto-load gdb-scripts}
28144 @kindex info auto-load gdb-scripts
28145 @cindex print list of auto-loaded canned sequences of commands scripts
28146 @item info auto-load gdb-scripts [@var{regexp}]
28147 Print the list of all canned sequences of commands scripts that @value{GDBN}
28148 auto-loaded.
28149 @end table
28150
28151 If @var{regexp} is supplied only canned sequences of commands scripts with
28152 matching names are printed.
28153
28154 @node Aliases
28155 @section Command Aliases
28156 @cindex aliases for commands
28157
28158 Aliases allow you to define alternate spellings for existing commands.
28159 For example, if a new @value{GDBN} command defined in Python
28160 (@pxref{Python}) has a long name, it is handy to have an abbreviated
28161 version of it that involves less typing.
28162
28163 @value{GDBN} itself uses aliases. For example @samp{s} is an alias
28164 of the @samp{step} command even though it is otherwise an ambiguous
28165 abbreviation of other commands like @samp{set} and @samp{show}.
28166
28167 Aliases are also used to provide shortened or more common versions
28168 of multi-word commands. For example, @value{GDBN} provides the
28169 @samp{tty} alias of the @samp{set inferior-tty} command.
28170
28171 You can define a new alias with the @samp{alias} command.
28172
28173 @table @code
28174
28175 @kindex alias
28176 @item alias [-a] [--] @var{alias} = @var{command} [@var{default-args}]
28177
28178 @end table
28179
28180 @var{alias} specifies the name of the new alias. Each word of
28181 @var{alias} must consist of letters, numbers, dashes and underscores.
28182
28183 @var{command} specifies the name of an existing command
28184 that is being aliased.
28185
28186 @var{command} can also be the name of an existing alias. In this
28187 case, @var{command} cannot be an alias that has default arguments.
28188
28189 The @samp{-a} option specifies that the new alias is an abbreviation
28190 of the command. Abbreviations are not used in command completion.
28191
28192 The @samp{--} option specifies the end of options,
28193 and is useful when @var{alias} begins with a dash.
28194
28195 You can specify @var{default-args} for your alias. These
28196 @var{default-args} will be automatically added before the alias
28197 arguments typed explicitly on the command line.
28198
28199 For example, the below defines an alias @code{btfullall} that shows all local
28200 variables and all frame arguments:
28201 @smallexample
28202 (@value{GDBP}) alias btfullall = backtrace -full -frame-arguments all
28203 @end smallexample
28204
28205 For more information about @var{default-args}, see @ref{Command
28206 aliases default args, ,Default Arguments}.
28207
28208 Here is a simple example showing how to make an abbreviation of a
28209 command so that there is less to type. Suppose you were tired of
28210 typing @samp{disas}, the current shortest unambiguous abbreviation of
28211 the @samp{disassemble} command and you wanted an even shorter version
28212 named @samp{di}. The following will accomplish this.
28213
28214 @smallexample
28215 (gdb) alias -a di = disas
28216 @end smallexample
28217
28218 Note that aliases are different from user-defined commands. With a
28219 user-defined command, you also need to write documentation for it with
28220 the @samp{document} command. An alias automatically picks up the
28221 documentation of the existing command.
28222
28223 Here is an example where we make @samp{elms} an abbreviation of
28224 @samp{elements} in the @samp{set print elements} command.
28225 This is to show that you can make an abbreviation of any part
28226 of a command.
28227
28228 @smallexample
28229 (gdb) alias -a set print elms = set print elements
28230 (gdb) alias -a show print elms = show print elements
28231 (gdb) set p elms 200
28232 (gdb) show p elms
28233 Limit on string chars or array elements to print is 200.
28234 @end smallexample
28235
28236 Note that if you are defining an alias of a @samp{set} command,
28237 and you want to have an alias for the corresponding @samp{show}
28238 command, then you need to define the latter separately.
28239
28240 Unambiguously abbreviated commands are allowed in @var{command} and
28241 @var{alias}, just as they are normally.
28242
28243 @smallexample
28244 (gdb) alias -a set pr elms = set p ele
28245 @end smallexample
28246
28247 Finally, here is an example showing the creation of a one word
28248 alias for a more complex command.
28249 This creates alias @samp{spe} of the command @samp{set print elements}.
28250
28251 @smallexample
28252 (gdb) alias spe = set print elements
28253 (gdb) spe 20
28254 @end smallexample
28255
28256 @menu
28257 * Command aliases default args:: Default arguments for aliases
28258 @end menu
28259
28260 @node Command aliases default args
28261 @subsection Default Arguments
28262 @cindex aliases for commands, default arguments
28263
28264 You can tell @value{GDBN} to always prepend some default arguments to
28265 the list of arguments provided explicitly by the user when using a
28266 user-defined alias.
28267
28268 If you repeatedly use the same arguments or options for a command, you
28269 can define an alias for this command and tell @value{GDBN} to
28270 automatically prepend these arguments or options to the list of
28271 arguments you type explicitly when using the alias@footnote{@value{GDBN}
28272 could easily accept default arguments for pre-defined commands and aliases,
28273 but it was deemed this would be confusing, and so is not allowed.}.
28274
28275 For example, if you often use the command @code{thread apply all}
28276 specifying to work on the threads in ascending order and to continue in case it
28277 encounters an error, you can tell @value{GDBN} to automatically preprend
28278 the @code{-ascending} and @code{-c} options by using:
28279
28280 @smallexample
28281 (@value{GDBP}) alias thread apply asc-all = thread apply all -ascending -c
28282 @end smallexample
28283
28284 Once you have defined this alias with its default args, any time you type
28285 the @code{thread apply asc-all} followed by @code{some arguments},
28286 @value{GDBN} will execute @code{thread apply all -ascending -c some arguments}.
28287
28288 To have even less to type, you can also define a one word alias:
28289 @smallexample
28290 (@value{GDBP}) alias t_a_c = thread apply all -ascending -c
28291 @end smallexample
28292
28293 As usual, unambiguous abbreviations can be used for @var{alias}
28294 and @var{default-args}.
28295
28296 The different aliases of a command do not share their default args.
28297 For example, you define a new alias @code{bt_ALL} showing all possible
28298 information and another alias @code{bt_SMALL} showing very limited information
28299 using:
28300 @smallexample
28301 (@value{GDBP}) alias bt_ALL = backtrace -entry-values both -frame-arg all \
28302 -past-main -past-entry -full
28303 (@value{GDBP}) alias bt_SMALL = backtrace -entry-values no -frame-arg none \
28304 -past-main off -past-entry off
28305 @end smallexample
28306
28307 (For more on using the @code{alias} command, see @ref{Aliases}.)
28308
28309 Default args are not limited to the arguments and options of @var{command},
28310 but can specify nested commands if @var{command} accepts such a nested command
28311 as argument.
28312 For example, the below defines @code{faalocalsoftype} that lists the
28313 frames having locals of a certain type, together with the matching
28314 local vars:
28315 @smallexample
28316 (@value{GDBP}) alias faalocalsoftype = frame apply all info locals -q -t
28317 (@value{GDBP}) faalocalsoftype int
28318 #1 0x55554f5e in sleeper_or_burner (v=0xdf50) at sleepers.c:86
28319 i = 0
28320 ret = 21845
28321 @end smallexample
28322
28323 This is also very useful to define an alias for a set of nested @code{with}
28324 commands to have a particular combination of temporary settings. For example,
28325 the below defines the alias @code{pp10} that pretty prints an expression
28326 argument, with a maximum of 10 elements if the expression is a string or
28327 an array:
28328 @smallexample
28329 (@value{GDBP}) alias pp10 = with print pretty -- with print elements 10 -- print
28330 @end smallexample
28331 This defines the alias @code{pp10} as being a sequence of 3 commands.
28332 The first part @code{with print pretty --} temporarily activates the setting
28333 @code{set print pretty}, then launches the command that follows the separator
28334 @code{--}.
28335 The command following the first part is also a @code{with} command that
28336 temporarily changes the setting @code{set print elements} to 10, then
28337 launches the command that follows the second separator @code{--}.
28338 The third part @code{print} is the command the @code{pp10} alias will launch,
28339 using the temporary values of the settings and the arguments explicitly given
28340 by the user.
28341 For more information about the @code{with} command usage,
28342 see @ref{Command Settings}.
28343
28344 @c Python docs live in a separate file.
28345 @include python.texi
28346
28347 @c Guile docs live in a separate file.
28348 @include guile.texi
28349
28350 @node Auto-loading extensions
28351 @section Auto-loading extensions
28352 @cindex auto-loading extensions
28353
28354 @value{GDBN} provides two mechanisms for automatically loading
28355 extensions when a new object file is read (for example, due to the
28356 @code{file} command, or because the inferior has loaded a shared
28357 library): @file{@var{objfile}-gdb.@var{ext}} (@pxref{objfile-gdbdotext
28358 file,,The @file{@var{objfile}-gdb.@var{ext}} file}) and the
28359 @code{.debug_gdb_scripts} section of modern file formats like ELF
28360 (@pxref{dotdebug_gdb_scripts section,,The @code{.debug_gdb_scripts}
28361 section}). For a discussion of the differences between these two
28362 approaches see @ref{Which flavor to choose?}.
28363
28364 The auto-loading feature is useful for supplying application-specific
28365 debugging commands and features.
28366
28367 Auto-loading can be enabled or disabled,
28368 and the list of auto-loaded scripts can be printed.
28369 See the @samp{auto-loading} section of each extension language
28370 for more information.
28371 For @value{GDBN} command files see @ref{Auto-loading sequences}.
28372 For Python files see @ref{Python Auto-loading}.
28373
28374 Note that loading of this script file also requires accordingly configured
28375 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28376
28377 @menu
28378 * objfile-gdbdotext file:: The @file{@var{objfile}-gdb.@var{ext}} file
28379 * dotdebug_gdb_scripts section:: The @code{.debug_gdb_scripts} section
28380 * Which flavor to choose?:: Choosing between these approaches
28381 @end menu
28382
28383 @node objfile-gdbdotext file
28384 @subsection The @file{@var{objfile}-gdb.@var{ext}} file
28385 @cindex @file{@var{objfile}-gdb.gdb}
28386 @cindex @file{@var{objfile}-gdb.py}
28387 @cindex @file{@var{objfile}-gdb.scm}
28388
28389 When a new object file is read, @value{GDBN} looks for a file named
28390 @file{@var{objfile}-gdb.@var{ext}} (we call it @var{script-name} below),
28391 where @var{objfile} is the object file's name and
28392 where @var{ext} is the file extension for the extension language:
28393
28394 @table @code
28395 @item @file{@var{objfile}-gdb.gdb}
28396 GDB's own command language
28397 @item @file{@var{objfile}-gdb.py}
28398 Python
28399 @item @file{@var{objfile}-gdb.scm}
28400 Guile
28401 @end table
28402
28403 @var{script-name} is formed by ensuring that the file name of @var{objfile}
28404 is absolute, following all symlinks, and resolving @code{.} and @code{..}
28405 components, and appending the @file{-gdb.@var{ext}} suffix.
28406 If this file exists and is readable, @value{GDBN} will evaluate it as a
28407 script in the specified extension language.
28408
28409 If this file does not exist, then @value{GDBN} will look for
28410 @var{script-name} file in all of the directories as specified below.
28411 (On MS-Windows/MS-DOS, the drive letter of the executable's leading
28412 directories is converted to a one-letter subdirectory, i.e.@:
28413 @file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
28414 filesystems disallow colons in file names.)
28415
28416 Note that loading of these files requires an accordingly configured
28417 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28418
28419 For object files using @file{.exe} suffix @value{GDBN} tries to load first the
28420 scripts normally according to its @file{.exe} filename. But if no scripts are
28421 found @value{GDBN} also tries script filenames matching the object file without
28422 its @file{.exe} suffix. This @file{.exe} stripping is case insensitive and it
28423 is attempted on any platform. This makes the script filenames compatible
28424 between Unix and MS-Windows hosts.
28425
28426 @table @code
28427 @anchor{set auto-load scripts-directory}
28428 @kindex set auto-load scripts-directory
28429 @item set auto-load scripts-directory @r{[}@var{directories}@r{]}
28430 Control @value{GDBN} auto-loaded scripts location. Multiple directory entries
28431 may be delimited by the host platform path separator in use
28432 (@samp{:} on Unix, @samp{;} on MS-Windows and MS-DOS).
28433
28434 Each entry here needs to be covered also by the security setting
28435 @code{set auto-load safe-path} (@pxref{set auto-load safe-path}).
28436
28437 @anchor{with-auto-load-dir}
28438 This variable defaults to @file{$debugdir:$datadir/auto-load}. The default
28439 @code{set auto-load safe-path} value can be also overriden by @value{GDBN}
28440 configuration option @option{--with-auto-load-dir}.
28441
28442 Any reference to @file{$debugdir} will get replaced by
28443 @var{debug-file-directory} value (@pxref{Separate Debug Files}) and any
28444 reference to @file{$datadir} will get replaced by @var{data-directory} which is
28445 determined at @value{GDBN} startup (@pxref{Data Files}). @file{$debugdir} and
28446 @file{$datadir} must be placed as a directory component --- either alone or
28447 delimited by @file{/} or @file{\} directory separators, depending on the host
28448 platform.
28449
28450 The list of directories uses path separator (@samp{:} on GNU and Unix
28451 systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
28452 to the @env{PATH} environment variable.
28453
28454 @anchor{show auto-load scripts-directory}
28455 @kindex show auto-load scripts-directory
28456 @item show auto-load scripts-directory
28457 Show @value{GDBN} auto-loaded scripts location.
28458
28459 @anchor{add-auto-load-scripts-directory}
28460 @kindex add-auto-load-scripts-directory
28461 @item add-auto-load-scripts-directory @r{[}@var{directories}@dots{}@r{]}
28462 Add an entry (or list of entries) to the list of auto-loaded scripts locations.
28463 Multiple entries may be delimited by the host platform path separator in use.
28464 @end table
28465
28466 @value{GDBN} does not track which files it has already auto-loaded this way.
28467 @value{GDBN} will load the associated script every time the corresponding
28468 @var{objfile} is opened.
28469 So your @file{-gdb.@var{ext}} file should be careful to avoid errors if it
28470 is evaluated more than once.
28471
28472 @node dotdebug_gdb_scripts section
28473 @subsection The @code{.debug_gdb_scripts} section
28474 @cindex @code{.debug_gdb_scripts} section
28475
28476 For systems using file formats like ELF and COFF,
28477 when @value{GDBN} loads a new object file
28478 it will look for a special section named @code{.debug_gdb_scripts}.
28479 If this section exists, its contents is a list of null-terminated entries
28480 specifying scripts to load. Each entry begins with a non-null prefix byte that
28481 specifies the kind of entry, typically the extension language and whether the
28482 script is in a file or inlined in @code{.debug_gdb_scripts}.
28483
28484 The following entries are supported:
28485
28486 @table @code
28487 @item SECTION_SCRIPT_ID_PYTHON_FILE = 1
28488 @item SECTION_SCRIPT_ID_SCHEME_FILE = 3
28489 @item SECTION_SCRIPT_ID_PYTHON_TEXT = 4
28490 @item SECTION_SCRIPT_ID_SCHEME_TEXT = 6
28491 @end table
28492
28493 @subsubsection Script File Entries
28494
28495 If the entry specifies a file, @value{GDBN} will look for the file first
28496 in the current directory and then along the source search path
28497 (@pxref{Source Path, ,Specifying Source Directories}),
28498 except that @file{$cdir} is not searched, since the compilation
28499 directory is not relevant to scripts.
28500
28501 File entries can be placed in section @code{.debug_gdb_scripts} with,
28502 for example, this GCC macro for Python scripts.
28503
28504 @example
28505 /* Note: The "MS" section flags are to remove duplicates. */
28506 #define DEFINE_GDB_PY_SCRIPT(script_name) \
28507 asm("\
28508 .pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n\
28509 .byte 1 /* Python */\n\
28510 .asciz \"" script_name "\"\n\
28511 .popsection \n\
28512 ");
28513 @end example
28514
28515 @noindent
28516 For Guile scripts, replace @code{.byte 1} with @code{.byte 3}.
28517 Then one can reference the macro in a header or source file like this:
28518
28519 @example
28520 DEFINE_GDB_PY_SCRIPT ("my-app-scripts.py")
28521 @end example
28522
28523 The script name may include directories if desired.
28524
28525 Note that loading of this script file also requires accordingly configured
28526 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28527
28528 If the macro invocation is put in a header, any application or library
28529 using this header will get a reference to the specified script,
28530 and with the use of @code{"MS"} attributes on the section, the linker
28531 will remove duplicates.
28532
28533 @subsubsection Script Text Entries
28534
28535 Script text entries allow to put the executable script in the entry
28536 itself instead of loading it from a file.
28537 The first line of the entry, everything after the prefix byte and up to
28538 the first newline (@code{0xa}) character, is the script name, and must not
28539 contain any kind of space character, e.g., spaces or tabs.
28540 The rest of the entry, up to the trailing null byte, is the script to
28541 execute in the specified language. The name needs to be unique among
28542 all script names, as @value{GDBN} executes each script only once based
28543 on its name.
28544
28545 Here is an example from file @file{py-section-script.c} in the @value{GDBN}
28546 testsuite.
28547
28548 @example
28549 #include "symcat.h"
28550 #include "gdb/section-scripts.h"
28551 asm(
28552 ".pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n"
28553 ".byte " XSTRING (SECTION_SCRIPT_ID_PYTHON_TEXT) "\n"
28554 ".ascii \"gdb.inlined-script\\n\"\n"
28555 ".ascii \"class test_cmd (gdb.Command):\\n\"\n"
28556 ".ascii \" def __init__ (self):\\n\"\n"
28557 ".ascii \" super (test_cmd, self).__init__ ("
28558 "\\\"test-cmd\\\", gdb.COMMAND_OBSCURE)\\n\"\n"
28559 ".ascii \" def invoke (self, arg, from_tty):\\n\"\n"
28560 ".ascii \" print (\\\"test-cmd output, arg = %s\\\" % arg)\\n\"\n"
28561 ".ascii \"test_cmd ()\\n\"\n"
28562 ".byte 0\n"
28563 ".popsection\n"
28564 );
28565 @end example
28566
28567 Loading of inlined scripts requires a properly configured
28568 @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28569 The path to specify in @code{auto-load safe-path} is the path of the file
28570 containing the @code{.debug_gdb_scripts} section.
28571
28572 @node Which flavor to choose?
28573 @subsection Which flavor to choose?
28574
28575 Given the multiple ways of auto-loading extensions, it might not always
28576 be clear which one to choose. This section provides some guidance.
28577
28578 @noindent
28579 Benefits of the @file{-gdb.@var{ext}} way:
28580
28581 @itemize @bullet
28582 @item
28583 Can be used with file formats that don't support multiple sections.
28584
28585 @item
28586 Ease of finding scripts for public libraries.
28587
28588 Scripts specified in the @code{.debug_gdb_scripts} section are searched for
28589 in the source search path.
28590 For publicly installed libraries, e.g., @file{libstdc++}, there typically
28591 isn't a source directory in which to find the script.
28592
28593 @item
28594 Doesn't require source code additions.
28595 @end itemize
28596
28597 @noindent
28598 Benefits of the @code{.debug_gdb_scripts} way:
28599
28600 @itemize @bullet
28601 @item
28602 Works with static linking.
28603
28604 Scripts for libraries done the @file{-gdb.@var{ext}} way require an objfile to
28605 trigger their loading. When an application is statically linked the only
28606 objfile available is the executable, and it is cumbersome to attach all the
28607 scripts from all the input libraries to the executable's
28608 @file{-gdb.@var{ext}} script.
28609
28610 @item
28611 Works with classes that are entirely inlined.
28612
28613 Some classes can be entirely inlined, and thus there may not be an associated
28614 shared library to attach a @file{-gdb.@var{ext}} script to.
28615
28616 @item
28617 Scripts needn't be copied out of the source tree.
28618
28619 In some circumstances, apps can be built out of large collections of internal
28620 libraries, and the build infrastructure necessary to install the
28621 @file{-gdb.@var{ext}} scripts in a place where @value{GDBN} can find them is
28622 cumbersome. It may be easier to specify the scripts in the
28623 @code{.debug_gdb_scripts} section as relative paths, and add a path to the
28624 top of the source tree to the source search path.
28625 @end itemize
28626
28627 @node Multiple Extension Languages
28628 @section Multiple Extension Languages
28629
28630 The Guile and Python extension languages do not share any state,
28631 and generally do not interfere with each other.
28632 There are some things to be aware of, however.
28633
28634 @subsection Python comes first
28635
28636 Python was @value{GDBN}'s first extension language, and to avoid breaking
28637 existing behaviour Python comes first. This is generally solved by the
28638 ``first one wins'' principle. @value{GDBN} maintains a list of enabled
28639 extension languages, and when it makes a call to an extension language,
28640 (say to pretty-print a value), it tries each in turn until an extension
28641 language indicates it has performed the request (e.g., has returned the
28642 pretty-printed form of a value).
28643 This extends to errors while performing such requests: If an error happens
28644 while, for example, trying to pretty-print an object then the error is
28645 reported and any following extension languages are not tried.
28646
28647 @node Interpreters
28648 @chapter Command Interpreters
28649 @cindex command interpreters
28650
28651 @value{GDBN} supports multiple command interpreters, and some command
28652 infrastructure to allow users or user interface writers to switch
28653 between interpreters or run commands in other interpreters.
28654
28655 @value{GDBN} currently supports two command interpreters, the console
28656 interpreter (sometimes called the command-line interpreter or @sc{cli})
28657 and the machine interface interpreter (or @sc{gdb/mi}). This manual
28658 describes both of these interfaces in great detail.
28659
28660 By default, @value{GDBN} will start with the console interpreter.
28661 However, the user may choose to start @value{GDBN} with another
28662 interpreter by specifying the @option{-i} or @option{--interpreter}
28663 startup options. Defined interpreters include:
28664
28665 @table @code
28666 @item console
28667 @cindex console interpreter
28668 The traditional console or command-line interpreter. This is the most often
28669 used interpreter with @value{GDBN}. With no interpreter specified at runtime,
28670 @value{GDBN} will use this interpreter.
28671
28672 @item mi
28673 @cindex mi interpreter
28674 The newest @sc{gdb/mi} interface (currently @code{mi3}). Used primarily
28675 by programs wishing to use @value{GDBN} as a backend for a debugger GUI
28676 or an IDE. For more information, see @ref{GDB/MI, ,The @sc{gdb/mi}
28677 Interface}.
28678
28679 @item mi3
28680 @cindex mi3 interpreter
28681 The @sc{gdb/mi} interface introduced in @value{GDBN} 9.1.
28682
28683 @item mi2
28684 @cindex mi2 interpreter
28685 The @sc{gdb/mi} interface introduced in @value{GDBN} 6.0.
28686
28687 @item mi1
28688 @cindex mi1 interpreter
28689 The @sc{gdb/mi} interface introduced in @value{GDBN} 5.1.
28690
28691 @end table
28692
28693 @cindex invoke another interpreter
28694
28695 @kindex interpreter-exec
28696 You may execute commands in any interpreter from the current
28697 interpreter using the appropriate command. If you are running the
28698 console interpreter, simply use the @code{interpreter-exec} command:
28699
28700 @smallexample
28701 interpreter-exec mi "-data-list-register-names"
28702 @end smallexample
28703
28704 @sc{gdb/mi} has a similar command, although it is only available in versions of
28705 @value{GDBN} which support @sc{gdb/mi} version 2 (or greater).
28706
28707 Note that @code{interpreter-exec} only changes the interpreter for the
28708 duration of the specified command. It does not change the interpreter
28709 permanently.
28710
28711 @cindex start a new independent interpreter
28712
28713 Although you may only choose a single interpreter at startup, it is
28714 possible to run an independent interpreter on a specified input/output
28715 device (usually a tty).
28716
28717 For example, consider a debugger GUI or IDE that wants to provide a
28718 @value{GDBN} console view. It may do so by embedding a terminal
28719 emulator widget in its GUI, starting @value{GDBN} in the traditional
28720 command-line mode with stdin/stdout/stderr redirected to that
28721 terminal, and then creating an MI interpreter running on a specified
28722 input/output device. The console interpreter created by @value{GDBN}
28723 at startup handles commands the user types in the terminal widget,
28724 while the GUI controls and synchronizes state with @value{GDBN} using
28725 the separate MI interpreter.
28726
28727 To start a new secondary @dfn{user interface} running MI, use the
28728 @code{new-ui} command:
28729
28730 @kindex new-ui
28731 @cindex new user interface
28732 @smallexample
28733 new-ui @var{interpreter} @var{tty}
28734 @end smallexample
28735
28736 The @var{interpreter} parameter specifies the interpreter to run.
28737 This accepts the same values as the @code{interpreter-exec} command.
28738 For example, @samp{console}, @samp{mi}, @samp{mi2}, etc. The
28739 @var{tty} parameter specifies the name of the bidirectional file the
28740 interpreter uses for input/output, usually the name of a
28741 pseudoterminal slave on Unix systems. For example:
28742
28743 @smallexample
28744 (@value{GDBP}) new-ui mi /dev/pts/9
28745 @end smallexample
28746
28747 @noindent
28748 runs an MI interpreter on @file{/dev/pts/9}.
28749
28750 @node TUI
28751 @chapter @value{GDBN} Text User Interface
28752 @cindex TUI
28753 @cindex Text User Interface
28754
28755 The @value{GDBN} Text User Interface (TUI) is a terminal
28756 interface which uses the @code{curses} library to show the source
28757 file, the assembly output, the program registers and @value{GDBN}
28758 commands in separate text windows. The TUI mode is supported only
28759 on platforms where a suitable version of the @code{curses} library
28760 is available.
28761
28762 The TUI mode is enabled by default when you invoke @value{GDBN} as
28763 @samp{@value{GDBP} -tui}.
28764 You can also switch in and out of TUI mode while @value{GDBN} runs by
28765 using various TUI commands and key bindings, such as @command{tui
28766 enable} or @kbd{C-x C-a}. @xref{TUI Commands, ,TUI Commands}, and
28767 @ref{TUI Keys, ,TUI Key Bindings}.
28768
28769 @menu
28770 * TUI Overview:: TUI overview
28771 * TUI Keys:: TUI key bindings
28772 * TUI Single Key Mode:: TUI single key mode
28773 * TUI Mouse Support:: TUI mouse support
28774 * TUI Commands:: TUI-specific commands
28775 * TUI Configuration:: TUI configuration variables
28776 @end menu
28777
28778 @node TUI Overview
28779 @section TUI Overview
28780
28781 In TUI mode, @value{GDBN} can display several text windows:
28782
28783 @table @emph
28784 @item command
28785 This window is the @value{GDBN} command window with the @value{GDBN}
28786 prompt and the @value{GDBN} output. The @value{GDBN} input is still
28787 managed using readline.
28788
28789 @item source
28790 The source window shows the source file of the program. The current
28791 line and active breakpoints are displayed in this window.
28792
28793 @item assembly
28794 The assembly window shows the disassembly output of the program.
28795
28796 @item register
28797 This window shows the processor registers. Registers are highlighted
28798 when their values change.
28799 @end table
28800
28801 The source and assembly windows show the current program position
28802 by highlighting the current line and marking it with a @samp{>} marker.
28803 Breakpoints are indicated with two markers. The first marker
28804 indicates the breakpoint type:
28805
28806 @table @code
28807 @item B
28808 Breakpoint which was hit at least once.
28809
28810 @item b
28811 Breakpoint which was never hit.
28812
28813 @item H
28814 Hardware breakpoint which was hit at least once.
28815
28816 @item h
28817 Hardware breakpoint which was never hit.
28818 @end table
28819
28820 The second marker indicates whether the breakpoint is enabled or not:
28821
28822 @table @code
28823 @item +
28824 Breakpoint is enabled.
28825
28826 @item -
28827 Breakpoint is disabled.
28828 @end table
28829
28830 The source, assembly and register windows are updated when the current
28831 thread changes, when the frame changes, or when the program counter
28832 changes.
28833
28834 These windows are not all visible at the same time. The command
28835 window is always visible. The others can be arranged in several
28836 layouts:
28837
28838 @itemize @bullet
28839 @item
28840 source only,
28841
28842 @item
28843 assembly only,
28844
28845 @item
28846 source and assembly,
28847
28848 @item
28849 source and registers, or
28850
28851 @item
28852 assembly and registers.
28853 @end itemize
28854
28855 These are the standard layouts, but other layouts can be defined.
28856
28857 A status line above the command window shows the following information:
28858
28859 @table @emph
28860 @item target
28861 Indicates the current @value{GDBN} target.
28862 (@pxref{Targets, ,Specifying a Debugging Target}).
28863
28864 @item process
28865 Gives the current process or thread number.
28866 When no process is being debugged, this field is set to @code{No process}.
28867
28868 @item function
28869 Gives the current function name for the selected frame.
28870 The name is demangled if demangling is turned on (@pxref{Print Settings}).
28871 When there is no symbol corresponding to the current program counter,
28872 the string @code{??} is displayed.
28873
28874 @item line
28875 Indicates the current line number for the selected frame.
28876 When the current line number is not known, the string @code{??} is displayed.
28877
28878 @item pc
28879 Indicates the current program counter address.
28880 @end table
28881
28882 @node TUI Keys
28883 @section TUI Key Bindings
28884 @cindex TUI key bindings
28885
28886 The TUI installs several key bindings in the readline keymaps
28887 @ifset SYSTEM_READLINE
28888 (@pxref{Command Line Editing, , , rluserman, GNU Readline Library}).
28889 @end ifset
28890 @ifclear SYSTEM_READLINE
28891 (@pxref{Command Line Editing}).
28892 @end ifclear
28893 The following key bindings are installed for both TUI mode and the
28894 @value{GDBN} standard mode.
28895
28896 @table @kbd
28897 @kindex C-x C-a
28898 @item C-x C-a
28899 @kindex C-x a
28900 @itemx C-x a
28901 @kindex C-x A
28902 @itemx C-x A
28903 Enter or leave the TUI mode. When leaving the TUI mode,
28904 the curses window management stops and @value{GDBN} operates using
28905 its standard mode, writing on the terminal directly. When reentering
28906 the TUI mode, control is given back to the curses windows.
28907 The screen is then refreshed.
28908
28909 This key binding uses the bindable Readline function
28910 @code{tui-switch-mode}.
28911
28912 @kindex C-x 1
28913 @item C-x 1
28914 Use a TUI layout with only one window. The layout will
28915 either be @samp{source} or @samp{assembly}. When the TUI mode
28916 is not active, it will switch to the TUI mode.
28917
28918 Think of this key binding as the Emacs @kbd{C-x 1} binding.
28919
28920 This key binding uses the bindable Readline function
28921 @code{tui-delete-other-windows}.
28922
28923 @kindex C-x 2
28924 @item C-x 2
28925 Use a TUI layout with at least two windows. When the current
28926 layout already has two windows, the next layout with two windows is used.
28927 When a new layout is chosen, one window will always be common to the
28928 previous layout and the new one.
28929
28930 Think of it as the Emacs @kbd{C-x 2} binding.
28931
28932 This key binding uses the bindable Readline function
28933 @code{tui-change-windows}.
28934
28935 @kindex C-x o
28936 @item C-x o
28937 Change the active window. The TUI associates several key bindings
28938 (like scrolling and arrow keys) with the active window. This command
28939 gives the focus to the next TUI window.
28940
28941 Think of it as the Emacs @kbd{C-x o} binding.
28942
28943 This key binding uses the bindable Readline function
28944 @code{tui-other-window}.
28945
28946 @kindex C-x s
28947 @item C-x s
28948 Switch in and out of the TUI SingleKey mode that binds single
28949 keys to @value{GDBN} commands (@pxref{TUI Single Key Mode}).
28950
28951 This key binding uses the bindable Readline function
28952 @code{next-keymap}.
28953 @end table
28954
28955 The following key bindings only work in the TUI mode:
28956
28957 @table @asis
28958 @kindex PgUp
28959 @item @key{PgUp}
28960 Scroll the active window one page up.
28961
28962 @kindex PgDn
28963 @item @key{PgDn}
28964 Scroll the active window one page down.
28965
28966 @kindex Up
28967 @item @key{Up}
28968 Scroll the active window one line up.
28969
28970 @kindex Down
28971 @item @key{Down}
28972 Scroll the active window one line down.
28973
28974 @kindex Left
28975 @item @key{Left}
28976 Scroll the active window one column left.
28977
28978 @kindex Right
28979 @item @key{Right}
28980 Scroll the active window one column right.
28981
28982 @kindex C-L
28983 @item @kbd{C-L}
28984 Refresh the screen.
28985 @end table
28986
28987 Because the arrow keys scroll the active window in the TUI mode, they
28988 are not available for their normal use by readline unless the command
28989 window has the focus. When another window is active, you must use
28990 other readline key bindings such as @kbd{C-p}, @kbd{C-n}, @kbd{C-b}
28991 and @kbd{C-f} to control the command window.
28992
28993 @node TUI Single Key Mode
28994 @section TUI Single Key Mode
28995 @cindex TUI single key mode
28996
28997 The TUI also provides a @dfn{SingleKey} mode, which binds several
28998 frequently used @value{GDBN} commands to single keys. Type @kbd{C-x s} to
28999 switch into this mode, where the following key bindings are used:
29000
29001 @table @kbd
29002 @kindex c @r{(SingleKey TUI key)}
29003 @item c
29004 continue
29005
29006 @kindex d @r{(SingleKey TUI key)}
29007 @item d
29008 down
29009
29010 @kindex f @r{(SingleKey TUI key)}
29011 @item f
29012 finish
29013
29014 @kindex n @r{(SingleKey TUI key)}
29015 @item n
29016 next
29017
29018 @kindex o @r{(SingleKey TUI key)}
29019 @item o
29020 nexti. The shortcut letter @samp{o} stands for ``step Over''.
29021
29022 @kindex q @r{(SingleKey TUI key)}
29023 @item q
29024 exit the SingleKey mode.
29025
29026 @kindex r @r{(SingleKey TUI key)}
29027 @item r
29028 run
29029
29030 @kindex s @r{(SingleKey TUI key)}
29031 @item s
29032 step
29033
29034 @kindex i @r{(SingleKey TUI key)}
29035 @item i
29036 stepi. The shortcut letter @samp{i} stands for ``step Into''.
29037
29038 @kindex u @r{(SingleKey TUI key)}
29039 @item u
29040 up
29041
29042 @kindex v @r{(SingleKey TUI key)}
29043 @item v
29044 info locals
29045
29046 @kindex w @r{(SingleKey TUI key)}
29047 @item w
29048 where
29049 @end table
29050
29051 Other keys temporarily switch to the @value{GDBN} command prompt.
29052 The key that was pressed is inserted in the editing buffer so that
29053 it is possible to type most @value{GDBN} commands without interaction
29054 with the TUI SingleKey mode. Once the command is entered the TUI
29055 SingleKey mode is restored. The only way to permanently leave
29056 this mode is by typing @kbd{q} or @kbd{C-x s}.
29057
29058 @cindex SingleKey keymap name
29059 If @value{GDBN} was built with Readline 8.0 or later, the TUI
29060 SingleKey keymap will be named @samp{SingleKey}. This can be used in
29061 @file{.inputrc} to add additional bindings to this keymap.
29062
29063 @node TUI Mouse Support
29064 @section TUI Mouse Support
29065 @cindex TUI mouse support
29066
29067 If the curses library supports the mouse, the TUI supports mouse
29068 actions.
29069
29070 The mouse wheel scrolls the appropriate window under the mouse cursor.
29071
29072 The TUI itself does not directly support copying/pasting with the
29073 mouse. However, on Unix terminals, you can typically press and hold
29074 the @key{SHIFT} key on your keyboard to temporarily bypass
29075 @value{GDBN}'s TUI and access the terminal's native mouse copy/paste
29076 functionality (commonly, click-drag-release or double-click to select
29077 text, middle-click to paste). This copy/paste works with the
29078 terminal's selection buffer, as opposed to the TUI's buffer.
29079
29080 @node TUI Commands
29081 @section TUI-specific Commands
29082 @cindex TUI commands
29083
29084 The TUI has specific commands to control the text windows.
29085 These commands are always available, even when @value{GDBN} is not in
29086 the TUI mode. When @value{GDBN} is in the standard mode, most
29087 of these commands will automatically switch to the TUI mode.
29088
29089 Note that if @value{GDBN}'s @code{stdout} is not connected to a
29090 terminal, or @value{GDBN} has been started with the machine interface
29091 interpreter (@pxref{GDB/MI, ,The @sc{gdb/mi} Interface}), most of
29092 these commands will fail with an error, because it would not be
29093 possible or desirable to enable curses window management.
29094
29095 @table @code
29096 @item tui enable
29097 @kindex tui enable
29098 Activate TUI mode. The last active TUI window layout will be used if
29099 TUI mode has previously been used in the current debugging session,
29100 otherwise a default layout is used.
29101
29102 @item tui disable
29103 @kindex tui disable
29104 Disable TUI mode, returning to the console interpreter.
29105
29106 @anchor{info_win_command}
29107 @item info win
29108 @kindex info win
29109 List the names and sizes of all currently displayed windows.
29110
29111 @item tui new-layout @var{name} @var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}
29112 @kindex tui new-layout
29113 Create a new TUI layout. The new layout will be named @var{name}, and
29114 can be accessed using the @code{layout} command (see below).
29115
29116 Each @var{window} parameter is either the name of a window to display,
29117 or a window description. The windows will be displayed from top to
29118 bottom in the order listed.
29119
29120 The names of the windows are the same as the ones given to the
29121 @code{focus} command (see below); additional, the @code{status}
29122 window can be specified. Note that, because it is of fixed height,
29123 the weight assigned to the status window is of no importance. It is
29124 conventional to use @samp{0} here.
29125
29126 A window description looks a bit like an invocation of @code{tui
29127 new-layout}, and is of the form
29128 @{@r{[}@code{-horizontal}@r{]}@var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}@}.
29129
29130 This specifies a sub-layout. If @code{-horizontal} is given, the
29131 windows in this description will be arranged side-by-side, rather than
29132 top-to-bottom.
29133
29134 Each @var{weight} is an integer. It is the weight of this window
29135 relative to all the other windows in the layout. These numbers are
29136 used to calculate how much of the screen is given to each window.
29137
29138 For example:
29139
29140 @example
29141 (gdb) tui new-layout example src 1 regs 1 status 0 cmd 1
29142 @end example
29143
29144 Here, the new layout is called @samp{example}. It shows the source
29145 and register windows, followed by the status window, and then finally
29146 the command window. The non-status windows all have the same weight,
29147 so the terminal will be split into three roughly equal sections.
29148
29149 Here is a more complex example, showing a horizontal layout:
29150
29151 @example
29152 (gdb) tui new-layout example @{-horizontal src 1 asm 1@} 2 status 0 cmd 1
29153 @end example
29154
29155 This will result in side-by-side source and assembly windows; with the
29156 status and command window being beneath these, filling the entire
29157 width of the terminal. Because they have weight 2, the source and
29158 assembly windows will be twice the height of the command window.
29159
29160 @kindex tui layout
29161 @kindex layout
29162 @item tui layout @var{name}
29163 @itemx layout @var{name}
29164 Changes which TUI windows are displayed. The @var{name} parameter
29165 controls which layout is shown. It can be either one of the built-in
29166 layout names, or the name of a layout defined by the user using
29167 @code{tui new-layout}.
29168
29169 The built-in layouts are as follows:
29170
29171 @table @code
29172 @item next
29173 Display the next layout.
29174
29175 @item prev
29176 Display the previous layout.
29177
29178 @item src
29179 Display the source and command windows.
29180
29181 @item asm
29182 Display the assembly and command windows.
29183
29184 @item split
29185 Display the source, assembly, and command windows.
29186
29187 @item regs
29188 When in @code{src} layout display the register, source, and command
29189 windows. When in @code{asm} or @code{split} layout display the
29190 register, assembler, and command windows.
29191 @end table
29192
29193 @kindex focus
29194 @item tui focus @var{name}
29195 @itemx focus @var{name}
29196 Changes which TUI window is currently active for scrolling. The
29197 @var{name} parameter can be any of the following:
29198
29199 @table @code
29200 @item next
29201 Make the next window active for scrolling.
29202
29203 @item prev
29204 Make the previous window active for scrolling.
29205
29206 @item src
29207 Make the source window active for scrolling.
29208
29209 @item asm
29210 Make the assembly window active for scrolling.
29211
29212 @item regs
29213 Make the register window active for scrolling.
29214
29215 @item cmd
29216 Make the command window active for scrolling.
29217 @end table
29218
29219 @kindex tui refresh
29220 @kindex refresh
29221 @item tui refresh
29222 @itemx refresh
29223 Refresh the screen. This is similar to typing @kbd{C-L}.
29224
29225 @item tui reg @var{group}
29226 @kindex tui reg
29227 Changes the register group displayed in the tui register window to
29228 @var{group}. If the register window is not currently displayed this
29229 command will cause the register window to be displayed. The list of
29230 register groups, as well as their order is target specific. The
29231 following groups are available on most targets:
29232 @table @code
29233 @item next
29234 Repeatedly selecting this group will cause the display to cycle
29235 through all of the available register groups.
29236
29237 @item prev
29238 Repeatedly selecting this group will cause the display to cycle
29239 through all of the available register groups in the reverse order to
29240 @var{next}.
29241
29242 @item general
29243 Display the general registers.
29244 @item float
29245 Display the floating point registers.
29246 @item system
29247 Display the system registers.
29248 @item vector
29249 Display the vector registers.
29250 @item all
29251 Display all registers.
29252 @end table
29253
29254 @item update
29255 @kindex update
29256 Update the source window and the current execution point.
29257
29258 @kindex tui window height
29259 @kindex winheight
29260 @item tui window height @var{name} +@var{count}
29261 @itemx tui window height @var{name} -@var{count}
29262 @itemx winheight @var{name} +@var{count}
29263 @itemx winheight @var{name} -@var{count}
29264 Change the height of the window @var{name} by @var{count} lines.
29265 Positive counts increase the height, while negative counts decrease
29266 it. The @var{name} parameter can be the name of any currently visible
29267 window. The names of the currently visible windows can be discovered
29268 using @kbd{info win} (@pxref{info_win_command,,info win}).
29269
29270 The set of currently visible windows must always fill the terminal,
29271 and so, it is only possible to resize on window if there are other
29272 visible windows that can either give or receive the extra terminal
29273 space.
29274
29275 @kindex tui window width
29276 @kindex winwidth
29277 @item tui window width @var{name} +@var{count}
29278 @itemx tui window width @var{name} -@var{count}
29279 @itemx winwidth @var{name} +@var{count}
29280 @itemx winwidth @var{name} -@var{count}
29281 Change the width of the window @var{name} by @var{count} columns.
29282 Positive counts increase the width, while negative counts decrease it.
29283 The @var{name} parameter can be the name of any currently visible
29284 window. The names of the currently visible windows can be discovered
29285 using @code{info win} (@pxref{info_win_command,,info win}).
29286
29287 The set of currently visible windows must always fill the terminal,
29288 and so, it is only possible to resize on window if there are other
29289 visible windows that can either give or receive the extra terminal
29290 space.
29291 @end table
29292
29293 @node TUI Configuration
29294 @section TUI Configuration Variables
29295 @cindex TUI configuration variables
29296
29297 Several configuration variables control the appearance of TUI windows.
29298
29299 @table @code
29300 @item set tui border-kind @var{kind}
29301 @kindex set tui border-kind
29302 Select the border appearance for the source, assembly and register windows.
29303 The possible values are the following:
29304 @table @code
29305 @item space
29306 Use a space character to draw the border.
29307
29308 @item ascii
29309 Use @sc{ascii} characters @samp{+}, @samp{-} and @samp{|} to draw the border.
29310
29311 @item acs
29312 Use the Alternate Character Set to draw the border. The border is
29313 drawn using character line graphics if the terminal supports them.
29314 @end table
29315
29316 @item set tui border-mode @var{mode}
29317 @kindex set tui border-mode
29318 @itemx set tui active-border-mode @var{mode}
29319 @kindex set tui active-border-mode
29320 Select the display attributes for the borders of the inactive windows
29321 or the active window. The @var{mode} can be one of the following:
29322 @table @code
29323 @item normal
29324 Use normal attributes to display the border.
29325
29326 @item standout
29327 Use standout mode.
29328
29329 @item reverse
29330 Use reverse video mode.
29331
29332 @item half
29333 Use half bright mode.
29334
29335 @item half-standout
29336 Use half bright and standout mode.
29337
29338 @item bold
29339 Use extra bright or bold mode.
29340
29341 @item bold-standout
29342 Use extra bright or bold and standout mode.
29343 @end table
29344
29345 @item set tui tab-width @var{nchars}
29346 @kindex set tui tab-width
29347 @kindex tabset
29348 Set the width of tab stops to be @var{nchars} characters. This
29349 setting affects the display of TAB characters in the source and
29350 assembly windows.
29351
29352 @item set tui compact-source @r{[}on@r{|}off@r{]}
29353 @kindex set tui compact-source
29354 Set whether the TUI source window is displayed in ``compact'' form.
29355 The default display uses more space for line numbers and starts the
29356 source text at the next tab stop; the compact display uses only as
29357 much space as is needed for the line numbers in the current file, and
29358 only a single space to separate the line numbers from the source.
29359
29360 @kindex set debug tui
29361 @item set debug tui @r{[}on|off@r{]}
29362 Turn on or off display of @value{GDBN} internal debug messages relating
29363 to the TUI.
29364
29365 @kindex show debug tui
29366 @item show debug tui
29367 Show the current status of displaying @value{GDBN} internal debug
29368 messages relating to the TUI.
29369
29370 @end table
29371
29372 Note that the colors of the TUI borders can be controlled using the
29373 appropriate @code{set style} commands. @xref{Output Styling}.
29374
29375 @node Emacs
29376 @chapter Using @value{GDBN} under @sc{gnu} Emacs
29377
29378 @cindex Emacs
29379 @cindex @sc{gnu} Emacs
29380 A special interface allows you to use @sc{gnu} Emacs to view (and
29381 edit) the source files for the program you are debugging with
29382 @value{GDBN}.
29383
29384 To use this interface, use the command @kbd{M-x gdb} in Emacs. Give the
29385 executable file you want to debug as an argument. This command starts
29386 @value{GDBN} as a subprocess of Emacs, with input and output through a newly
29387 created Emacs buffer.
29388 @c (Do not use the @code{-tui} option to run @value{GDBN} from Emacs.)
29389
29390 Running @value{GDBN} under Emacs can be just like running @value{GDBN} normally except for two
29391 things:
29392
29393 @itemize @bullet
29394 @item
29395 All ``terminal'' input and output goes through an Emacs buffer, called
29396 the GUD buffer.
29397
29398 This applies both to @value{GDBN} commands and their output, and to the input
29399 and output done by the program you are debugging.
29400
29401 This is useful because it means that you can copy the text of previous
29402 commands and input them again; you can even use parts of the output
29403 in this way.
29404
29405 All the facilities of Emacs' Shell mode are available for interacting
29406 with your program. In particular, you can send signals the usual
29407 way---for example, @kbd{C-c C-c} for an interrupt, @kbd{C-c C-z} for a
29408 stop.
29409
29410 @item
29411 @value{GDBN} displays source code through Emacs.
29412
29413 Each time @value{GDBN} displays a stack frame, Emacs automatically finds the
29414 source file for that frame and puts an arrow (@samp{=>}) at the
29415 left margin of the current line. Emacs uses a separate buffer for
29416 source display, and splits the screen to show both your @value{GDBN} session
29417 and the source.
29418
29419 Explicit @value{GDBN} @code{list} or search commands still produce output as
29420 usual, but you probably have no reason to use them from Emacs.
29421 @end itemize
29422
29423 We call this @dfn{text command mode}. Emacs 22.1, and later, also uses
29424 a graphical mode, enabled by default, which provides further buffers
29425 that can control the execution and describe the state of your program.
29426 @xref{GDB Graphical Interface,,, Emacs, The @sc{gnu} Emacs Manual}.
29427
29428 If you specify an absolute file name when prompted for the @kbd{M-x
29429 gdb} argument, then Emacs sets your current working directory to where
29430 your program resides. If you only specify the file name, then Emacs
29431 sets your current working directory to the directory associated
29432 with the previous buffer. In this case, @value{GDBN} may find your
29433 program by searching your environment's @env{PATH} variable, but on
29434 some operating systems it might not find the source. So, although the
29435 @value{GDBN} input and output session proceeds normally, the auxiliary
29436 buffer does not display the current source and line of execution.
29437
29438 The initial working directory of @value{GDBN} is printed on the top
29439 line of the GUD buffer and this serves as a default for the commands
29440 that specify files for @value{GDBN} to operate on. @xref{Files,
29441 ,Commands to Specify Files}.
29442
29443 By default, @kbd{M-x gdb} calls the program called @file{gdb}. If you
29444 need to call @value{GDBN} by a different name (for example, if you
29445 keep several configurations around, with different names) you can
29446 customize the Emacs variable @code{gud-gdb-command-name} to run the
29447 one you want.
29448
29449 In the GUD buffer, you can use these special Emacs commands in
29450 addition to the standard Shell mode commands:
29451
29452 @table @kbd
29453 @item C-h m
29454 Describe the features of Emacs' GUD Mode.
29455
29456 @item C-c C-s
29457 Execute to another source line, like the @value{GDBN} @code{step} command; also
29458 update the display window to show the current file and location.
29459
29460 @item C-c C-n
29461 Execute to next source line in this function, skipping all function
29462 calls, like the @value{GDBN} @code{next} command. Then update the display window
29463 to show the current file and location.
29464
29465 @item C-c C-i
29466 Execute one instruction, like the @value{GDBN} @code{stepi} command; update
29467 display window accordingly.
29468
29469 @item C-c C-f
29470 Execute until exit from the selected stack frame, like the @value{GDBN}
29471 @code{finish} command.
29472
29473 @item C-c C-r
29474 Continue execution of your program, like the @value{GDBN} @code{continue}
29475 command.
29476
29477 @item C-c <
29478 Go up the number of frames indicated by the numeric argument
29479 (@pxref{Arguments, , Numeric Arguments, Emacs, The @sc{gnu} Emacs Manual}),
29480 like the @value{GDBN} @code{up} command.
29481
29482 @item C-c >
29483 Go down the number of frames indicated by the numeric argument, like the
29484 @value{GDBN} @code{down} command.
29485 @end table
29486
29487 In any source file, the Emacs command @kbd{C-x @key{SPC}} (@code{gud-break})
29488 tells @value{GDBN} to set a breakpoint on the source line point is on.
29489
29490 In text command mode, if you type @kbd{M-x speedbar}, Emacs displays a
29491 separate frame which shows a backtrace when the GUD buffer is current.
29492 Move point to any frame in the stack and type @key{RET} to make it
29493 become the current frame and display the associated source in the
29494 source buffer. Alternatively, click @kbd{Mouse-2} to make the
29495 selected frame become the current one. In graphical mode, the
29496 speedbar displays watch expressions.
29497
29498 If you accidentally delete the source-display buffer, an easy way to get
29499 it back is to type the command @code{f} in the @value{GDBN} buffer, to
29500 request a frame display; when you run under Emacs, this recreates
29501 the source buffer if necessary to show you the context of the current
29502 frame.
29503
29504 The source files displayed in Emacs are in ordinary Emacs buffers
29505 which are visiting the source files in the usual way. You can edit
29506 the files with these buffers if you wish; but keep in mind that @value{GDBN}
29507 communicates with Emacs in terms of line numbers. If you add or
29508 delete lines from the text, the line numbers that @value{GDBN} knows cease
29509 to correspond properly with the code.
29510
29511 A more detailed description of Emacs' interaction with @value{GDBN} is
29512 given in the Emacs manual (@pxref{Debuggers,,, Emacs, The @sc{gnu}
29513 Emacs Manual}).
29514
29515 @node GDB/MI
29516 @chapter The @sc{gdb/mi} Interface
29517
29518 @unnumberedsec Function and Purpose
29519
29520 @cindex @sc{gdb/mi}, its purpose
29521 @sc{gdb/mi} is a line based machine oriented text interface to
29522 @value{GDBN} and is activated by specifying using the
29523 @option{--interpreter} command line option (@pxref{Mode Options}). It
29524 is specifically intended to support the development of systems which
29525 use the debugger as just one small component of a larger system.
29526
29527 This chapter is a specification of the @sc{gdb/mi} interface. It is written
29528 in the form of a reference manual.
29529
29530 Note that @sc{gdb/mi} is still under construction, so some of the
29531 features described below are incomplete and subject to change
29532 (@pxref{GDB/MI Development and Front Ends, , @sc{gdb/mi} Development and Front Ends}).
29533
29534 @unnumberedsec Notation and Terminology
29535
29536 @cindex notational conventions, for @sc{gdb/mi}
29537 This chapter uses the following notation:
29538
29539 @itemize @bullet
29540 @item
29541 @code{|} separates two alternatives.
29542
29543 @item
29544 @code{[ @var{something} ]} indicates that @var{something} is optional:
29545 it may or may not be given.
29546
29547 @item
29548 @code{( @var{group} )*} means that @var{group} inside the parentheses
29549 may repeat zero or more times.
29550
29551 @item
29552 @code{( @var{group} )+} means that @var{group} inside the parentheses
29553 may repeat one or more times.
29554
29555 @item
29556 @code{"@var{string}"} means a literal @var{string}.
29557 @end itemize
29558
29559 @ignore
29560 @heading Dependencies
29561 @end ignore
29562
29563 @menu
29564 * GDB/MI General Design::
29565 * GDB/MI Command Syntax::
29566 * GDB/MI Compatibility with CLI::
29567 * GDB/MI Development and Front Ends::
29568 * GDB/MI Output Records::
29569 * GDB/MI Simple Examples::
29570 * GDB/MI Command Description Format::
29571 * GDB/MI Breakpoint Commands::
29572 * GDB/MI Catchpoint Commands::
29573 * GDB/MI Program Context::
29574 * GDB/MI Thread Commands::
29575 * GDB/MI Ada Tasking Commands::
29576 * GDB/MI Program Execution::
29577 * GDB/MI Stack Manipulation::
29578 * GDB/MI Variable Objects::
29579 * GDB/MI Data Manipulation::
29580 * GDB/MI Tracepoint Commands::
29581 * GDB/MI Symbol Query::
29582 * GDB/MI File Commands::
29583 @ignore
29584 * GDB/MI Kod Commands::
29585 * GDB/MI Memory Overlay Commands::
29586 * GDB/MI Signal Handling Commands::
29587 @end ignore
29588 * GDB/MI Target Manipulation::
29589 * GDB/MI File Transfer Commands::
29590 * GDB/MI Ada Exceptions Commands::
29591 * GDB/MI Support Commands::
29592 * GDB/MI Miscellaneous Commands::
29593 @end menu
29594
29595 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29596 @node GDB/MI General Design
29597 @section @sc{gdb/mi} General Design
29598 @cindex GDB/MI General Design
29599
29600 Interaction of a @sc{GDB/MI} frontend with @value{GDBN} involves three
29601 parts---commands sent to @value{GDBN}, responses to those commands
29602 and notifications. Each command results in exactly one response,
29603 indicating either successful completion of the command, or an error.
29604 For the commands that do not resume the target, the response contains the
29605 requested information. For the commands that resume the target, the
29606 response only indicates whether the target was successfully resumed.
29607 Notifications is the mechanism for reporting changes in the state of the
29608 target, or in @value{GDBN} state, that cannot conveniently be associated with
29609 a command and reported as part of that command response.
29610
29611 The important examples of notifications are:
29612 @itemize @bullet
29613
29614 @item
29615 Exec notifications. These are used to report changes in
29616 target state---when a target is resumed, or stopped. It would not
29617 be feasible to include this information in response of resuming
29618 commands, because one resume commands can result in multiple events in
29619 different threads. Also, quite some time may pass before any event
29620 happens in the target, while a frontend needs to know whether the resuming
29621 command itself was successfully executed.
29622
29623 @item
29624 Console output, and status notifications. Console output
29625 notifications are used to report output of CLI commands, as well as
29626 diagnostics for other commands. Status notifications are used to
29627 report the progress of a long-running operation. Naturally, including
29628 this information in command response would mean no output is produced
29629 until the command is finished, which is undesirable.
29630
29631 @item
29632 General notifications. Commands may have various side effects on
29633 the @value{GDBN} or target state beyond their official purpose. For example,
29634 a command may change the selected thread. Although such changes can
29635 be included in command response, using notification allows for more
29636 orthogonal frontend design.
29637
29638 @end itemize
29639
29640 There's no guarantee that whenever an MI command reports an error,
29641 @value{GDBN} or the target are in any specific state, and especially,
29642 the state is not reverted to the state before the MI command was
29643 processed. Therefore, whenever an MI command results in an error,
29644 we recommend that the frontend refreshes all the information shown in
29645 the user interface.
29646
29647
29648 @menu
29649 * Context management::
29650 * Asynchronous and non-stop modes::
29651 * Thread groups::
29652 @end menu
29653
29654 @node Context management
29655 @subsection Context management
29656
29657 @subsubsection Threads and Frames
29658
29659 In most cases when @value{GDBN} accesses the target, this access is
29660 done in context of a specific thread and frame (@pxref{Frames}).
29661 Often, even when accessing global data, the target requires that a thread
29662 be specified. The CLI interface maintains the selected thread and frame,
29663 and supplies them to target on each command. This is convenient,
29664 because a command line user would not want to specify that information
29665 explicitly on each command, and because user interacts with
29666 @value{GDBN} via a single terminal, so no confusion is possible as
29667 to what thread and frame are the current ones.
29668
29669 In the case of MI, the concept of selected thread and frame is less
29670 useful. First, a frontend can easily remember this information
29671 itself. Second, a graphical frontend can have more than one window,
29672 each one used for debugging a different thread, and the frontend might
29673 want to access additional threads for internal purposes. This
29674 increases the risk that by relying on implicitly selected thread, the
29675 frontend may be operating on a wrong one. Therefore, each MI command
29676 should explicitly specify which thread and frame to operate on. To
29677 make it possible, each MI command accepts the @samp{--thread} and
29678 @samp{--frame} options, the value to each is @value{GDBN} global
29679 identifier for thread and frame to operate on.
29680
29681 Usually, each top-level window in a frontend allows the user to select
29682 a thread and a frame, and remembers the user selection for further
29683 operations. However, in some cases @value{GDBN} may suggest that the
29684 current thread or frame be changed. For example, when stopping on a
29685 breakpoint it is reasonable to switch to the thread where breakpoint is
29686 hit. For another example, if the user issues the CLI @samp{thread} or
29687 @samp{frame} commands via the frontend, it is desirable to change the
29688 frontend's selection to the one specified by user. @value{GDBN}
29689 communicates the suggestion to change current thread and frame using the
29690 @samp{=thread-selected} notification.
29691
29692 Note that historically, MI shares the selected thread with CLI, so
29693 frontends used the @code{-thread-select} to execute commands in the
29694 right context. However, getting this to work right is cumbersome. The
29695 simplest way is for frontend to emit @code{-thread-select} command
29696 before every command. This doubles the number of commands that need
29697 to be sent. The alternative approach is to suppress @code{-thread-select}
29698 if the selected thread in @value{GDBN} is supposed to be identical to the
29699 thread the frontend wants to operate on. However, getting this
29700 optimization right can be tricky. In particular, if the frontend
29701 sends several commands to @value{GDBN}, and one of the commands changes the
29702 selected thread, then the behaviour of subsequent commands will
29703 change. So, a frontend should either wait for response from such
29704 problematic commands, or explicitly add @code{-thread-select} for
29705 all subsequent commands. No frontend is known to do this exactly
29706 right, so it is suggested to just always pass the @samp{--thread} and
29707 @samp{--frame} options.
29708
29709 @subsubsection Language
29710
29711 The execution of several commands depends on which language is selected.
29712 By default, the current language (@pxref{show language}) is used.
29713 But for commands known to be language-sensitive, it is recommended
29714 to use the @samp{--language} option. This option takes one argument,
29715 which is the name of the language to use while executing the command.
29716 For instance:
29717
29718 @smallexample
29719 -data-evaluate-expression --language c "sizeof (void*)"
29720 ^done,value="4"
29721 (gdb)
29722 @end smallexample
29723
29724 The valid language names are the same names accepted by the
29725 @samp{set language} command (@pxref{Manually}), excluding @samp{auto},
29726 @samp{local} or @samp{unknown}.
29727
29728 @node Asynchronous and non-stop modes
29729 @subsection Asynchronous command execution and non-stop mode
29730
29731 On some targets, @value{GDBN} is capable of processing MI commands
29732 even while the target is running. This is called @dfn{asynchronous
29733 command execution} (@pxref{Background Execution}). The frontend may
29734 specify a preference for asynchronous execution using the
29735 @code{-gdb-set mi-async 1} command, which should be emitted before
29736 either running the executable or attaching to the target. After the
29737 frontend has started the executable or attached to the target, it can
29738 find if asynchronous execution is enabled using the
29739 @code{-list-target-features} command.
29740
29741 @table @code
29742 @cindex foreground execution
29743 @cindex background execution
29744 @cindex asynchronous execution
29745 @cindex execution, foreground, background and asynchronous
29746 @kindex set mi-async
29747 @item -gdb-set mi-async @r{[}on@r{|}off@r{]}
29748 Set whether MI is in asynchronous mode.
29749
29750 When @code{off}, which is the default, MI execution commands (e.g.,
29751 @code{-exec-continue}) are foreground commands, and @value{GDBN} waits
29752 for the program to stop before processing further commands.
29753
29754 When @code{on}, MI execution commands are background execution
29755 commands (e.g., @code{-exec-continue} becomes the equivalent of the
29756 @code{c&} CLI command), and so @value{GDBN} is capable of processing
29757 MI commands even while the target is running.
29758
29759 @kindex show mi-async
29760 @item -gdb-show mi-async
29761 Show whether MI asynchronous mode is enabled.
29762 @end table
29763
29764 Note: In @value{GDBN} version 7.7 and earlier, this option was called
29765 @code{target-async} instead of @code{mi-async}, and it had the effect
29766 of both putting MI in asynchronous mode and making CLI background
29767 commands possible. CLI background commands are now always possible
29768 ``out of the box'' if the target supports them. The old spelling is
29769 kept as a deprecated alias for backwards compatibility.
29770
29771 Even if @value{GDBN} can accept a command while target is running,
29772 many commands that access the target do not work when the target is
29773 running. Therefore, asynchronous command execution is most useful
29774 when combined with non-stop mode (@pxref{Non-Stop Mode}). Then,
29775 it is possible to examine the state of one thread, while other threads
29776 are running.
29777
29778 When a given thread is running, MI commands that try to access the
29779 target in the context of that thread may not work, or may work only on
29780 some targets. In particular, commands that try to operate on thread's
29781 stack will not work, on any target. Commands that read memory, or
29782 modify breakpoints, may work or not work, depending on the target. Note
29783 that even commands that operate on global state, such as @code{print},
29784 @code{set}, and breakpoint commands, still access the target in the
29785 context of a specific thread, so frontend should try to find a
29786 stopped thread and perform the operation on that thread (using the
29787 @samp{--thread} option).
29788
29789 Which commands will work in the context of a running thread is
29790 highly target dependent. However, the two commands
29791 @code{-exec-interrupt}, to stop a thread, and @code{-thread-info},
29792 to find the state of a thread, will always work.
29793
29794 @node Thread groups
29795 @subsection Thread groups
29796 @value{GDBN} may be used to debug several processes at the same time.
29797 On some platforms, @value{GDBN} may support debugging of several
29798 hardware systems, each one having several cores with several different
29799 processes running on each core. This section describes the MI
29800 mechanism to support such debugging scenarios.
29801
29802 The key observation is that regardless of the structure of the
29803 target, MI can have a global list of threads, because most commands that
29804 accept the @samp{--thread} option do not need to know what process that
29805 thread belongs to. Therefore, it is not necessary to introduce
29806 neither additional @samp{--process} option, nor an notion of the
29807 current process in the MI interface. The only strictly new feature
29808 that is required is the ability to find how the threads are grouped
29809 into processes.
29810
29811 To allow the user to discover such grouping, and to support arbitrary
29812 hierarchy of machines/cores/processes, MI introduces the concept of a
29813 @dfn{thread group}. Thread group is a collection of threads and other
29814 thread groups. A thread group always has a string identifier, a type,
29815 and may have additional attributes specific to the type. A new
29816 command, @code{-list-thread-groups}, returns the list of top-level
29817 thread groups, which correspond to processes that @value{GDBN} is
29818 debugging at the moment. By passing an identifier of a thread group
29819 to the @code{-list-thread-groups} command, it is possible to obtain
29820 the members of specific thread group.
29821
29822 To allow the user to easily discover processes, and other objects, he
29823 wishes to debug, a concept of @dfn{available thread group} is
29824 introduced. Available thread group is an thread group that
29825 @value{GDBN} is not debugging, but that can be attached to, using the
29826 @code{-target-attach} command. The list of available top-level thread
29827 groups can be obtained using @samp{-list-thread-groups --available}.
29828 In general, the content of a thread group may be only retrieved only
29829 after attaching to that thread group.
29830
29831 Thread groups are related to inferiors (@pxref{Inferiors Connections and
29832 Programs}). Each inferior corresponds to a thread group of a special
29833 type @samp{process}, and some additional operations are permitted on
29834 such thread groups.
29835
29836 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29837 @node GDB/MI Command Syntax
29838 @section @sc{gdb/mi} Command Syntax
29839
29840 @menu
29841 * GDB/MI Input Syntax::
29842 * GDB/MI Output Syntax::
29843 @end menu
29844
29845 @node GDB/MI Input Syntax
29846 @subsection @sc{gdb/mi} Input Syntax
29847
29848 @cindex input syntax for @sc{gdb/mi}
29849 @cindex @sc{gdb/mi}, input syntax
29850 @table @code
29851 @item @var{command} @expansion{}
29852 @code{@var{cli-command} | @var{mi-command}}
29853
29854 @item @var{cli-command} @expansion{}
29855 @code{[ @var{token} ] @var{cli-command} @var{nl}}, where
29856 @var{cli-command} is any existing @value{GDBN} CLI command.
29857
29858 @item @var{mi-command} @expansion{}
29859 @code{[ @var{token} ] "-" @var{operation} ( " " @var{option} )*
29860 @code{[} " --" @code{]} ( " " @var{parameter} )* @var{nl}}
29861
29862 @item @var{token} @expansion{}
29863 "any sequence of digits"
29864
29865 @item @var{option} @expansion{}
29866 @code{"-" @var{parameter} [ " " @var{parameter} ]}
29867
29868 @item @var{parameter} @expansion{}
29869 @code{@var{non-blank-sequence} | @var{c-string}}
29870
29871 @item @var{operation} @expansion{}
29872 @emph{any of the operations described in this chapter}
29873
29874 @item @var{non-blank-sequence} @expansion{}
29875 @emph{anything, provided it doesn't contain special characters such as
29876 "-", @var{nl}, """ and of course " "}
29877
29878 @item @var{c-string} @expansion{}
29879 @code{""" @var{seven-bit-iso-c-string-content} """}
29880
29881 @item @var{nl} @expansion{}
29882 @code{CR | CR-LF}
29883 @end table
29884
29885 @noindent
29886 Notes:
29887
29888 @itemize @bullet
29889 @item
29890 The CLI commands are still handled by the @sc{mi} interpreter; their
29891 output is described below.
29892
29893 @item
29894 The @code{@var{token}}, when present, is passed back when the command
29895 finishes.
29896
29897 @item
29898 Some @sc{mi} commands accept optional arguments as part of the parameter
29899 list. Each option is identified by a leading @samp{-} (dash) and may be
29900 followed by an optional argument parameter. Options occur first in the
29901 parameter list and can be delimited from normal parameters using
29902 @samp{--} (this is useful when some parameters begin with a dash).
29903 @end itemize
29904
29905 Pragmatics:
29906
29907 @itemize @bullet
29908 @item
29909 We want easy access to the existing CLI syntax (for debugging).
29910
29911 @item
29912 We want it to be easy to spot a @sc{mi} operation.
29913 @end itemize
29914
29915 @node GDB/MI Output Syntax
29916 @subsection @sc{gdb/mi} Output Syntax
29917
29918 @cindex output syntax of @sc{gdb/mi}
29919 @cindex @sc{gdb/mi}, output syntax
29920 The output from @sc{gdb/mi} consists of zero or more out-of-band records
29921 followed, optionally, by a single result record. This result record
29922 is for the most recent command. The sequence of output records is
29923 terminated by @samp{(gdb)}.
29924
29925 If an input command was prefixed with a @code{@var{token}} then the
29926 corresponding output for that command will also be prefixed by that same
29927 @var{token}.
29928
29929 @table @code
29930 @item @var{output} @expansion{}
29931 @code{( @var{out-of-band-record} )* [ @var{result-record} ] "(gdb)" @var{nl}}
29932
29933 @item @var{result-record} @expansion{}
29934 @code{ [ @var{token} ] "^" @var{result-class} ( "," @var{result} )* @var{nl}}
29935
29936 @item @var{out-of-band-record} @expansion{}
29937 @code{@var{async-record} | @var{stream-record}}
29938
29939 @item @var{async-record} @expansion{}
29940 @code{@var{exec-async-output} | @var{status-async-output} | @var{notify-async-output}}
29941
29942 @item @var{exec-async-output} @expansion{}
29943 @code{[ @var{token} ] "*" @var{async-output nl}}
29944
29945 @item @var{status-async-output} @expansion{}
29946 @code{[ @var{token} ] "+" @var{async-output nl}}
29947
29948 @item @var{notify-async-output} @expansion{}
29949 @code{[ @var{token} ] "=" @var{async-output nl}}
29950
29951 @item @var{async-output} @expansion{}
29952 @code{@var{async-class} ( "," @var{result} )*}
29953
29954 @item @var{result-class} @expansion{}
29955 @code{"done" | "running" | "connected" | "error" | "exit"}
29956
29957 @item @var{async-class} @expansion{}
29958 @code{"stopped" | @var{others}} (where @var{others} will be added
29959 depending on the needs---this is still in development).
29960
29961 @item @var{result} @expansion{}
29962 @code{ @var{variable} "=" @var{value}}
29963
29964 @item @var{variable} @expansion{}
29965 @code{ @var{string} }
29966
29967 @item @var{value} @expansion{}
29968 @code{ @var{const} | @var{tuple} | @var{list} }
29969
29970 @item @var{const} @expansion{}
29971 @code{@var{c-string}}
29972
29973 @item @var{tuple} @expansion{}
29974 @code{ "@{@}" | "@{" @var{result} ( "," @var{result} )* "@}" }
29975
29976 @item @var{list} @expansion{}
29977 @code{ "[]" | "[" @var{value} ( "," @var{value} )* "]" | "["
29978 @var{result} ( "," @var{result} )* "]" }
29979
29980 @item @var{stream-record} @expansion{}
29981 @code{@var{console-stream-output} | @var{target-stream-output} | @var{log-stream-output}}
29982
29983 @item @var{console-stream-output} @expansion{}
29984 @code{"~" @var{c-string nl}}
29985
29986 @item @var{target-stream-output} @expansion{}
29987 @code{"@@" @var{c-string nl}}
29988
29989 @item @var{log-stream-output} @expansion{}
29990 @code{"&" @var{c-string nl}}
29991
29992 @item @var{nl} @expansion{}
29993 @code{CR | CR-LF}
29994
29995 @item @var{token} @expansion{}
29996 @emph{any sequence of digits}.
29997 @end table
29998
29999 @noindent
30000 Notes:
30001
30002 @itemize @bullet
30003 @item
30004 All output sequences end in a single line containing a period.
30005
30006 @item
30007 The @code{@var{token}} is from the corresponding request. Note that
30008 for all async output, while the token is allowed by the grammar and
30009 may be output by future versions of @value{GDBN} for select async
30010 output messages, it is generally omitted. Frontends should treat
30011 all async output as reporting general changes in the state of the
30012 target and there should be no need to associate async output to any
30013 prior command.
30014
30015 @item
30016 @cindex status output in @sc{gdb/mi}
30017 @var{status-async-output} contains on-going status information about the
30018 progress of a slow operation. It can be discarded. All status output is
30019 prefixed by @samp{+}.
30020
30021 @item
30022 @cindex async output in @sc{gdb/mi}
30023 @var{exec-async-output} contains asynchronous state change on the target
30024 (stopped, started, disappeared). All async output is prefixed by
30025 @samp{*}.
30026
30027 @item
30028 @cindex notify output in @sc{gdb/mi}
30029 @var{notify-async-output} contains supplementary information that the
30030 client should handle (e.g., a new breakpoint information). All notify
30031 output is prefixed by @samp{=}.
30032
30033 @item
30034 @cindex console output in @sc{gdb/mi}
30035 @var{console-stream-output} is output that should be displayed as is in the
30036 console. It is the textual response to a CLI command. All the console
30037 output is prefixed by @samp{~}.
30038
30039 @item
30040 @cindex target output in @sc{gdb/mi}
30041 @var{target-stream-output} is the output produced by the target program.
30042 All the target output is prefixed by @samp{@@}.
30043
30044 @item
30045 @cindex log output in @sc{gdb/mi}
30046 @var{log-stream-output} is output text coming from @value{GDBN}'s internals, for
30047 instance messages that should be displayed as part of an error log. All
30048 the log output is prefixed by @samp{&}.
30049
30050 @item
30051 @cindex list output in @sc{gdb/mi}
30052 New @sc{gdb/mi} commands should only output @var{lists} containing
30053 @var{values}.
30054
30055
30056 @end itemize
30057
30058 @xref{GDB/MI Stream Records, , @sc{gdb/mi} Stream Records}, for more
30059 details about the various output records.
30060
30061 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30062 @node GDB/MI Compatibility with CLI
30063 @section @sc{gdb/mi} Compatibility with CLI
30064
30065 @cindex compatibility, @sc{gdb/mi} and CLI
30066 @cindex @sc{gdb/mi}, compatibility with CLI
30067
30068 For the developers convenience CLI commands can be entered directly,
30069 but there may be some unexpected behaviour. For example, commands
30070 that query the user will behave as if the user replied yes, breakpoint
30071 command lists are not executed and some CLI commands, such as
30072 @code{if}, @code{when} and @code{define}, prompt for further input with
30073 @samp{>}, which is not valid MI output.
30074
30075 This feature may be removed at some stage in the future and it is
30076 recommended that front ends use the @code{-interpreter-exec} command
30077 (@pxref{-interpreter-exec}).
30078
30079 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30080 @node GDB/MI Development and Front Ends
30081 @section @sc{gdb/mi} Development and Front Ends
30082 @cindex @sc{gdb/mi} development
30083
30084 The application which takes the MI output and presents the state of the
30085 program being debugged to the user is called a @dfn{front end}.
30086
30087 Since @sc{gdb/mi} is used by a variety of front ends to @value{GDBN}, changes
30088 to the MI interface may break existing usage. This section describes how the
30089 protocol changes and how to request previous version of the protocol when it
30090 does.
30091
30092 Some changes in MI need not break a carefully designed front end, and
30093 for these the MI version will remain unchanged. The following is a
30094 list of changes that may occur within one level, so front ends should
30095 parse MI output in a way that can handle them:
30096
30097 @itemize @bullet
30098 @item
30099 New MI commands may be added.
30100
30101 @item
30102 New fields may be added to the output of any MI command.
30103
30104 @item
30105 The range of values for fields with specified values, e.g.,
30106 @code{in_scope} (@pxref{-var-update}) may be extended.
30107
30108 @c The format of field's content e.g type prefix, may change so parse it
30109 @c at your own risk. Yes, in general?
30110
30111 @c The order of fields may change? Shouldn't really matter but it might
30112 @c resolve inconsistencies.
30113 @end itemize
30114
30115 If the changes are likely to break front ends, the MI version level
30116 will be increased by one. The new versions of the MI protocol are not compatible
30117 with the old versions. Old versions of MI remain available, allowing front ends
30118 to keep using them until they are modified to use the latest MI version.
30119
30120 Since @code{--interpreter=mi} always points to the latest MI version, it is
30121 recommended that front ends request a specific version of MI when launching
30122 @value{GDBN} (e.g.@: @code{--interpreter=mi2}) to make sure they get an
30123 interpreter with the MI version they expect.
30124
30125 The following table gives a summary of the released versions of the MI
30126 interface: the version number, the version of GDB in which it first appeared
30127 and the breaking changes compared to the previous version.
30128
30129 @multitable @columnfractions .05 .05 .9
30130 @headitem MI version @tab GDB version @tab Breaking changes
30131
30132 @item
30133 @center 1
30134 @tab
30135 @center 5.1
30136 @tab
30137 None
30138
30139 @item
30140 @center 2
30141 @tab
30142 @center 6.0
30143 @tab
30144
30145 @itemize
30146 @item
30147 The @code{-environment-pwd}, @code{-environment-directory} and
30148 @code{-environment-path} commands now returns values using the MI output
30149 syntax, rather than CLI output syntax.
30150
30151 @item
30152 @code{-var-list-children}'s @code{children} result field is now a list, rather
30153 than a tuple.
30154
30155 @item
30156 @code{-var-update}'s @code{changelist} result field is now a list, rather than
30157 a tuple.
30158 @end itemize
30159
30160 @item
30161 @center 3
30162 @tab
30163 @center 9.1
30164 @tab
30165
30166 @itemize
30167 @item
30168 The output of information about multi-location breakpoints has changed in the
30169 responses to the @code{-break-insert} and @code{-break-info} commands, as well
30170 as in the @code{=breakpoint-created} and @code{=breakpoint-modified} events.
30171 The multiple locations are now placed in a @code{locations} field, whose value
30172 is a list.
30173 @end itemize
30174
30175 @end multitable
30176
30177 If your front end cannot yet migrate to a more recent version of the
30178 MI protocol, you can nevertheless selectively enable specific features
30179 available in those recent MI versions, using the following commands:
30180
30181 @table @code
30182
30183 @item -fix-multi-location-breakpoint-output
30184 Use the output for multi-location breakpoints which was introduced by
30185 MI 3, even when using MI versions 2 or 1. This command has no
30186 effect when using MI version 3 or later.
30187
30188 @end table
30189
30190 The best way to avoid unexpected changes in MI that might break your front
30191 end is to make your project known to @value{GDBN} developers and
30192 follow development on @email{gdb@@sourceware.org} and
30193 @email{gdb-patches@@sourceware.org}.
30194 @cindex mailing lists
30195
30196 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30197 @node GDB/MI Output Records
30198 @section @sc{gdb/mi} Output Records
30199
30200 @menu
30201 * GDB/MI Result Records::
30202 * GDB/MI Stream Records::
30203 * GDB/MI Async Records::
30204 * GDB/MI Breakpoint Information::
30205 * GDB/MI Frame Information::
30206 * GDB/MI Thread Information::
30207 * GDB/MI Ada Exception Information::
30208 @end menu
30209
30210 @node GDB/MI Result Records
30211 @subsection @sc{gdb/mi} Result Records
30212
30213 @cindex result records in @sc{gdb/mi}
30214 @cindex @sc{gdb/mi}, result records
30215 In addition to a number of out-of-band notifications, the response to a
30216 @sc{gdb/mi} command includes one of the following result indications:
30217
30218 @table @code
30219 @findex ^done
30220 @item "^done" [ "," @var{results} ]
30221 The synchronous operation was successful, @code{@var{results}} are the return
30222 values.
30223
30224 @item "^running"
30225 @findex ^running
30226 This result record is equivalent to @samp{^done}. Historically, it
30227 was output instead of @samp{^done} if the command has resumed the
30228 target. This behaviour is maintained for backward compatibility, but
30229 all frontends should treat @samp{^done} and @samp{^running}
30230 identically and rely on the @samp{*running} output record to determine
30231 which threads are resumed.
30232
30233 @item "^connected"
30234 @findex ^connected
30235 @value{GDBN} has connected to a remote target.
30236
30237 @item "^error" "," "msg=" @var{c-string} [ "," "code=" @var{c-string} ]
30238 @findex ^error
30239 The operation failed. The @code{msg=@var{c-string}} variable contains
30240 the corresponding error message.
30241
30242 If present, the @code{code=@var{c-string}} variable provides an error
30243 code on which consumers can rely on to detect the corresponding
30244 error condition. At present, only one error code is defined:
30245
30246 @table @samp
30247 @item "undefined-command"
30248 Indicates that the command causing the error does not exist.
30249 @end table
30250
30251 @item "^exit"
30252 @findex ^exit
30253 @value{GDBN} has terminated.
30254
30255 @end table
30256
30257 @node GDB/MI Stream Records
30258 @subsection @sc{gdb/mi} Stream Records
30259
30260 @cindex @sc{gdb/mi}, stream records
30261 @cindex stream records in @sc{gdb/mi}
30262 @value{GDBN} internally maintains a number of output streams: the console, the
30263 target, and the log. The output intended for each of these streams is
30264 funneled through the @sc{gdb/mi} interface using @dfn{stream records}.
30265
30266 Each stream record begins with a unique @dfn{prefix character} which
30267 identifies its stream (@pxref{GDB/MI Output Syntax, , @sc{gdb/mi} Output
30268 Syntax}). In addition to the prefix, each stream record contains a
30269 @code{@var{string-output}}. This is either raw text (with an implicit new
30270 line) or a quoted C string (which does not contain an implicit newline).
30271
30272 @table @code
30273 @item "~" @var{string-output}
30274 The console output stream contains text that should be displayed in the
30275 CLI console window. It contains the textual responses to CLI commands.
30276
30277 @item "@@" @var{string-output}
30278 The target output stream contains any textual output from the running
30279 target. This is only present when GDB's event loop is truly
30280 asynchronous, which is currently only the case for remote targets.
30281
30282 @item "&" @var{string-output}
30283 The log stream contains debugging messages being produced by @value{GDBN}'s
30284 internals.
30285 @end table
30286
30287 @node GDB/MI Async Records
30288 @subsection @sc{gdb/mi} Async Records
30289
30290 @cindex async records in @sc{gdb/mi}
30291 @cindex @sc{gdb/mi}, async records
30292 @dfn{Async} records are used to notify the @sc{gdb/mi} client of
30293 additional changes that have occurred. Those changes can either be a
30294 consequence of @sc{gdb/mi} commands (e.g., a breakpoint modified) or a result of
30295 target activity (e.g., target stopped).
30296
30297 The following is the list of possible async records:
30298
30299 @table @code
30300
30301 @item *running,thread-id="@var{thread}"
30302 The target is now running. The @var{thread} field can be the global
30303 thread ID of the thread that is now running, and it can be
30304 @samp{all} if all threads are running. The frontend should assume
30305 that no interaction with a running thread is possible after this
30306 notification is produced. The frontend should not assume that this
30307 notification is output only once for any command. @value{GDBN} may
30308 emit this notification several times, either for different threads,
30309 because it cannot resume all threads together, or even for a single
30310 thread, if the thread must be stepped though some code before letting
30311 it run freely.
30312
30313 @item *stopped,reason="@var{reason}",thread-id="@var{id}",stopped-threads="@var{stopped}",core="@var{core}"
30314 The target has stopped. The @var{reason} field can have one of the
30315 following values:
30316
30317 @table @code
30318 @item breakpoint-hit
30319 A breakpoint was reached.
30320 @item watchpoint-trigger
30321 A watchpoint was triggered.
30322 @item read-watchpoint-trigger
30323 A read watchpoint was triggered.
30324 @item access-watchpoint-trigger
30325 An access watchpoint was triggered.
30326 @item function-finished
30327 An -exec-finish or similar CLI command was accomplished.
30328 @item location-reached
30329 An -exec-until or similar CLI command was accomplished.
30330 @item watchpoint-scope
30331 A watchpoint has gone out of scope.
30332 @item end-stepping-range
30333 An -exec-next, -exec-next-instruction, -exec-step, -exec-step-instruction or
30334 similar CLI command was accomplished.
30335 @item exited-signalled
30336 The inferior exited because of a signal.
30337 @item exited
30338 The inferior exited.
30339 @item exited-normally
30340 The inferior exited normally.
30341 @item signal-received
30342 A signal was received by the inferior.
30343 @item solib-event
30344 The inferior has stopped due to a library being loaded or unloaded.
30345 This can happen when @code{stop-on-solib-events} (@pxref{Files}) is
30346 set or when a @code{catch load} or @code{catch unload} catchpoint is
30347 in use (@pxref{Set Catchpoints}).
30348 @item fork
30349 The inferior has forked. This is reported when @code{catch fork}
30350 (@pxref{Set Catchpoints}) has been used.
30351 @item vfork
30352 The inferior has vforked. This is reported in when @code{catch vfork}
30353 (@pxref{Set Catchpoints}) has been used.
30354 @item syscall-entry
30355 The inferior entered a system call. This is reported when @code{catch
30356 syscall} (@pxref{Set Catchpoints}) has been used.
30357 @item syscall-return
30358 The inferior returned from a system call. This is reported when
30359 @code{catch syscall} (@pxref{Set Catchpoints}) has been used.
30360 @item exec
30361 The inferior called @code{exec}. This is reported when @code{catch exec}
30362 (@pxref{Set Catchpoints}) has been used.
30363 @end table
30364
30365 The @var{id} field identifies the global thread ID of the thread
30366 that directly caused the stop -- for example by hitting a breakpoint.
30367 Depending on whether all-stop
30368 mode is in effect (@pxref{All-Stop Mode}), @value{GDBN} may either
30369 stop all threads, or only the thread that directly triggered the stop.
30370 If all threads are stopped, the @var{stopped} field will have the
30371 value of @code{"all"}. Otherwise, the value of the @var{stopped}
30372 field will be a list of thread identifiers. Presently, this list will
30373 always include a single thread, but frontend should be prepared to see
30374 several threads in the list. The @var{core} field reports the
30375 processor core on which the stop event has happened. This field may be absent
30376 if such information is not available.
30377
30378 @item =thread-group-added,id="@var{id}"
30379 @itemx =thread-group-removed,id="@var{id}"
30380 A thread group was either added or removed. The @var{id} field
30381 contains the @value{GDBN} identifier of the thread group. When a thread
30382 group is added, it generally might not be associated with a running
30383 process. When a thread group is removed, its id becomes invalid and
30384 cannot be used in any way.
30385
30386 @item =thread-group-started,id="@var{id}",pid="@var{pid}"
30387 A thread group became associated with a running program,
30388 either because the program was just started or the thread group
30389 was attached to a program. The @var{id} field contains the
30390 @value{GDBN} identifier of the thread group. The @var{pid} field
30391 contains process identifier, specific to the operating system.
30392
30393 @item =thread-group-exited,id="@var{id}"[,exit-code="@var{code}"]
30394 A thread group is no longer associated with a running program,
30395 either because the program has exited, or because it was detached
30396 from. The @var{id} field contains the @value{GDBN} identifier of the
30397 thread group. The @var{code} field is the exit code of the inferior; it exists
30398 only when the inferior exited with some code.
30399
30400 @item =thread-created,id="@var{id}",group-id="@var{gid}"
30401 @itemx =thread-exited,id="@var{id}",group-id="@var{gid}"
30402 A thread either was created, or has exited. The @var{id} field
30403 contains the global @value{GDBN} identifier of the thread. The @var{gid}
30404 field identifies the thread group this thread belongs to.
30405
30406 @item =thread-selected,id="@var{id}"[,frame="@var{frame}"]
30407 Informs that the selected thread or frame were changed. This notification
30408 is not emitted as result of the @code{-thread-select} or
30409 @code{-stack-select-frame} commands, but is emitted whenever an MI command
30410 that is not documented to change the selected thread and frame actually
30411 changes them. In particular, invoking, directly or indirectly
30412 (via user-defined command), the CLI @code{thread} or @code{frame} commands,
30413 will generate this notification. Changing the thread or frame from another
30414 user interface (see @ref{Interpreters}) will also generate this notification.
30415
30416 The @var{frame} field is only present if the newly selected thread is
30417 stopped. See @ref{GDB/MI Frame Information} for the format of its value.
30418
30419 We suggest that in response to this notification, front ends
30420 highlight the selected thread and cause subsequent commands to apply to
30421 that thread.
30422
30423 @item =library-loaded,...
30424 Reports that a new library file was loaded by the program. This
30425 notification has 5 fields---@var{id}, @var{target-name},
30426 @var{host-name}, @var{symbols-loaded} and @var{ranges}. The @var{id} field is an
30427 opaque identifier of the library. For remote debugging case,
30428 @var{target-name} and @var{host-name} fields give the name of the
30429 library file on the target, and on the host respectively. For native
30430 debugging, both those fields have the same value. The
30431 @var{symbols-loaded} field is emitted only for backward compatibility
30432 and should not be relied on to convey any useful information. The
30433 @var{thread-group} field, if present, specifies the id of the thread
30434 group in whose context the library was loaded. If the field is
30435 absent, it means the library was loaded in the context of all present
30436 thread groups. The @var{ranges} field specifies the ranges of addresses belonging
30437 to this library.
30438
30439 @item =library-unloaded,...
30440 Reports that a library was unloaded by the program. This notification
30441 has 3 fields---@var{id}, @var{target-name} and @var{host-name} with
30442 the same meaning as for the @code{=library-loaded} notification.
30443 The @var{thread-group} field, if present, specifies the id of the
30444 thread group in whose context the library was unloaded. If the field is
30445 absent, it means the library was unloaded in the context of all present
30446 thread groups.
30447
30448 @item =traceframe-changed,num=@var{tfnum},tracepoint=@var{tpnum}
30449 @itemx =traceframe-changed,end
30450 Reports that the trace frame was changed and its new number is
30451 @var{tfnum}. The number of the tracepoint associated with this trace
30452 frame is @var{tpnum}.
30453
30454 @item =tsv-created,name=@var{name},initial=@var{initial}
30455 Reports that the new trace state variable @var{name} is created with
30456 initial value @var{initial}.
30457
30458 @item =tsv-deleted,name=@var{name}
30459 @itemx =tsv-deleted
30460 Reports that the trace state variable @var{name} is deleted or all
30461 trace state variables are deleted.
30462
30463 @item =tsv-modified,name=@var{name},initial=@var{initial}[,current=@var{current}]
30464 Reports that the trace state variable @var{name} is modified with
30465 the initial value @var{initial}. The current value @var{current} of
30466 trace state variable is optional and is reported if the current
30467 value of trace state variable is known.
30468
30469 @item =breakpoint-created,bkpt=@{...@}
30470 @itemx =breakpoint-modified,bkpt=@{...@}
30471 @itemx =breakpoint-deleted,id=@var{number}
30472 Reports that a breakpoint was created, modified, or deleted,
30473 respectively. Only user-visible breakpoints are reported to the MI
30474 user.
30475
30476 The @var{bkpt} argument is of the same form as returned by the various
30477 breakpoint commands; @xref{GDB/MI Breakpoint Commands}. The
30478 @var{number} is the ordinal number of the breakpoint.
30479
30480 Note that if a breakpoint is emitted in the result record of a
30481 command, then it will not also be emitted in an async record.
30482
30483 @item =record-started,thread-group="@var{id}",method="@var{method}"[,format="@var{format}"]
30484 @itemx =record-stopped,thread-group="@var{id}"
30485 Execution log recording was either started or stopped on an
30486 inferior. The @var{id} is the @value{GDBN} identifier of the thread
30487 group corresponding to the affected inferior.
30488
30489 The @var{method} field indicates the method used to record execution. If the
30490 method in use supports multiple recording formats, @var{format} will be present
30491 and contain the currently used format. @xref{Process Record and Replay},
30492 for existing method and format values.
30493
30494 @item =cmd-param-changed,param=@var{param},value=@var{value}
30495 Reports that a parameter of the command @code{set @var{param}} is
30496 changed to @var{value}. In the multi-word @code{set} command,
30497 the @var{param} is the whole parameter list to @code{set} command.
30498 For example, In command @code{set check type on}, @var{param}
30499 is @code{check type} and @var{value} is @code{on}.
30500
30501 @item =memory-changed,thread-group=@var{id},addr=@var{addr},len=@var{len}[,type="code"]
30502 Reports that bytes from @var{addr} to @var{data} + @var{len} were
30503 written in an inferior. The @var{id} is the identifier of the
30504 thread group corresponding to the affected inferior. The optional
30505 @code{type="code"} part is reported if the memory written to holds
30506 executable code.
30507 @end table
30508
30509 @node GDB/MI Breakpoint Information
30510 @subsection @sc{gdb/mi} Breakpoint Information
30511
30512 When @value{GDBN} reports information about a breakpoint, a
30513 tracepoint, a watchpoint, or a catchpoint, it uses a tuple with the
30514 following fields:
30515
30516 @table @code
30517 @item number
30518 The breakpoint number.
30519
30520 @item type
30521 The type of the breakpoint. For ordinary breakpoints this will be
30522 @samp{breakpoint}, but many values are possible.
30523
30524 @item catch-type
30525 If the type of the breakpoint is @samp{catchpoint}, then this
30526 indicates the exact type of catchpoint.
30527
30528 @item disp
30529 This is the breakpoint disposition---either @samp{del}, meaning that
30530 the breakpoint will be deleted at the next stop, or @samp{keep},
30531 meaning that the breakpoint will not be deleted.
30532
30533 @item enabled
30534 This indicates whether the breakpoint is enabled, in which case the
30535 value is @samp{y}, or disabled, in which case the value is @samp{n}.
30536 Note that this is not the same as the field @code{enable}.
30537
30538 @item addr
30539 The address of the breakpoint. This may be a hexidecimal number,
30540 giving the address; or the string @samp{<PENDING>}, for a pending
30541 breakpoint; or the string @samp{<MULTIPLE>}, for a breakpoint with
30542 multiple locations. This field will not be present if no address can
30543 be determined. For example, a watchpoint does not have an address.
30544
30545 @item addr_flags
30546 Optional field containing any flags related to the address. These flags are
30547 architecture-dependent; see @ref{Architectures} for their meaning for a
30548 particular CPU.
30549
30550 @item func
30551 If known, the function in which the breakpoint appears.
30552 If not known, this field is not present.
30553
30554 @item filename
30555 The name of the source file which contains this function, if known.
30556 If not known, this field is not present.
30557
30558 @item fullname
30559 The full file name of the source file which contains this function, if
30560 known. If not known, this field is not present.
30561
30562 @item line
30563 The line number at which this breakpoint appears, if known.
30564 If not known, this field is not present.
30565
30566 @item at
30567 If the source file is not known, this field may be provided. If
30568 provided, this holds the address of the breakpoint, possibly followed
30569 by a symbol name.
30570
30571 @item pending
30572 If this breakpoint is pending, this field is present and holds the
30573 text used to set the breakpoint, as entered by the user.
30574
30575 @item evaluated-by
30576 Where this breakpoint's condition is evaluated, either @samp{host} or
30577 @samp{target}.
30578
30579 @item thread
30580 If this is a thread-specific breakpoint, then this identifies the
30581 thread in which the breakpoint can trigger.
30582
30583 @item task
30584 If this breakpoint is restricted to a particular Ada task, then this
30585 field will hold the task identifier.
30586
30587 @item cond
30588 If the breakpoint is conditional, this is the condition expression.
30589
30590 @item ignore
30591 The ignore count of the breakpoint.
30592
30593 @item enable
30594 The enable count of the breakpoint.
30595
30596 @item traceframe-usage
30597 FIXME.
30598
30599 @item static-tracepoint-marker-string-id
30600 For a static tracepoint, the name of the static tracepoint marker.
30601
30602 @item mask
30603 For a masked watchpoint, this is the mask.
30604
30605 @item pass
30606 A tracepoint's pass count.
30607
30608 @item original-location
30609 The location of the breakpoint as originally specified by the user.
30610 This field is optional.
30611
30612 @item times
30613 The number of times the breakpoint has been hit.
30614
30615 @item installed
30616 This field is only given for tracepoints. This is either @samp{y},
30617 meaning that the tracepoint is installed, or @samp{n}, meaning that it
30618 is not.
30619
30620 @item what
30621 Some extra data, the exact contents of which are type-dependent.
30622
30623 @item locations
30624 This field is present if the breakpoint has multiple locations. It is also
30625 exceptionally present if the breakpoint is enabled and has a single, disabled
30626 location.
30627
30628 The value is a list of locations. The format of a location is described below.
30629
30630 @end table
30631
30632 A location in a multi-location breakpoint is represented as a tuple with the
30633 following fields:
30634
30635 @table @code
30636
30637 @item number
30638 The location number as a dotted pair, like @samp{1.2}. The first digit is the
30639 number of the parent breakpoint. The second digit is the number of the
30640 location within that breakpoint.
30641
30642 @item enabled
30643 There are three possible values, with the following meanings:
30644 @table @code
30645 @item y
30646 The location is enabled.
30647 @item n
30648 The location is disabled by the user.
30649 @item N
30650 The location is disabled because the breakpoint condition is invalid
30651 at this location.
30652 @end table
30653
30654 @item addr
30655 The address of this location as an hexidecimal number.
30656
30657 @item addr_flags
30658 Optional field containing any flags related to the address. These flags are
30659 architecture-dependent; see @ref{Architectures} for their meaning for a
30660 particular CPU.
30661
30662 @item func
30663 If known, the function in which the location appears.
30664 If not known, this field is not present.
30665
30666 @item file
30667 The name of the source file which contains this location, if known.
30668 If not known, this field is not present.
30669
30670 @item fullname
30671 The full file name of the source file which contains this location, if
30672 known. If not known, this field is not present.
30673
30674 @item line
30675 The line number at which this location appears, if known.
30676 If not known, this field is not present.
30677
30678 @item thread-groups
30679 The thread groups this location is in.
30680
30681 @end table
30682
30683 For example, here is what the output of @code{-break-insert}
30684 (@pxref{GDB/MI Breakpoint Commands}) might be:
30685
30686 @smallexample
30687 -> -break-insert main
30688 <- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30689 enabled="y",addr="0x08048564",func="main",file="myprog.c",
30690 fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30691 times="0"@}
30692 <- (gdb)
30693 @end smallexample
30694
30695 @node GDB/MI Frame Information
30696 @subsection @sc{gdb/mi} Frame Information
30697
30698 Response from many MI commands includes an information about stack
30699 frame. This information is a tuple that may have the following
30700 fields:
30701
30702 @table @code
30703 @item level
30704 The level of the stack frame. The innermost frame has the level of
30705 zero. This field is always present.
30706
30707 @item func
30708 The name of the function corresponding to the frame. This field may
30709 be absent if @value{GDBN} is unable to determine the function name.
30710
30711 @item addr
30712 The code address for the frame. This field is always present.
30713
30714 @item addr_flags
30715 Optional field containing any flags related to the address. These flags are
30716 architecture-dependent; see @ref{Architectures} for their meaning for a
30717 particular CPU.
30718
30719 @item file
30720 The name of the source files that correspond to the frame's code
30721 address. This field may be absent.
30722
30723 @item line
30724 The source line corresponding to the frames' code address. This field
30725 may be absent.
30726
30727 @item from
30728 The name of the binary file (either executable or shared library) the
30729 corresponds to the frame's code address. This field may be absent.
30730
30731 @end table
30732
30733 @node GDB/MI Thread Information
30734 @subsection @sc{gdb/mi} Thread Information
30735
30736 Whenever @value{GDBN} has to report an information about a thread, it
30737 uses a tuple with the following fields. The fields are always present unless
30738 stated otherwise.
30739
30740 @table @code
30741 @item id
30742 The global numeric id assigned to the thread by @value{GDBN}.
30743
30744 @item target-id
30745 The target-specific string identifying the thread.
30746
30747 @item details
30748 Additional information about the thread provided by the target.
30749 It is supposed to be human-readable and not interpreted by the
30750 frontend. This field is optional.
30751
30752 @item name
30753 The name of the thread. If the user specified a name using the
30754 @code{thread name} command, then this name is given. Otherwise, if
30755 @value{GDBN} can extract the thread name from the target, then that
30756 name is given. If @value{GDBN} cannot find the thread name, then this
30757 field is omitted.
30758
30759 @item state
30760 The execution state of the thread, either @samp{stopped} or @samp{running},
30761 depending on whether the thread is presently running.
30762
30763 @item frame
30764 The stack frame currently executing in the thread. This field is only present
30765 if the thread is stopped. Its format is documented in
30766 @ref{GDB/MI Frame Information}.
30767
30768 @item core
30769 The value of this field is an integer number of the processor core the
30770 thread was last seen on. This field is optional.
30771 @end table
30772
30773 @node GDB/MI Ada Exception Information
30774 @subsection @sc{gdb/mi} Ada Exception Information
30775
30776 Whenever a @code{*stopped} record is emitted because the program
30777 stopped after hitting an exception catchpoint (@pxref{Set Catchpoints}),
30778 @value{GDBN} provides the name of the exception that was raised via
30779 the @code{exception-name} field. Also, for exceptions that were raised
30780 with an exception message, @value{GDBN} provides that message via
30781 the @code{exception-message} field.
30782
30783 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30784 @node GDB/MI Simple Examples
30785 @section Simple Examples of @sc{gdb/mi} Interaction
30786 @cindex @sc{gdb/mi}, simple examples
30787
30788 This subsection presents several simple examples of interaction using
30789 the @sc{gdb/mi} interface. In these examples, @samp{->} means that the
30790 following line is passed to @sc{gdb/mi} as input, while @samp{<-} means
30791 the output received from @sc{gdb/mi}.
30792
30793 Note the line breaks shown in the examples are here only for
30794 readability, they don't appear in the real output.
30795
30796 @subheading Setting a Breakpoint
30797
30798 Setting a breakpoint generates synchronous output which contains detailed
30799 information of the breakpoint.
30800
30801 @smallexample
30802 -> -break-insert main
30803 <- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30804 enabled="y",addr="0x08048564",func="main",file="myprog.c",
30805 fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30806 times="0"@}
30807 <- (gdb)
30808 @end smallexample
30809
30810 @subheading Program Execution
30811
30812 Program execution generates asynchronous records and MI gives the
30813 reason that execution stopped.
30814
30815 @smallexample
30816 -> -exec-run
30817 <- ^running
30818 <- (gdb)
30819 <- *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
30820 frame=@{addr="0x08048564",func="main",
30821 args=[@{name="argc",value="1"@},@{name="argv",value="0xbfc4d4d4"@}],
30822 file="myprog.c",fullname="/home/nickrob/myprog.c",line="68",
30823 arch="i386:x86_64"@}
30824 <- (gdb)
30825 -> -exec-continue
30826 <- ^running
30827 <- (gdb)
30828 <- *stopped,reason="exited-normally"
30829 <- (gdb)
30830 @end smallexample
30831
30832 @subheading Quitting @value{GDBN}
30833
30834 Quitting @value{GDBN} just prints the result class @samp{^exit}.
30835
30836 @smallexample
30837 -> (gdb)
30838 <- -gdb-exit
30839 <- ^exit
30840 @end smallexample
30841
30842 Please note that @samp{^exit} is printed immediately, but it might
30843 take some time for @value{GDBN} to actually exit. During that time, @value{GDBN}
30844 performs necessary cleanups, including killing programs being debugged
30845 or disconnecting from debug hardware, so the frontend should wait till
30846 @value{GDBN} exits and should only forcibly kill @value{GDBN} if it
30847 fails to exit in reasonable time.
30848
30849 @subheading A Bad Command
30850
30851 Here's what happens if you pass a non-existent command:
30852
30853 @smallexample
30854 -> -rubbish
30855 <- ^error,msg="Undefined MI command: rubbish"
30856 <- (gdb)
30857 @end smallexample
30858
30859
30860 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30861 @node GDB/MI Command Description Format
30862 @section @sc{gdb/mi} Command Description Format
30863
30864 The remaining sections describe blocks of commands. Each block of
30865 commands is laid out in a fashion similar to this section.
30866
30867 @subheading Motivation
30868
30869 The motivation for this collection of commands.
30870
30871 @subheading Introduction
30872
30873 A brief introduction to this collection of commands as a whole.
30874
30875 @subheading Commands
30876
30877 For each command in the block, the following is described:
30878
30879 @subsubheading Synopsis
30880
30881 @smallexample
30882 -command @var{args}@dots{}
30883 @end smallexample
30884
30885 @subsubheading Result
30886
30887 @subsubheading @value{GDBN} Command
30888
30889 The corresponding @value{GDBN} CLI command(s), if any.
30890
30891 @subsubheading Example
30892
30893 Example(s) formatted for readability. Some of the described commands have
30894 not been implemented yet and these are labeled N.A.@: (not available).
30895
30896
30897 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30898 @node GDB/MI Breakpoint Commands
30899 @section @sc{gdb/mi} Breakpoint Commands
30900
30901 @cindex breakpoint commands for @sc{gdb/mi}
30902 @cindex @sc{gdb/mi}, breakpoint commands
30903 This section documents @sc{gdb/mi} commands for manipulating
30904 breakpoints.
30905
30906 @subheading The @code{-break-after} Command
30907 @findex -break-after
30908
30909 @subsubheading Synopsis
30910
30911 @smallexample
30912 -break-after @var{number} @var{count}
30913 @end smallexample
30914
30915 The breakpoint number @var{number} is not in effect until it has been
30916 hit @var{count} times. To see how this is reflected in the output of
30917 the @samp{-break-list} command, see the description of the
30918 @samp{-break-list} command below.
30919
30920 @subsubheading @value{GDBN} Command
30921
30922 The corresponding @value{GDBN} command is @samp{ignore}.
30923
30924 @subsubheading Example
30925
30926 @smallexample
30927 (gdb)
30928 -break-insert main
30929 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30930 enabled="y",addr="0x000100d0",func="main",file="hello.c",
30931 fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
30932 times="0"@}
30933 (gdb)
30934 -break-after 1 3
30935 ~
30936 ^done
30937 (gdb)
30938 -break-list
30939 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30940 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30941 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30942 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30943 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30944 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30945 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
30946 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
30947 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
30948 line="5",thread-groups=["i1"],times="0",ignore="3"@}]@}
30949 (gdb)
30950 @end smallexample
30951
30952 @ignore
30953 @subheading The @code{-break-catch} Command
30954 @findex -break-catch
30955 @end ignore
30956
30957 @subheading The @code{-break-commands} Command
30958 @findex -break-commands
30959
30960 @subsubheading Synopsis
30961
30962 @smallexample
30963 -break-commands @var{number} [ @var{command1} ... @var{commandN} ]
30964 @end smallexample
30965
30966 Specifies the CLI commands that should be executed when breakpoint
30967 @var{number} is hit. The parameters @var{command1} to @var{commandN}
30968 are the commands. If no command is specified, any previously-set
30969 commands are cleared. @xref{Break Commands}. Typical use of this
30970 functionality is tracing a program, that is, printing of values of
30971 some variables whenever breakpoint is hit and then continuing.
30972
30973 @subsubheading @value{GDBN} Command
30974
30975 The corresponding @value{GDBN} command is @samp{commands}.
30976
30977 @subsubheading Example
30978
30979 @smallexample
30980 (gdb)
30981 -break-insert main
30982 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30983 enabled="y",addr="0x000100d0",func="main",file="hello.c",
30984 fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
30985 times="0"@}
30986 (gdb)
30987 -break-commands 1 "print v" "continue"
30988 ^done
30989 (gdb)
30990 @end smallexample
30991
30992 @subheading The @code{-break-condition} Command
30993 @findex -break-condition
30994
30995 @subsubheading Synopsis
30996
30997 @smallexample
30998 -break-condition [ --force ] @var{number} [ @var{expr} ]
30999 @end smallexample
31000
31001 Breakpoint @var{number} will stop the program only if the condition in
31002 @var{expr} is true. The condition becomes part of the
31003 @samp{-break-list} output (see the description of the @samp{-break-list}
31004 command below). If the @samp{--force} flag is passed, the condition
31005 is forcibly defined even when it is invalid for all locations of
31006 breakpoint @var{number}. If the @var{expr} argument is omitted,
31007 breakpoint @var{number} becomes unconditional.
31008
31009 @subsubheading @value{GDBN} Command
31010
31011 The corresponding @value{GDBN} command is @samp{condition}.
31012
31013 @subsubheading Example
31014
31015 @smallexample
31016 (gdb)
31017 -break-condition 1 1
31018 ^done
31019 (gdb)
31020 -break-list
31021 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31022 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31023 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31024 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31025 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31026 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31027 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31028 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31029 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31030 line="5",cond="1",thread-groups=["i1"],times="0",ignore="3"@}]@}
31031 (gdb)
31032 @end smallexample
31033
31034 @subheading The @code{-break-delete} Command
31035 @findex -break-delete
31036
31037 @subsubheading Synopsis
31038
31039 @smallexample
31040 -break-delete ( @var{breakpoint} )+
31041 @end smallexample
31042
31043 Delete the breakpoint(s) whose number(s) are specified in the argument
31044 list. This is obviously reflected in the breakpoint list.
31045
31046 @subsubheading @value{GDBN} Command
31047
31048 The corresponding @value{GDBN} command is @samp{delete}.
31049
31050 @subsubheading Example
31051
31052 @smallexample
31053 (gdb)
31054 -break-delete 1
31055 ^done
31056 (gdb)
31057 -break-list
31058 ^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
31059 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31060 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31061 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31062 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31063 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31064 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31065 body=[]@}
31066 (gdb)
31067 @end smallexample
31068
31069 @subheading The @code{-break-disable} Command
31070 @findex -break-disable
31071
31072 @subsubheading Synopsis
31073
31074 @smallexample
31075 -break-disable ( @var{breakpoint} )+
31076 @end smallexample
31077
31078 Disable the named @var{breakpoint}(s). The field @samp{enabled} in the
31079 break list is now set to @samp{n} for the named @var{breakpoint}(s).
31080
31081 @subsubheading @value{GDBN} Command
31082
31083 The corresponding @value{GDBN} command is @samp{disable}.
31084
31085 @subsubheading Example
31086
31087 @smallexample
31088 (gdb)
31089 -break-disable 2
31090 ^done
31091 (gdb)
31092 -break-list
31093 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31094 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31095 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31096 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31097 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31098 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31099 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31100 body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="n",
31101 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31102 line="5",thread-groups=["i1"],times="0"@}]@}
31103 (gdb)
31104 @end smallexample
31105
31106 @subheading The @code{-break-enable} Command
31107 @findex -break-enable
31108
31109 @subsubheading Synopsis
31110
31111 @smallexample
31112 -break-enable ( @var{breakpoint} )+
31113 @end smallexample
31114
31115 Enable (previously disabled) @var{breakpoint}(s).
31116
31117 @subsubheading @value{GDBN} Command
31118
31119 The corresponding @value{GDBN} command is @samp{enable}.
31120
31121 @subsubheading Example
31122
31123 @smallexample
31124 (gdb)
31125 -break-enable 2
31126 ^done
31127 (gdb)
31128 -break-list
31129 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31130 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31131 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31132 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31133 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31134 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31135 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31136 body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
31137 addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
31138 line="5",thread-groups=["i1"],times="0"@}]@}
31139 (gdb)
31140 @end smallexample
31141
31142 @subheading The @code{-break-info} Command
31143 @findex -break-info
31144
31145 @subsubheading Synopsis
31146
31147 @smallexample
31148 -break-info @var{breakpoint}
31149 @end smallexample
31150
31151 @c REDUNDANT???
31152 Get information about a single breakpoint.
31153
31154 The result is a table of breakpoints. @xref{GDB/MI Breakpoint
31155 Information}, for details on the format of each breakpoint in the
31156 table.
31157
31158 @subsubheading @value{GDBN} Command
31159
31160 The corresponding @value{GDBN} command is @samp{info break @var{breakpoint}}.
31161
31162 @subsubheading Example
31163 N.A.
31164
31165 @subheading The @code{-break-insert} Command
31166 @findex -break-insert
31167 @anchor{-break-insert}
31168
31169 @subsubheading Synopsis
31170
31171 @smallexample
31172 -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] [ --qualified ]
31173 [ -c @var{condition} ] [ --force-condition ] [ -i @var{ignore-count} ]
31174 [ -p @var{thread-id} ] [ @var{location} ]
31175 @end smallexample
31176
31177 @noindent
31178 If specified, @var{location}, can be one of:
31179
31180 @table @var
31181 @item linespec location
31182 A linespec location. @xref{Linespec Locations}.
31183
31184 @item explicit location
31185 An explicit location. @sc{gdb/mi} explicit locations are
31186 analogous to the CLI's explicit locations using the option names
31187 listed below. @xref{Explicit Locations}.
31188
31189 @table @samp
31190 @item --source @var{filename}
31191 The source file name of the location. This option requires the use
31192 of either @samp{--function} or @samp{--line}.
31193
31194 @item --function @var{function}
31195 The name of a function or method.
31196
31197 @item --label @var{label}
31198 The name of a label.
31199
31200 @item --line @var{lineoffset}
31201 An absolute or relative line offset from the start of the location.
31202 @end table
31203
31204 @item address location
31205 An address location, *@var{address}. @xref{Address Locations}.
31206 @end table
31207
31208 @noindent
31209 The possible optional parameters of this command are:
31210
31211 @table @samp
31212 @item -t
31213 Insert a temporary breakpoint.
31214 @item -h
31215 Insert a hardware breakpoint.
31216 @item -f
31217 If @var{location} cannot be parsed (for example if it
31218 refers to unknown files or functions), create a pending
31219 breakpoint. Without this flag, @value{GDBN} will report
31220 an error, and won't create a breakpoint, if @var{location}
31221 cannot be parsed.
31222 @item -d
31223 Create a disabled breakpoint.
31224 @item -a
31225 Create a tracepoint. @xref{Tracepoints}. When this parameter
31226 is used together with @samp{-h}, a fast tracepoint is created.
31227 @item -c @var{condition}
31228 Make the breakpoint conditional on @var{condition}.
31229 @item --force-condition
31230 Forcibly define the breakpoint even if the condition is invalid at
31231 all of the breakpoint locations.
31232 @item -i @var{ignore-count}
31233 Initialize the @var{ignore-count}.
31234 @item -p @var{thread-id}
31235 Restrict the breakpoint to the thread with the specified global
31236 @var{thread-id}.
31237 @item --qualified
31238 This option makes @value{GDBN} interpret a function name specified as
31239 a complete fully-qualified name.
31240 @end table
31241
31242 @subsubheading Result
31243
31244 @xref{GDB/MI Breakpoint Information}, for details on the format of the
31245 resulting breakpoint.
31246
31247 Note: this format is open to change.
31248 @c An out-of-band breakpoint instead of part of the result?
31249
31250 @subsubheading @value{GDBN} Command
31251
31252 The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak},
31253 @samp{hbreak}, and @samp{thbreak}. @c and @samp{rbreak}.
31254
31255 @subsubheading Example
31256
31257 @smallexample
31258 (gdb)
31259 -break-insert main
31260 ^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",
31261 fullname="/home/foo/recursive2.c,line="4",thread-groups=["i1"],
31262 times="0"@}
31263 (gdb)
31264 -break-insert -t foo
31265 ^done,bkpt=@{number="2",addr="0x00010774",file="recursive2.c",
31266 fullname="/home/foo/recursive2.c,line="11",thread-groups=["i1"],
31267 times="0"@}
31268 (gdb)
31269 -break-list
31270 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31271 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31272 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31273 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31274 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31275 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31276 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31277 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31278 addr="0x0001072c", func="main",file="recursive2.c",
31279 fullname="/home/foo/recursive2.c,"line="4",thread-groups=["i1"],
31280 times="0"@},
31281 bkpt=@{number="2",type="breakpoint",disp="del",enabled="y",
31282 addr="0x00010774",func="foo",file="recursive2.c",
31283 fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
31284 times="0"@}]@}
31285 (gdb)
31286 @c -break-insert -r foo.*
31287 @c ~int foo(int, int);
31288 @c ^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c,
31289 @c "fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
31290 @c times="0"@}
31291 @c (gdb)
31292 @end smallexample
31293
31294 @subheading The @code{-dprintf-insert} Command
31295 @findex -dprintf-insert
31296
31297 @subsubheading Synopsis
31298
31299 @smallexample
31300 -dprintf-insert [ -t ] [ -f ] [ -d ] [ --qualified ]
31301 [ -c @var{condition} ] [--force-condition] [ -i @var{ignore-count} ]
31302 [ -p @var{thread-id} ] [ @var{location} ] [ @var{format} ]
31303 [ @var{argument} ]
31304 @end smallexample
31305
31306 @noindent
31307 If supplied, @var{location} and @code{--qualified} may be specified
31308 the same way as for the @code{-break-insert} command.
31309 @xref{-break-insert}.
31310
31311 The possible optional parameters of this command are:
31312
31313 @table @samp
31314 @item -t
31315 Insert a temporary breakpoint.
31316 @item -f
31317 If @var{location} cannot be parsed (for example, if it
31318 refers to unknown files or functions), create a pending
31319 breakpoint. Without this flag, @value{GDBN} will report
31320 an error, and won't create a breakpoint, if @var{location}
31321 cannot be parsed.
31322 @item -d
31323 Create a disabled breakpoint.
31324 @item -c @var{condition}
31325 Make the breakpoint conditional on @var{condition}.
31326 @item --force-condition
31327 Forcibly define the breakpoint even if the condition is invalid at
31328 all of the breakpoint locations.
31329 @item -i @var{ignore-count}
31330 Set the ignore count of the breakpoint (@pxref{Conditions, ignore count})
31331 to @var{ignore-count}.
31332 @item -p @var{thread-id}
31333 Restrict the breakpoint to the thread with the specified global
31334 @var{thread-id}.
31335 @end table
31336
31337 @subsubheading Result
31338
31339 @xref{GDB/MI Breakpoint Information}, for details on the format of the
31340 resulting breakpoint.
31341
31342 @c An out-of-band breakpoint instead of part of the result?
31343
31344 @subsubheading @value{GDBN} Command
31345
31346 The corresponding @value{GDBN} command is @samp{dprintf}.
31347
31348 @subsubheading Example
31349
31350 @smallexample
31351 (gdb)
31352 4-dprintf-insert foo "At foo entry\n"
31353 4^done,bkpt=@{number="1",type="dprintf",disp="keep",enabled="y",
31354 addr="0x000000000040061b",func="foo",file="mi-dprintf.c",
31355 fullname="mi-dprintf.c",line="25",thread-groups=["i1"],
31356 times="0",script=@{"printf \"At foo entry\\n\"","continue"@},
31357 original-location="foo"@}
31358 (gdb)
31359 5-dprintf-insert 26 "arg=%d, g=%d\n" arg g
31360 5^done,bkpt=@{number="2",type="dprintf",disp="keep",enabled="y",
31361 addr="0x000000000040062a",func="foo",file="mi-dprintf.c",
31362 fullname="mi-dprintf.c",line="26",thread-groups=["i1"],
31363 times="0",script=@{"printf \"arg=%d, g=%d\\n\", arg, g","continue"@},
31364 original-location="mi-dprintf.c:26"@}
31365 (gdb)
31366 @end smallexample
31367
31368 @subheading The @code{-break-list} Command
31369 @findex -break-list
31370
31371 @subsubheading Synopsis
31372
31373 @smallexample
31374 -break-list
31375 @end smallexample
31376
31377 Displays the list of inserted breakpoints, showing the following fields:
31378
31379 @table @samp
31380 @item Number
31381 number of the breakpoint
31382 @item Type
31383 type of the breakpoint: @samp{breakpoint} or @samp{watchpoint}
31384 @item Disposition
31385 should the breakpoint be deleted or disabled when it is hit: @samp{keep}
31386 or @samp{nokeep}
31387 @item Enabled
31388 is the breakpoint enabled or no: @samp{y} or @samp{n}
31389 @item Address
31390 memory location at which the breakpoint is set
31391 @item What
31392 logical location of the breakpoint, expressed by function name, file
31393 name, line number
31394 @item Thread-groups
31395 list of thread groups to which this breakpoint applies
31396 @item Times
31397 number of times the breakpoint has been hit
31398 @end table
31399
31400 If there are no breakpoints or watchpoints, the @code{BreakpointTable}
31401 @code{body} field is an empty list.
31402
31403 @subsubheading @value{GDBN} Command
31404
31405 The corresponding @value{GDBN} command is @samp{info break}.
31406
31407 @subsubheading Example
31408
31409 @smallexample
31410 (gdb)
31411 -break-list
31412 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31413 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31414 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31415 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31416 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31417 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31418 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31419 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31420 addr="0x000100d0",func="main",file="hello.c",line="5",thread-groups=["i1"],
31421 times="0"@},
31422 bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
31423 addr="0x00010114",func="foo",file="hello.c",fullname="/home/foo/hello.c",
31424 line="13",thread-groups=["i1"],times="0"@}]@}
31425 (gdb)
31426 @end smallexample
31427
31428 Here's an example of the result when there are no breakpoints:
31429
31430 @smallexample
31431 (gdb)
31432 -break-list
31433 ^done,BreakpointTable=@{nr_rows="0",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=[]@}
31441 (gdb)
31442 @end smallexample
31443
31444 @subheading The @code{-break-passcount} Command
31445 @findex -break-passcount
31446
31447 @subsubheading Synopsis
31448
31449 @smallexample
31450 -break-passcount @var{tracepoint-number} @var{passcount}
31451 @end smallexample
31452
31453 Set the passcount for tracepoint @var{tracepoint-number} to
31454 @var{passcount}. If the breakpoint referred to by @var{tracepoint-number}
31455 is not a tracepoint, error is emitted. This corresponds to CLI
31456 command @samp{passcount}.
31457
31458 @subheading The @code{-break-watch} Command
31459 @findex -break-watch
31460
31461 @subsubheading Synopsis
31462
31463 @smallexample
31464 -break-watch [ -a | -r ]
31465 @end smallexample
31466
31467 Create a watchpoint. With the @samp{-a} option it will create an
31468 @dfn{access} watchpoint, i.e., a watchpoint that triggers either on a
31469 read from or on a write to the memory location. With the @samp{-r}
31470 option, the watchpoint created is a @dfn{read} watchpoint, i.e., it will
31471 trigger only when the memory location is accessed for reading. Without
31472 either of the options, the watchpoint created is a regular watchpoint,
31473 i.e., it will trigger when the memory location is accessed for writing.
31474 @xref{Set Watchpoints, , Setting Watchpoints}.
31475
31476 Note that @samp{-break-list} will report a single list of watchpoints and
31477 breakpoints inserted.
31478
31479 @subsubheading @value{GDBN} Command
31480
31481 The corresponding @value{GDBN} commands are @samp{watch}, @samp{awatch}, and
31482 @samp{rwatch}.
31483
31484 @subsubheading Example
31485
31486 Setting a watchpoint on a variable in the @code{main} function:
31487
31488 @smallexample
31489 (gdb)
31490 -break-watch x
31491 ^done,wpt=@{number="2",exp="x"@}
31492 (gdb)
31493 -exec-continue
31494 ^running
31495 (gdb)
31496 *stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="x"@},
31497 value=@{old="-268439212",new="55"@},
31498 frame=@{func="main",args=[],file="recursive2.c",
31499 fullname="/home/foo/bar/recursive2.c",line="5",arch="i386:x86_64"@}
31500 (gdb)
31501 @end smallexample
31502
31503 Setting a watchpoint on a variable local to a function. @value{GDBN} will stop
31504 the program execution twice: first for the variable changing value, then
31505 for the watchpoint going out of scope.
31506
31507 @smallexample
31508 (gdb)
31509 -break-watch C
31510 ^done,wpt=@{number="5",exp="C"@}
31511 (gdb)
31512 -exec-continue
31513 ^running
31514 (gdb)
31515 *stopped,reason="watchpoint-trigger",
31516 wpt=@{number="5",exp="C"@},value=@{old="-276895068",new="3"@},
31517 frame=@{func="callee4",args=[],
31518 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31519 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31520 arch="i386:x86_64"@}
31521 (gdb)
31522 -exec-continue
31523 ^running
31524 (gdb)
31525 *stopped,reason="watchpoint-scope",wpnum="5",
31526 frame=@{func="callee3",args=[@{name="strarg",
31527 value="0x11940 \"A string argument.\""@}],
31528 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31529 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31530 arch="i386:x86_64"@}
31531 (gdb)
31532 @end smallexample
31533
31534 Listing breakpoints and watchpoints, at different points in the program
31535 execution. Note that once the watchpoint goes out of scope, it is
31536 deleted.
31537
31538 @smallexample
31539 (gdb)
31540 -break-watch C
31541 ^done,wpt=@{number="2",exp="C"@}
31542 (gdb)
31543 -break-list
31544 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31545 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31546 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31547 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31548 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31549 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31550 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31551 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31552 addr="0x00010734",func="callee4",
31553 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31554 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c"line="8",thread-groups=["i1"],
31555 times="1"@},
31556 bkpt=@{number="2",type="watchpoint",disp="keep",
31557 enabled="y",addr="",what="C",thread-groups=["i1"],times="0"@}]@}
31558 (gdb)
31559 -exec-continue
31560 ^running
31561 (gdb)
31562 *stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="C"@},
31563 value=@{old="-276895068",new="3"@},
31564 frame=@{func="callee4",args=[],
31565 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31566 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31567 arch="i386:x86_64"@}
31568 (gdb)
31569 -break-list
31570 ^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31571 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31572 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31573 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31574 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31575 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31576 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31577 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31578 addr="0x00010734",func="callee4",
31579 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31580 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",thread-groups=["i1"],
31581 times="1"@},
31582 bkpt=@{number="2",type="watchpoint",disp="keep",
31583 enabled="y",addr="",what="C",thread-groups=["i1"],times="-5"@}]@}
31584 (gdb)
31585 -exec-continue
31586 ^running
31587 ^done,reason="watchpoint-scope",wpnum="2",
31588 frame=@{func="callee3",args=[@{name="strarg",
31589 value="0x11940 \"A string argument.\""@}],
31590 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31591 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31592 arch="i386:x86_64"@}
31593 (gdb)
31594 -break-list
31595 ^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31596 hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31597 @{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31598 @{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31599 @{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31600 @{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31601 @{width="40",alignment="2",col_name="what",colhdr="What"@}],
31602 body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31603 addr="0x00010734",func="callee4",
31604 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31605 fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
31606 thread-groups=["i1"],times="1"@}]@}
31607 (gdb)
31608 @end smallexample
31609
31610
31611 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31612 @node GDB/MI Catchpoint Commands
31613 @section @sc{gdb/mi} Catchpoint Commands
31614
31615 This section documents @sc{gdb/mi} commands for manipulating
31616 catchpoints.
31617
31618 @menu
31619 * Shared Library GDB/MI Catchpoint Commands::
31620 * Ada Exception GDB/MI Catchpoint Commands::
31621 * C++ Exception GDB/MI Catchpoint Commands::
31622 @end menu
31623
31624 @node Shared Library GDB/MI Catchpoint Commands
31625 @subsection Shared Library @sc{gdb/mi} Catchpoints
31626
31627 @subheading The @code{-catch-load} Command
31628 @findex -catch-load
31629
31630 @subsubheading Synopsis
31631
31632 @smallexample
31633 -catch-load [ -t ] [ -d ] @var{regexp}
31634 @end smallexample
31635
31636 Add a catchpoint for library load events. If the @samp{-t} option is used,
31637 the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31638 Breakpoints}). If the @samp{-d} option is used, the catchpoint is created
31639 in a disabled state. The @samp{regexp} argument is a regular
31640 expression used to match the name of the loaded library.
31641
31642
31643 @subsubheading @value{GDBN} Command
31644
31645 The corresponding @value{GDBN} command is @samp{catch load}.
31646
31647 @subsubheading Example
31648
31649 @smallexample
31650 -catch-load -t foo.so
31651 ^done,bkpt=@{number="1",type="catchpoint",disp="del",enabled="y",
31652 what="load of library matching foo.so",catch-type="load",times="0"@}
31653 (gdb)
31654 @end smallexample
31655
31656
31657 @subheading The @code{-catch-unload} Command
31658 @findex -catch-unload
31659
31660 @subsubheading Synopsis
31661
31662 @smallexample
31663 -catch-unload [ -t ] [ -d ] @var{regexp}
31664 @end smallexample
31665
31666 Add a catchpoint for library unload events. If the @samp{-t} option is
31667 used, the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31668 Breakpoints}). If the @samp{-d} option is used, the catchpoint is
31669 created in a disabled state. The @samp{regexp} argument is a regular
31670 expression used to match the name of the unloaded library.
31671
31672 @subsubheading @value{GDBN} Command
31673
31674 The corresponding @value{GDBN} command is @samp{catch unload}.
31675
31676 @subsubheading Example
31677
31678 @smallexample
31679 -catch-unload -d bar.so
31680 ^done,bkpt=@{number="2",type="catchpoint",disp="keep",enabled="n",
31681 what="load of library matching bar.so",catch-type="unload",times="0"@}
31682 (gdb)
31683 @end smallexample
31684
31685 @node Ada Exception GDB/MI Catchpoint Commands
31686 @subsection Ada Exception @sc{gdb/mi} Catchpoints
31687
31688 The following @sc{gdb/mi} commands can be used to create catchpoints
31689 that stop the execution when Ada exceptions are being raised.
31690
31691 @subheading The @code{-catch-assert} Command
31692 @findex -catch-assert
31693
31694 @subsubheading Synopsis
31695
31696 @smallexample
31697 -catch-assert [ -c @var{condition}] [ -d ] [ -t ]
31698 @end smallexample
31699
31700 Add a catchpoint for failed Ada assertions.
31701
31702 The possible optional parameters for this command are:
31703
31704 @table @samp
31705 @item -c @var{condition}
31706 Make the catchpoint conditional on @var{condition}.
31707 @item -d
31708 Create a disabled catchpoint.
31709 @item -t
31710 Create a temporary catchpoint.
31711 @end table
31712
31713 @subsubheading @value{GDBN} Command
31714
31715 The corresponding @value{GDBN} command is @samp{catch assert}.
31716
31717 @subsubheading Example
31718
31719 @smallexample
31720 -catch-assert
31721 ^done,bkptno="5",bkpt=@{number="5",type="breakpoint",disp="keep",
31722 enabled="y",addr="0x0000000000404888",what="failed Ada assertions",
31723 thread-groups=["i1"],times="0",
31724 original-location="__gnat_debug_raise_assert_failure"@}
31725 (gdb)
31726 @end smallexample
31727
31728 @subheading The @code{-catch-exception} Command
31729 @findex -catch-exception
31730
31731 @subsubheading Synopsis
31732
31733 @smallexample
31734 -catch-exception [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31735 [ -t ] [ -u ]
31736 @end smallexample
31737
31738 Add a catchpoint stopping when Ada exceptions are raised.
31739 By default, the command stops the program when any Ada exception
31740 gets raised. But it is also possible, by using some of the
31741 optional parameters described below, to create more selective
31742 catchpoints.
31743
31744 The possible optional parameters for this command are:
31745
31746 @table @samp
31747 @item -c @var{condition}
31748 Make the catchpoint conditional on @var{condition}.
31749 @item -d
31750 Create a disabled catchpoint.
31751 @item -e @var{exception-name}
31752 Only stop when @var{exception-name} is raised. This option cannot
31753 be used combined with @samp{-u}.
31754 @item -t
31755 Create a temporary catchpoint.
31756 @item -u
31757 Stop only when an unhandled exception gets raised. This option
31758 cannot be used combined with @samp{-e}.
31759 @end table
31760
31761 @subsubheading @value{GDBN} Command
31762
31763 The corresponding @value{GDBN} commands are @samp{catch exception}
31764 and @samp{catch exception unhandled}.
31765
31766 @subsubheading Example
31767
31768 @smallexample
31769 -catch-exception -e Program_Error
31770 ^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31771 enabled="y",addr="0x0000000000404874",
31772 what="`Program_Error' Ada exception", thread-groups=["i1"],
31773 times="0",original-location="__gnat_debug_raise_exception"@}
31774 (gdb)
31775 @end smallexample
31776
31777 @subheading The @code{-catch-handlers} Command
31778 @findex -catch-handlers
31779
31780 @subsubheading Synopsis
31781
31782 @smallexample
31783 -catch-handlers [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31784 [ -t ]
31785 @end smallexample
31786
31787 Add a catchpoint stopping when Ada exceptions are handled.
31788 By default, the command stops the program when any Ada exception
31789 gets handled. But it is also possible, by using some of the
31790 optional parameters described below, to create more selective
31791 catchpoints.
31792
31793 The possible optional parameters for this command are:
31794
31795 @table @samp
31796 @item -c @var{condition}
31797 Make the catchpoint conditional on @var{condition}.
31798 @item -d
31799 Create a disabled catchpoint.
31800 @item -e @var{exception-name}
31801 Only stop when @var{exception-name} is handled.
31802 @item -t
31803 Create a temporary catchpoint.
31804 @end table
31805
31806 @subsubheading @value{GDBN} Command
31807
31808 The corresponding @value{GDBN} command is @samp{catch handlers}.
31809
31810 @subsubheading Example
31811
31812 @smallexample
31813 -catch-handlers -e Constraint_Error
31814 ^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31815 enabled="y",addr="0x0000000000402f68",
31816 what="`Constraint_Error' Ada exception handlers",thread-groups=["i1"],
31817 times="0",original-location="__gnat_begin_handler"@}
31818 (gdb)
31819 @end smallexample
31820
31821 @node C++ Exception GDB/MI Catchpoint Commands
31822 @subsection C@t{++} Exception @sc{gdb/mi} Catchpoints
31823
31824 The following @sc{gdb/mi} commands can be used to create catchpoints
31825 that stop the execution when C@t{++} exceptions are being throw, rethrown,
31826 or caught.
31827
31828 @subheading The @code{-catch-throw} Command
31829 @findex -catch-throw
31830
31831 @subsubheading Synopsis
31832
31833 @smallexample
31834 -catch-throw [ -t ] [ -r @var{regexp}]
31835 @end smallexample
31836
31837 Stop when the debuggee throws a C@t{++} exception. If @var{regexp} is
31838 given, then only exceptions whose type matches the regular expression
31839 will be caught.
31840
31841 If @samp{-t} is given, then the catchpoint is enabled only for one
31842 stop, the catchpoint is automatically deleted after stopping once for
31843 the event.
31844
31845 @subsubheading @value{GDBN} Command
31846
31847 The corresponding @value{GDBN} commands are @samp{catch throw}
31848 and @samp{tcatch throw} (@pxref{Set Catchpoints}).
31849
31850 @subsubheading Example
31851
31852 @smallexample
31853 -catch-throw -r exception_type
31854 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31855 what="exception throw",catch-type="throw",
31856 thread-groups=["i1"],
31857 regexp="exception_type",times="0"@}
31858 (gdb)
31859 -exec-run
31860 ^running
31861 (gdb)
31862 ~"\n"
31863 ~"Catchpoint 1 (exception thrown), 0x00007ffff7ae00ed
31864 in __cxa_throw () from /lib64/libstdc++.so.6\n"
31865 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31866 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_throw",
31867 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31868 thread-id="1",stopped-threads="all",core="6"
31869 (gdb)
31870 @end smallexample
31871
31872 @subheading The @code{-catch-rethrow} Command
31873 @findex -catch-rethrow
31874
31875 @subsubheading Synopsis
31876
31877 @smallexample
31878 -catch-rethrow [ -t ] [ -r @var{regexp}]
31879 @end smallexample
31880
31881 Stop when a C@t{++} exception is re-thrown. If @var{regexp} is given,
31882 then only exceptions whose type matches the regular expression will be
31883 caught.
31884
31885 If @samp{-t} is given, then the catchpoint is enabled only for one
31886 stop, the catchpoint is automatically deleted after the first event is
31887 caught.
31888
31889 @subsubheading @value{GDBN} Command
31890
31891 The corresponding @value{GDBN} commands are @samp{catch rethrow}
31892 and @samp{tcatch rethrow} (@pxref{Set Catchpoints}).
31893
31894 @subsubheading Example
31895
31896 @smallexample
31897 -catch-rethrow -r exception_type
31898 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31899 what="exception rethrow",catch-type="rethrow",
31900 thread-groups=["i1"],
31901 regexp="exception_type",times="0"@}
31902 (gdb)
31903 -exec-run
31904 ^running
31905 (gdb)
31906 ~"\n"
31907 ~"Catchpoint 1 (exception rethrown), 0x00007ffff7ae00ed
31908 in __cxa_rethrow () from /lib64/libstdc++.so.6\n"
31909 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31910 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_rethrow",
31911 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31912 thread-id="1",stopped-threads="all",core="6"
31913 (gdb)
31914 @end smallexample
31915
31916 @subheading The @code{-catch-catch} Command
31917 @findex -catch-catch
31918
31919 @subsubheading Synopsis
31920
31921 @smallexample
31922 -catch-catch [ -t ] [ -r @var{regexp}]
31923 @end smallexample
31924
31925 Stop when the debuggee catches a C@t{++} exception. If @var{regexp}
31926 is given, then only exceptions whose type matches the regular
31927 expression will be caught.
31928
31929 If @samp{-t} is given, then the catchpoint is enabled only for one
31930 stop, the catchpoint is automatically deleted after the first event is
31931 caught.
31932
31933 @subsubheading @value{GDBN} Command
31934
31935 The corresponding @value{GDBN} commands are @samp{catch catch}
31936 and @samp{tcatch catch} (@pxref{Set Catchpoints}).
31937
31938 @subsubheading Example
31939
31940 @smallexample
31941 -catch-catch -r exception_type
31942 ^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31943 what="exception catch",catch-type="catch",
31944 thread-groups=["i1"],
31945 regexp="exception_type",times="0"@}
31946 (gdb)
31947 -exec-run
31948 ^running
31949 (gdb)
31950 ~"\n"
31951 ~"Catchpoint 1 (exception caught), 0x00007ffff7ae00ed
31952 in __cxa_begin_catch () from /lib64/libstdc++.so.6\n"
31953 *stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31954 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_begin_catch",
31955 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31956 thread-id="1",stopped-threads="all",core="6"
31957 (gdb)
31958 @end smallexample
31959
31960 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31961 @node GDB/MI Program Context
31962 @section @sc{gdb/mi} Program Context
31963
31964 @subheading The @code{-exec-arguments} Command
31965 @findex -exec-arguments
31966
31967
31968 @subsubheading Synopsis
31969
31970 @smallexample
31971 -exec-arguments @var{args}
31972 @end smallexample
31973
31974 Set the inferior program arguments, to be used in the next
31975 @samp{-exec-run}.
31976
31977 @subsubheading @value{GDBN} Command
31978
31979 The corresponding @value{GDBN} command is @samp{set args}.
31980
31981 @subsubheading Example
31982
31983 @smallexample
31984 (gdb)
31985 -exec-arguments -v word
31986 ^done
31987 (gdb)
31988 @end smallexample
31989
31990
31991 @ignore
31992 @subheading The @code{-exec-show-arguments} Command
31993 @findex -exec-show-arguments
31994
31995 @subsubheading Synopsis
31996
31997 @smallexample
31998 -exec-show-arguments
31999 @end smallexample
32000
32001 Print the arguments of the program.
32002
32003 @subsubheading @value{GDBN} Command
32004
32005 The corresponding @value{GDBN} command is @samp{show args}.
32006
32007 @subsubheading Example
32008 N.A.
32009 @end ignore
32010
32011
32012 @subheading The @code{-environment-cd} Command
32013 @findex -environment-cd
32014
32015 @subsubheading Synopsis
32016
32017 @smallexample
32018 -environment-cd @var{pathdir}
32019 @end smallexample
32020
32021 Set @value{GDBN}'s working directory.
32022
32023 @subsubheading @value{GDBN} Command
32024
32025 The corresponding @value{GDBN} command is @samp{cd}.
32026
32027 @subsubheading Example
32028
32029 @smallexample
32030 (gdb)
32031 -environment-cd /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
32032 ^done
32033 (gdb)
32034 @end smallexample
32035
32036
32037 @subheading The @code{-environment-directory} Command
32038 @findex -environment-directory
32039
32040 @subsubheading Synopsis
32041
32042 @smallexample
32043 -environment-directory [ -r ] [ @var{pathdir} ]+
32044 @end smallexample
32045
32046 Add directories @var{pathdir} to beginning of search path for source files.
32047 If the @samp{-r} option is used, the search path is reset to the default
32048 search path. If directories @var{pathdir} are supplied in addition to the
32049 @samp{-r} option, the search path is first reset and then addition
32050 occurs as normal.
32051 Multiple directories may be specified, separated by blanks. Specifying
32052 multiple directories in a single command
32053 results in the directories added to the beginning of the
32054 search path in the same order they were presented in the command.
32055 If blanks are needed as
32056 part of a directory name, double-quotes should be used around
32057 the name. In the command output, the path will show up separated
32058 by the system directory-separator character. The directory-separator
32059 character must not be used
32060 in any directory name.
32061 If no directories are specified, the current search path is displayed.
32062
32063 @subsubheading @value{GDBN} Command
32064
32065 The corresponding @value{GDBN} command is @samp{dir}.
32066
32067 @subsubheading Example
32068
32069 @smallexample
32070 (gdb)
32071 -environment-directory /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
32072 ^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
32073 (gdb)
32074 -environment-directory ""
32075 ^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
32076 (gdb)
32077 -environment-directory -r /home/jjohnstn/src/gdb /usr/src
32078 ^done,source-path="/home/jjohnstn/src/gdb:/usr/src:$cdir:$cwd"
32079 (gdb)
32080 -environment-directory -r
32081 ^done,source-path="$cdir:$cwd"
32082 (gdb)
32083 @end smallexample
32084
32085
32086 @subheading The @code{-environment-path} Command
32087 @findex -environment-path
32088
32089 @subsubheading Synopsis
32090
32091 @smallexample
32092 -environment-path [ -r ] [ @var{pathdir} ]+
32093 @end smallexample
32094
32095 Add directories @var{pathdir} to beginning of search path for object files.
32096 If the @samp{-r} option is used, the search path is reset to the original
32097 search path that existed at gdb start-up. If directories @var{pathdir} are
32098 supplied in addition to the
32099 @samp{-r} option, the search path is first reset and then addition
32100 occurs as normal.
32101 Multiple directories may be specified, separated by blanks. Specifying
32102 multiple directories in a single command
32103 results in the directories added to the beginning of the
32104 search path in the same order they were presented in the command.
32105 If blanks are needed as
32106 part of a directory name, double-quotes should be used around
32107 the name. In the command output, the path will show up separated
32108 by the system directory-separator character. The directory-separator
32109 character must not be used
32110 in any directory name.
32111 If no directories are specified, the current path is displayed.
32112
32113
32114 @subsubheading @value{GDBN} Command
32115
32116 The corresponding @value{GDBN} command is @samp{path}.
32117
32118 @subsubheading Example
32119
32120 @smallexample
32121 (gdb)
32122 -environment-path
32123 ^done,path="/usr/bin"
32124 (gdb)
32125 -environment-path /kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb /bin
32126 ^done,path="/kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb:/bin:/usr/bin"
32127 (gdb)
32128 -environment-path -r /usr/local/bin
32129 ^done,path="/usr/local/bin:/usr/bin"
32130 (gdb)
32131 @end smallexample
32132
32133
32134 @subheading The @code{-environment-pwd} Command
32135 @findex -environment-pwd
32136
32137 @subsubheading Synopsis
32138
32139 @smallexample
32140 -environment-pwd
32141 @end smallexample
32142
32143 Show the current working directory.
32144
32145 @subsubheading @value{GDBN} Command
32146
32147 The corresponding @value{GDBN} command is @samp{pwd}.
32148
32149 @subsubheading Example
32150
32151 @smallexample
32152 (gdb)
32153 -environment-pwd
32154 ^done,cwd="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb"
32155 (gdb)
32156 @end smallexample
32157
32158 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32159 @node GDB/MI Thread Commands
32160 @section @sc{gdb/mi} Thread Commands
32161
32162
32163 @subheading The @code{-thread-info} Command
32164 @findex -thread-info
32165
32166 @subsubheading Synopsis
32167
32168 @smallexample
32169 -thread-info [ @var{thread-id} ]
32170 @end smallexample
32171
32172 Reports information about either a specific thread, if the
32173 @var{thread-id} parameter is present, or about all threads.
32174 @var{thread-id} is the thread's global thread ID. When printing
32175 information about all threads, also reports the global ID of the
32176 current thread.
32177
32178 @subsubheading @value{GDBN} Command
32179
32180 The @samp{info thread} command prints the same information
32181 about all threads.
32182
32183 @subsubheading Result
32184
32185 The result contains the following attributes:
32186
32187 @table @samp
32188 @item threads
32189 A list of threads. The format of the elements of the list is described in
32190 @ref{GDB/MI Thread Information}.
32191
32192 @item current-thread-id
32193 The global id of the currently selected thread. This field is omitted if there
32194 is no selected thread (for example, when the selected inferior is not running,
32195 and therefore has no threads) or if a @var{thread-id} argument was passed to
32196 the command.
32197
32198 @end table
32199
32200 @subsubheading Example
32201
32202 @smallexample
32203 -thread-info
32204 ^done,threads=[
32205 @{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
32206 frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",
32207 args=[]@},state="running"@},
32208 @{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
32209 frame=@{level="0",addr="0x0804891f",func="foo",
32210 args=[@{name="i",value="10"@}],
32211 file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},
32212 state="running"@}],
32213 current-thread-id="1"
32214 (gdb)
32215 @end smallexample
32216
32217 @subheading The @code{-thread-list-ids} Command
32218 @findex -thread-list-ids
32219
32220 @subsubheading Synopsis
32221
32222 @smallexample
32223 -thread-list-ids
32224 @end smallexample
32225
32226 Produces a list of the currently known global @value{GDBN} thread ids.
32227 At the end of the list it also prints the total number of such
32228 threads.
32229
32230 This command is retained for historical reasons, the
32231 @code{-thread-info} command should be used instead.
32232
32233 @subsubheading @value{GDBN} Command
32234
32235 Part of @samp{info threads} supplies the same information.
32236
32237 @subsubheading Example
32238
32239 @smallexample
32240 (gdb)
32241 -thread-list-ids
32242 ^done,thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
32243 current-thread-id="1",number-of-threads="3"
32244 (gdb)
32245 @end smallexample
32246
32247
32248 @subheading The @code{-thread-select} Command
32249 @findex -thread-select
32250
32251 @subsubheading Synopsis
32252
32253 @smallexample
32254 -thread-select @var{thread-id}
32255 @end smallexample
32256
32257 Make thread with global thread number @var{thread-id} the current
32258 thread. It prints the number of the new current thread, and the
32259 topmost frame for that thread.
32260
32261 This command is deprecated in favor of explicitly using the
32262 @samp{--thread} option to each command.
32263
32264 @subsubheading @value{GDBN} Command
32265
32266 The corresponding @value{GDBN} command is @samp{thread}.
32267
32268 @subsubheading Example
32269
32270 @smallexample
32271 (gdb)
32272 -exec-next
32273 ^running
32274 (gdb)
32275 *stopped,reason="end-stepping-range",thread-id="2",line="187",
32276 file="../../../devo/gdb/testsuite/gdb.threads/linux-dp.c"
32277 (gdb)
32278 -thread-list-ids
32279 ^done,
32280 thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
32281 number-of-threads="3"
32282 (gdb)
32283 -thread-select 3
32284 ^done,new-thread-id="3",
32285 frame=@{level="0",func="vprintf",
32286 args=[@{name="format",value="0x8048e9c \"%*s%c %d %c\\n\""@},
32287 @{name="arg",value="0x2"@}],file="vprintf.c",line="31",arch="i386:x86_64"@}
32288 (gdb)
32289 @end smallexample
32290
32291 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32292 @node GDB/MI Ada Tasking Commands
32293 @section @sc{gdb/mi} Ada Tasking Commands
32294
32295 @subheading The @code{-ada-task-info} Command
32296 @findex -ada-task-info
32297
32298 @subsubheading Synopsis
32299
32300 @smallexample
32301 -ada-task-info [ @var{task-id} ]
32302 @end smallexample
32303
32304 Reports information about either a specific Ada task, if the
32305 @var{task-id} parameter is present, or about all Ada tasks.
32306
32307 @subsubheading @value{GDBN} Command
32308
32309 The @samp{info tasks} command prints the same information
32310 about all Ada tasks (@pxref{Ada Tasks}).
32311
32312 @subsubheading Result
32313
32314 The result is a table of Ada tasks. The following columns are
32315 defined for each Ada task:
32316
32317 @table @samp
32318 @item current
32319 This field exists only for the current thread. It has the value @samp{*}.
32320
32321 @item id
32322 The identifier that @value{GDBN} uses to refer to the Ada task.
32323
32324 @item task-id
32325 The identifier that the target uses to refer to the Ada task.
32326
32327 @item thread-id
32328 The global thread identifier of the thread corresponding to the Ada
32329 task.
32330
32331 This field should always exist, as Ada tasks are always implemented
32332 on top of a thread. But if @value{GDBN} cannot find this corresponding
32333 thread for any reason, the field is omitted.
32334
32335 @item parent-id
32336 This field exists only when the task was created by another task.
32337 In this case, it provides the ID of the parent task.
32338
32339 @item priority
32340 The base priority of the task.
32341
32342 @item state
32343 The current state of the task. For a detailed description of the
32344 possible states, see @ref{Ada Tasks}.
32345
32346 @item name
32347 The name of the task.
32348
32349 @end table
32350
32351 @subsubheading Example
32352
32353 @smallexample
32354 -ada-task-info
32355 ^done,tasks=@{nr_rows="3",nr_cols="8",
32356 hdr=[@{width="1",alignment="-1",col_name="current",colhdr=""@},
32357 @{width="3",alignment="1",col_name="id",colhdr="ID"@},
32358 @{width="9",alignment="1",col_name="task-id",colhdr="TID"@},
32359 @{width="4",alignment="1",col_name="thread-id",colhdr=""@},
32360 @{width="4",alignment="1",col_name="parent-id",colhdr="P-ID"@},
32361 @{width="3",alignment="1",col_name="priority",colhdr="Pri"@},
32362 @{width="22",alignment="-1",col_name="state",colhdr="State"@},
32363 @{width="1",alignment="2",col_name="name",colhdr="Name"@}],
32364 body=[@{current="*",id="1",task-id=" 644010",thread-id="1",priority="48",
32365 state="Child Termination Wait",name="main_task"@}]@}
32366 (gdb)
32367 @end smallexample
32368
32369 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32370 @node GDB/MI Program Execution
32371 @section @sc{gdb/mi} Program Execution
32372
32373 These are the asynchronous commands which generate the out-of-band
32374 record @samp{*stopped}. Currently @value{GDBN} only really executes
32375 asynchronously with remote targets and this interaction is mimicked in
32376 other cases.
32377
32378 @subheading The @code{-exec-continue} Command
32379 @findex -exec-continue
32380
32381 @subsubheading Synopsis
32382
32383 @smallexample
32384 -exec-continue [--reverse] [--all|--thread-group N]
32385 @end smallexample
32386
32387 Resumes the execution of the inferior program, which will continue
32388 to execute until it reaches a debugger stop event. If the
32389 @samp{--reverse} option is specified, execution resumes in reverse until
32390 it reaches a stop event. Stop events may include
32391 @itemize @bullet
32392 @item
32393 breakpoints or watchpoints
32394 @item
32395 signals or exceptions
32396 @item
32397 the end of the process (or its beginning under @samp{--reverse})
32398 @item
32399 the end or beginning of a replay log if one is being used.
32400 @end itemize
32401 In all-stop mode (@pxref{All-Stop
32402 Mode}), may resume only one thread, or all threads, depending on the
32403 value of the @samp{scheduler-locking} variable. If @samp{--all} is
32404 specified, all threads (in all inferiors) will be resumed. The @samp{--all} option is
32405 ignored in all-stop mode. If the @samp{--thread-group} options is
32406 specified, then all threads in that thread group are resumed.
32407
32408 @subsubheading @value{GDBN} Command
32409
32410 The corresponding @value{GDBN} corresponding is @samp{continue}.
32411
32412 @subsubheading Example
32413
32414 @smallexample
32415 -exec-continue
32416 ^running
32417 (gdb)
32418 @@Hello world
32419 *stopped,reason="breakpoint-hit",disp="keep",bkptno="2",frame=@{
32420 func="foo",args=[],file="hello.c",fullname="/home/foo/bar/hello.c",
32421 line="13",arch="i386:x86_64"@}
32422 (gdb)
32423 @end smallexample
32424
32425
32426 @subheading The @code{-exec-finish} Command
32427 @findex -exec-finish
32428
32429 @subsubheading Synopsis
32430
32431 @smallexample
32432 -exec-finish [--reverse]
32433 @end smallexample
32434
32435 Resumes the execution of the inferior program until the current
32436 function is exited. Displays the results returned by the function.
32437 If the @samp{--reverse} option is specified, resumes the reverse
32438 execution of the inferior program until the point where current
32439 function was called.
32440
32441 @subsubheading @value{GDBN} Command
32442
32443 The corresponding @value{GDBN} command is @samp{finish}.
32444
32445 @subsubheading Example
32446
32447 Function returning @code{void}.
32448
32449 @smallexample
32450 -exec-finish
32451 ^running
32452 (gdb)
32453 @@hello from foo
32454 *stopped,reason="function-finished",frame=@{func="main",args=[],
32455 file="hello.c",fullname="/home/foo/bar/hello.c",line="7",arch="i386:x86_64"@}
32456 (gdb)
32457 @end smallexample
32458
32459 Function returning other than @code{void}. The name of the internal
32460 @value{GDBN} variable storing the result is printed, together with the
32461 value itself.
32462
32463 @smallexample
32464 -exec-finish
32465 ^running
32466 (gdb)
32467 *stopped,reason="function-finished",frame=@{addr="0x000107b0",func="foo",
32468 args=[@{name="a",value="1"],@{name="b",value="9"@}@},
32469 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32470 arch="i386:x86_64"@},
32471 gdb-result-var="$1",return-value="0"
32472 (gdb)
32473 @end smallexample
32474
32475
32476 @subheading The @code{-exec-interrupt} Command
32477 @findex -exec-interrupt
32478
32479 @subsubheading Synopsis
32480
32481 @smallexample
32482 -exec-interrupt [--all|--thread-group N]
32483 @end smallexample
32484
32485 Interrupts the background execution of the target. Note how the token
32486 associated with the stop message is the one for the execution command
32487 that has been interrupted. The token for the interrupt itself only
32488 appears in the @samp{^done} output. If the user is trying to
32489 interrupt a non-running program, an error message will be printed.
32490
32491 Note that when asynchronous execution is enabled, this command is
32492 asynchronous just like other execution commands. That is, first the
32493 @samp{^done} response will be printed, and the target stop will be
32494 reported after that using the @samp{*stopped} notification.
32495
32496 In non-stop mode, only the context thread is interrupted by default.
32497 All threads (in all inferiors) will be interrupted if the
32498 @samp{--all} option is specified. If the @samp{--thread-group}
32499 option is specified, all threads in that group will be interrupted.
32500
32501 @subsubheading @value{GDBN} Command
32502
32503 The corresponding @value{GDBN} command is @samp{interrupt}.
32504
32505 @subsubheading Example
32506
32507 @smallexample
32508 (gdb)
32509 111-exec-continue
32510 111^running
32511
32512 (gdb)
32513 222-exec-interrupt
32514 222^done
32515 (gdb)
32516 111*stopped,signal-name="SIGINT",signal-meaning="Interrupt",
32517 frame=@{addr="0x00010140",func="foo",args=[],file="try.c",
32518 fullname="/home/foo/bar/try.c",line="13",arch="i386:x86_64"@}
32519 (gdb)
32520
32521 (gdb)
32522 -exec-interrupt
32523 ^error,msg="mi_cmd_exec_interrupt: Inferior not executing."
32524 (gdb)
32525 @end smallexample
32526
32527 @subheading The @code{-exec-jump} Command
32528 @findex -exec-jump
32529
32530 @subsubheading Synopsis
32531
32532 @smallexample
32533 -exec-jump @var{location}
32534 @end smallexample
32535
32536 Resumes execution of the inferior program at the location specified by
32537 parameter. @xref{Specify Location}, for a description of the
32538 different forms of @var{location}.
32539
32540 @subsubheading @value{GDBN} Command
32541
32542 The corresponding @value{GDBN} command is @samp{jump}.
32543
32544 @subsubheading Example
32545
32546 @smallexample
32547 -exec-jump foo.c:10
32548 *running,thread-id="all"
32549 ^running
32550 @end smallexample
32551
32552
32553 @subheading The @code{-exec-next} Command
32554 @findex -exec-next
32555
32556 @subsubheading Synopsis
32557
32558 @smallexample
32559 -exec-next [--reverse]
32560 @end smallexample
32561
32562 Resumes execution of the inferior program, stopping when the beginning
32563 of the next source line is reached.
32564
32565 If the @samp{--reverse} option is specified, resumes reverse execution
32566 of the inferior program, stopping at the beginning of the previous
32567 source line. If you issue this command on the first line of a
32568 function, it will take you back to the caller of that function, to the
32569 source line where the function was called.
32570
32571
32572 @subsubheading @value{GDBN} Command
32573
32574 The corresponding @value{GDBN} command is @samp{next}.
32575
32576 @subsubheading Example
32577
32578 @smallexample
32579 -exec-next
32580 ^running
32581 (gdb)
32582 *stopped,reason="end-stepping-range",line="8",file="hello.c"
32583 (gdb)
32584 @end smallexample
32585
32586
32587 @subheading The @code{-exec-next-instruction} Command
32588 @findex -exec-next-instruction
32589
32590 @subsubheading Synopsis
32591
32592 @smallexample
32593 -exec-next-instruction [--reverse]
32594 @end smallexample
32595
32596 Executes one machine instruction. If the instruction is a function
32597 call, continues until the function returns. If the program stops at an
32598 instruction in the middle of a source line, the address will be
32599 printed as well.
32600
32601 If the @samp{--reverse} option is specified, resumes reverse execution
32602 of the inferior program, stopping at the previous instruction. If the
32603 previously executed instruction was a return from another function,
32604 it will continue to execute in reverse until the call to that function
32605 (from the current stack frame) is reached.
32606
32607 @subsubheading @value{GDBN} Command
32608
32609 The corresponding @value{GDBN} command is @samp{nexti}.
32610
32611 @subsubheading Example
32612
32613 @smallexample
32614 (gdb)
32615 -exec-next-instruction
32616 ^running
32617
32618 (gdb)
32619 *stopped,reason="end-stepping-range",
32620 addr="0x000100d4",line="5",file="hello.c"
32621 (gdb)
32622 @end smallexample
32623
32624
32625 @subheading The @code{-exec-return} Command
32626 @findex -exec-return
32627
32628 @subsubheading Synopsis
32629
32630 @smallexample
32631 -exec-return
32632 @end smallexample
32633
32634 Makes current function return immediately. Doesn't execute the inferior.
32635 Displays the new current frame.
32636
32637 @subsubheading @value{GDBN} Command
32638
32639 The corresponding @value{GDBN} command is @samp{return}.
32640
32641 @subsubheading Example
32642
32643 @smallexample
32644 (gdb)
32645 200-break-insert callee4
32646 200^done,bkpt=@{number="1",addr="0x00010734",
32647 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
32648 (gdb)
32649 000-exec-run
32650 000^running
32651 (gdb)
32652 000*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
32653 frame=@{func="callee4",args=[],
32654 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32655 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
32656 arch="i386:x86_64"@}
32657 (gdb)
32658 205-break-delete
32659 205^done
32660 (gdb)
32661 111-exec-return
32662 111^done,frame=@{level="0",func="callee3",
32663 args=[@{name="strarg",
32664 value="0x11940 \"A string argument.\""@}],
32665 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32666 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
32667 arch="i386:x86_64"@}
32668 (gdb)
32669 @end smallexample
32670
32671
32672 @subheading The @code{-exec-run} Command
32673 @findex -exec-run
32674
32675 @subsubheading Synopsis
32676
32677 @smallexample
32678 -exec-run [ --all | --thread-group N ] [ --start ]
32679 @end smallexample
32680
32681 Starts execution of the inferior from the beginning. The inferior
32682 executes until either a breakpoint is encountered or the program
32683 exits. In the latter case the output will include an exit code, if
32684 the program has exited exceptionally.
32685
32686 When neither the @samp{--all} nor the @samp{--thread-group} option
32687 is specified, the current inferior is started. If the
32688 @samp{--thread-group} option is specified, it should refer to a thread
32689 group of type @samp{process}, and that thread group will be started.
32690 If the @samp{--all} option is specified, then all inferiors will be started.
32691
32692 Using the @samp{--start} option instructs the debugger to stop
32693 the execution at the start of the inferior's main subprogram,
32694 following the same behavior as the @code{start} command
32695 (@pxref{Starting}).
32696
32697 @subsubheading @value{GDBN} Command
32698
32699 The corresponding @value{GDBN} command is @samp{run}.
32700
32701 @subsubheading Examples
32702
32703 @smallexample
32704 (gdb)
32705 -break-insert main
32706 ^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
32707 (gdb)
32708 -exec-run
32709 ^running
32710 (gdb)
32711 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
32712 frame=@{func="main",args=[],file="recursive2.c",
32713 fullname="/home/foo/bar/recursive2.c",line="4",arch="i386:x86_64"@}
32714 (gdb)
32715 @end smallexample
32716
32717 @noindent
32718 Program exited normally:
32719
32720 @smallexample
32721 (gdb)
32722 -exec-run
32723 ^running
32724 (gdb)
32725 x = 55
32726 *stopped,reason="exited-normally"
32727 (gdb)
32728 @end smallexample
32729
32730 @noindent
32731 Program exited exceptionally:
32732
32733 @smallexample
32734 (gdb)
32735 -exec-run
32736 ^running
32737 (gdb)
32738 x = 55
32739 *stopped,reason="exited",exit-code="01"
32740 (gdb)
32741 @end smallexample
32742
32743 Another way the program can terminate is if it receives a signal such as
32744 @code{SIGINT}. In this case, @sc{gdb/mi} displays this:
32745
32746 @smallexample
32747 (gdb)
32748 *stopped,reason="exited-signalled",signal-name="SIGINT",
32749 signal-meaning="Interrupt"
32750 @end smallexample
32751
32752
32753 @c @subheading -exec-signal
32754
32755
32756 @subheading The @code{-exec-step} Command
32757 @findex -exec-step
32758
32759 @subsubheading Synopsis
32760
32761 @smallexample
32762 -exec-step [--reverse]
32763 @end smallexample
32764
32765 Resumes execution of the inferior program, stopping when the beginning
32766 of the next source line is reached, if the next source line is not a
32767 function call. If it is, stop at the first instruction of the called
32768 function. If the @samp{--reverse} option is specified, resumes reverse
32769 execution of the inferior program, stopping at the beginning of the
32770 previously executed source line.
32771
32772 @subsubheading @value{GDBN} Command
32773
32774 The corresponding @value{GDBN} command is @samp{step}.
32775
32776 @subsubheading Example
32777
32778 Stepping into a function:
32779
32780 @smallexample
32781 -exec-step
32782 ^running
32783 (gdb)
32784 *stopped,reason="end-stepping-range",
32785 frame=@{func="foo",args=[@{name="a",value="10"@},
32786 @{name="b",value="0"@}],file="recursive2.c",
32787 fullname="/home/foo/bar/recursive2.c",line="11",arch="i386:x86_64"@}
32788 (gdb)
32789 @end smallexample
32790
32791 Regular stepping:
32792
32793 @smallexample
32794 -exec-step
32795 ^running
32796 (gdb)
32797 *stopped,reason="end-stepping-range",line="14",file="recursive2.c"
32798 (gdb)
32799 @end smallexample
32800
32801
32802 @subheading The @code{-exec-step-instruction} Command
32803 @findex -exec-step-instruction
32804
32805 @subsubheading Synopsis
32806
32807 @smallexample
32808 -exec-step-instruction [--reverse]
32809 @end smallexample
32810
32811 Resumes the inferior which executes one machine instruction. If the
32812 @samp{--reverse} option is specified, resumes reverse execution of the
32813 inferior program, stopping at the previously executed instruction.
32814 The output, once @value{GDBN} has stopped, will vary depending on
32815 whether we have stopped in the middle of a source line or not. In the
32816 former case, the address at which the program stopped will be printed
32817 as well.
32818
32819 @subsubheading @value{GDBN} Command
32820
32821 The corresponding @value{GDBN} command is @samp{stepi}.
32822
32823 @subsubheading Example
32824
32825 @smallexample
32826 (gdb)
32827 -exec-step-instruction
32828 ^running
32829
32830 (gdb)
32831 *stopped,reason="end-stepping-range",
32832 frame=@{func="foo",args=[],file="try.c",
32833 fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
32834 (gdb)
32835 -exec-step-instruction
32836 ^running
32837
32838 (gdb)
32839 *stopped,reason="end-stepping-range",
32840 frame=@{addr="0x000100f4",func="foo",args=[],file="try.c",
32841 fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
32842 (gdb)
32843 @end smallexample
32844
32845
32846 @subheading The @code{-exec-until} Command
32847 @findex -exec-until
32848
32849 @subsubheading Synopsis
32850
32851 @smallexample
32852 -exec-until [ @var{location} ]
32853 @end smallexample
32854
32855 Executes the inferior until the @var{location} specified in the
32856 argument is reached. If there is no argument, the inferior executes
32857 until a source line greater than the current one is reached. The
32858 reason for stopping in this case will be @samp{location-reached}.
32859
32860 @subsubheading @value{GDBN} Command
32861
32862 The corresponding @value{GDBN} command is @samp{until}.
32863
32864 @subsubheading Example
32865
32866 @smallexample
32867 (gdb)
32868 -exec-until recursive2.c:6
32869 ^running
32870 (gdb)
32871 x = 55
32872 *stopped,reason="location-reached",frame=@{func="main",args=[],
32873 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="6",
32874 arch="i386:x86_64"@}
32875 (gdb)
32876 @end smallexample
32877
32878 @ignore
32879 @subheading -file-clear
32880 Is this going away????
32881 @end ignore
32882
32883 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
32884 @node GDB/MI Stack Manipulation
32885 @section @sc{gdb/mi} Stack Manipulation Commands
32886
32887 @subheading The @code{-enable-frame-filters} Command
32888 @findex -enable-frame-filters
32889
32890 @smallexample
32891 -enable-frame-filters
32892 @end smallexample
32893
32894 @value{GDBN} allows Python-based frame filters to affect the output of
32895 the MI commands relating to stack traces. As there is no way to
32896 implement this in a fully backward-compatible way, a front end must
32897 request that this functionality be enabled.
32898
32899 Once enabled, this feature cannot be disabled.
32900
32901 Note that if Python support has not been compiled into @value{GDBN},
32902 this command will still succeed (and do nothing).
32903
32904 @subheading The @code{-stack-info-frame} Command
32905 @findex -stack-info-frame
32906
32907 @subsubheading Synopsis
32908
32909 @smallexample
32910 -stack-info-frame
32911 @end smallexample
32912
32913 Get info on the selected frame.
32914
32915 @subsubheading @value{GDBN} Command
32916
32917 The corresponding @value{GDBN} command is @samp{info frame} or @samp{frame}
32918 (without arguments).
32919
32920 @subsubheading Example
32921
32922 @smallexample
32923 (gdb)
32924 -stack-info-frame
32925 ^done,frame=@{level="1",addr="0x0001076c",func="callee3",
32926 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
32927 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
32928 arch="i386:x86_64"@}
32929 (gdb)
32930 @end smallexample
32931
32932 @subheading The @code{-stack-info-depth} Command
32933 @findex -stack-info-depth
32934
32935 @subsubheading Synopsis
32936
32937 @smallexample
32938 -stack-info-depth [ @var{max-depth} ]
32939 @end smallexample
32940
32941 Return the depth of the stack. If the integer argument @var{max-depth}
32942 is specified, do not count beyond @var{max-depth} frames.
32943
32944 @subsubheading @value{GDBN} Command
32945
32946 There's no equivalent @value{GDBN} command.
32947
32948 @subsubheading Example
32949
32950 For a stack with frame levels 0 through 11:
32951
32952 @smallexample
32953 (gdb)
32954 -stack-info-depth
32955 ^done,depth="12"
32956 (gdb)
32957 -stack-info-depth 4
32958 ^done,depth="4"
32959 (gdb)
32960 -stack-info-depth 12
32961 ^done,depth="12"
32962 (gdb)
32963 -stack-info-depth 11
32964 ^done,depth="11"
32965 (gdb)
32966 -stack-info-depth 13
32967 ^done,depth="12"
32968 (gdb)
32969 @end smallexample
32970
32971 @anchor{-stack-list-arguments}
32972 @subheading The @code{-stack-list-arguments} Command
32973 @findex -stack-list-arguments
32974
32975 @subsubheading Synopsis
32976
32977 @smallexample
32978 -stack-list-arguments [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
32979 [ @var{low-frame} @var{high-frame} ]
32980 @end smallexample
32981
32982 Display a list of the arguments for the frames between @var{low-frame}
32983 and @var{high-frame} (inclusive). If @var{low-frame} and
32984 @var{high-frame} are not provided, list the arguments for the whole
32985 call stack. If the two arguments are equal, show the single frame
32986 at the corresponding level. It is an error if @var{low-frame} is
32987 larger than the actual number of frames. On the other hand,
32988 @var{high-frame} may be larger than the actual number of frames, in
32989 which case only existing frames will be returned.
32990
32991 If @var{print-values} is 0 or @code{--no-values}, print only the names of
32992 the variables; if it is 1 or @code{--all-values}, print also their
32993 values; and if it is 2 or @code{--simple-values}, print the name,
32994 type and value for simple data types, and the name and type for arrays,
32995 structures and unions. If the option @code{--no-frame-filters} is
32996 supplied, then Python frame filters will not be executed.
32997
32998 If the @code{--skip-unavailable} option is specified, arguments that
32999 are not available are not listed. Partially available arguments
33000 are still displayed, however.
33001
33002 Use of this command to obtain arguments in a single frame is
33003 deprecated in favor of the @samp{-stack-list-variables} command.
33004
33005 @subsubheading @value{GDBN} Command
33006
33007 @value{GDBN} does not have an equivalent command. @code{gdbtk} has a
33008 @samp{gdb_get_args} command which partially overlaps with the
33009 functionality of @samp{-stack-list-arguments}.
33010
33011 @subsubheading Example
33012
33013 @smallexample
33014 (gdb)
33015 -stack-list-frames
33016 ^done,
33017 stack=[
33018 frame=@{level="0",addr="0x00010734",func="callee4",
33019 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33020 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
33021 arch="i386:x86_64"@},
33022 frame=@{level="1",addr="0x0001076c",func="callee3",
33023 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33024 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
33025 arch="i386:x86_64"@},
33026 frame=@{level="2",addr="0x0001078c",func="callee2",
33027 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33028 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="22",
33029 arch="i386:x86_64"@},
33030 frame=@{level="3",addr="0x000107b4",func="callee1",
33031 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33032 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="27",
33033 arch="i386:x86_64"@},
33034 frame=@{level="4",addr="0x000107e0",func="main",
33035 file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
33036 fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="32",
33037 arch="i386:x86_64"@}]
33038 (gdb)
33039 -stack-list-arguments 0
33040 ^done,
33041 stack-args=[
33042 frame=@{level="0",args=[]@},
33043 frame=@{level="1",args=[name="strarg"]@},
33044 frame=@{level="2",args=[name="intarg",name="strarg"]@},
33045 frame=@{level="3",args=[name="intarg",name="strarg",name="fltarg"]@},
33046 frame=@{level="4",args=[]@}]
33047 (gdb)
33048 -stack-list-arguments 1
33049 ^done,
33050 stack-args=[
33051 frame=@{level="0",args=[]@},
33052 frame=@{level="1",
33053 args=[@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
33054 frame=@{level="2",args=[
33055 @{name="intarg",value="2"@},
33056 @{name="strarg",value="0x11940 \"A string argument.\""@}]@},
33057 @{frame=@{level="3",args=[
33058 @{name="intarg",value="2"@},
33059 @{name="strarg",value="0x11940 \"A string argument.\""@},
33060 @{name="fltarg",value="3.5"@}]@},
33061 frame=@{level="4",args=[]@}]
33062 (gdb)
33063 -stack-list-arguments 0 2 2
33064 ^done,stack-args=[frame=@{level="2",args=[name="intarg",name="strarg"]@}]
33065 (gdb)
33066 -stack-list-arguments 1 2 2
33067 ^done,stack-args=[frame=@{level="2",
33068 args=[@{name="intarg",value="2"@},
33069 @{name="strarg",value="0x11940 \"A string argument.\""@}]@}]
33070 (gdb)
33071 @end smallexample
33072
33073 @c @subheading -stack-list-exception-handlers
33074
33075
33076 @anchor{-stack-list-frames}
33077 @subheading The @code{-stack-list-frames} Command
33078 @findex -stack-list-frames
33079
33080 @subsubheading Synopsis
33081
33082 @smallexample
33083 -stack-list-frames [ --no-frame-filters @var{low-frame} @var{high-frame} ]
33084 @end smallexample
33085
33086 List the frames currently on the stack. For each frame it displays the
33087 following info:
33088
33089 @table @samp
33090 @item @var{level}
33091 The frame number, 0 being the topmost frame, i.e., the innermost function.
33092 @item @var{addr}
33093 The @code{$pc} value for that frame.
33094 @item @var{func}
33095 Function name.
33096 @item @var{file}
33097 File name of the source file where the function lives.
33098 @item @var{fullname}
33099 The full file name of the source file where the function lives.
33100 @item @var{line}
33101 Line number corresponding to the @code{$pc}.
33102 @item @var{from}
33103 The shared library where this function is defined. This is only given
33104 if the frame's function is not known.
33105 @item @var{arch}
33106 Frame's architecture.
33107 @end table
33108
33109 If invoked without arguments, this command prints a backtrace for the
33110 whole stack. If given two integer arguments, it shows the frames whose
33111 levels are between the two arguments (inclusive). If the two arguments
33112 are equal, it shows the single frame at the corresponding level. It is
33113 an error if @var{low-frame} is larger than the actual number of
33114 frames. On the other hand, @var{high-frame} may be larger than the
33115 actual number of frames, in which case only existing frames will be
33116 returned. If the option @code{--no-frame-filters} is supplied, then
33117 Python frame filters will not be executed.
33118
33119 @subsubheading @value{GDBN} Command
33120
33121 The corresponding @value{GDBN} commands are @samp{backtrace} and @samp{where}.
33122
33123 @subsubheading Example
33124
33125 Full stack backtrace:
33126
33127 @smallexample
33128 (gdb)
33129 -stack-list-frames
33130 ^done,stack=
33131 [frame=@{level="0",addr="0x0001076c",func="foo",
33132 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="11",
33133 arch="i386:x86_64"@},
33134 frame=@{level="1",addr="0x000107a4",func="foo",
33135 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33136 arch="i386:x86_64"@},
33137 frame=@{level="2",addr="0x000107a4",func="foo",
33138 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33139 arch="i386:x86_64"@},
33140 frame=@{level="3",addr="0x000107a4",func="foo",
33141 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33142 arch="i386:x86_64"@},
33143 frame=@{level="4",addr="0x000107a4",func="foo",
33144 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33145 arch="i386:x86_64"@},
33146 frame=@{level="5",addr="0x000107a4",func="foo",
33147 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33148 arch="i386:x86_64"@},
33149 frame=@{level="6",addr="0x000107a4",func="foo",
33150 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33151 arch="i386:x86_64"@},
33152 frame=@{level="7",addr="0x000107a4",func="foo",
33153 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33154 arch="i386:x86_64"@},
33155 frame=@{level="8",addr="0x000107a4",func="foo",
33156 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33157 arch="i386:x86_64"@},
33158 frame=@{level="9",addr="0x000107a4",func="foo",
33159 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33160 arch="i386:x86_64"@},
33161 frame=@{level="10",addr="0x000107a4",func="foo",
33162 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33163 arch="i386:x86_64"@},
33164 frame=@{level="11",addr="0x00010738",func="main",
33165 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="4",
33166 arch="i386:x86_64"@}]
33167 (gdb)
33168 @end smallexample
33169
33170 Show frames between @var{low_frame} and @var{high_frame}:
33171
33172 @smallexample
33173 (gdb)
33174 -stack-list-frames 3 5
33175 ^done,stack=
33176 [frame=@{level="3",addr="0x000107a4",func="foo",
33177 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33178 arch="i386:x86_64"@},
33179 frame=@{level="4",addr="0x000107a4",func="foo",
33180 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33181 arch="i386:x86_64"@},
33182 frame=@{level="5",addr="0x000107a4",func="foo",
33183 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33184 arch="i386:x86_64"@}]
33185 (gdb)
33186 @end smallexample
33187
33188 Show a single frame:
33189
33190 @smallexample
33191 (gdb)
33192 -stack-list-frames 3 3
33193 ^done,stack=
33194 [frame=@{level="3",addr="0x000107a4",func="foo",
33195 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
33196 arch="i386:x86_64"@}]
33197 (gdb)
33198 @end smallexample
33199
33200
33201 @subheading The @code{-stack-list-locals} Command
33202 @findex -stack-list-locals
33203 @anchor{-stack-list-locals}
33204
33205 @subsubheading Synopsis
33206
33207 @smallexample
33208 -stack-list-locals [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
33209 @end smallexample
33210
33211 Display the local variable names for the selected frame. If
33212 @var{print-values} is 0 or @code{--no-values}, print only the names of
33213 the variables; if it is 1 or @code{--all-values}, print also their
33214 values; and if it is 2 or @code{--simple-values}, print the name,
33215 type and value for simple data types, and the name and type for arrays,
33216 structures and unions. In this last case, a frontend can immediately
33217 display the value of simple data types and create variable objects for
33218 other data types when the user wishes to explore their values in
33219 more detail. If the option @code{--no-frame-filters} is supplied, then
33220 Python frame filters will not be executed.
33221
33222 If the @code{--skip-unavailable} option is specified, local variables
33223 that are not available are not listed. Partially available local
33224 variables are still displayed, however.
33225
33226 This command is deprecated in favor of the
33227 @samp{-stack-list-variables} command.
33228
33229 @subsubheading @value{GDBN} Command
33230
33231 @samp{info locals} in @value{GDBN}, @samp{gdb_get_locals} in @code{gdbtk}.
33232
33233 @subsubheading Example
33234
33235 @smallexample
33236 (gdb)
33237 -stack-list-locals 0
33238 ^done,locals=[name="A",name="B",name="C"]
33239 (gdb)
33240 -stack-list-locals --all-values
33241 ^done,locals=[@{name="A",value="1"@},@{name="B",value="2"@},
33242 @{name="C",value="@{1, 2, 3@}"@}]
33243 -stack-list-locals --simple-values
33244 ^done,locals=[@{name="A",type="int",value="1"@},
33245 @{name="B",type="int",value="2"@},@{name="C",type="int [3]"@}]
33246 (gdb)
33247 @end smallexample
33248
33249 @anchor{-stack-list-variables}
33250 @subheading The @code{-stack-list-variables} Command
33251 @findex -stack-list-variables
33252
33253 @subsubheading Synopsis
33254
33255 @smallexample
33256 -stack-list-variables [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
33257 @end smallexample
33258
33259 Display the names of local variables and function arguments for the selected frame. If
33260 @var{print-values} is 0 or @code{--no-values}, print only the names of
33261 the variables; if it is 1 or @code{--all-values}, print also their
33262 values; and if it is 2 or @code{--simple-values}, print the name,
33263 type and value for simple data types, and the name and type for arrays,
33264 structures and unions. If the option @code{--no-frame-filters} is
33265 supplied, then Python frame filters will not be executed.
33266
33267 If the @code{--skip-unavailable} option is specified, local variables
33268 and arguments that are not available are not listed. Partially
33269 available arguments and local variables are still displayed, however.
33270
33271 @subsubheading Example
33272
33273 @smallexample
33274 (gdb)
33275 -stack-list-variables --thread 1 --frame 0 --all-values
33276 ^done,variables=[@{name="x",value="11"@},@{name="s",value="@{a = 1, b = 2@}"@}]
33277 (gdb)
33278 @end smallexample
33279
33280
33281 @subheading The @code{-stack-select-frame} Command
33282 @findex -stack-select-frame
33283
33284 @subsubheading Synopsis
33285
33286 @smallexample
33287 -stack-select-frame @var{framenum}
33288 @end smallexample
33289
33290 Change the selected frame. Select a different frame @var{framenum} on
33291 the stack.
33292
33293 This command in deprecated in favor of passing the @samp{--frame}
33294 option to every command.
33295
33296 @subsubheading @value{GDBN} Command
33297
33298 The corresponding @value{GDBN} commands are @samp{frame}, @samp{up},
33299 @samp{down}, @samp{select-frame}, @samp{up-silent}, and @samp{down-silent}.
33300
33301 @subsubheading Example
33302
33303 @smallexample
33304 (gdb)
33305 -stack-select-frame 2
33306 ^done
33307 (gdb)
33308 @end smallexample
33309
33310 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33311 @node GDB/MI Variable Objects
33312 @section @sc{gdb/mi} Variable Objects
33313
33314 @ignore
33315
33316 @subheading Motivation for Variable Objects in @sc{gdb/mi}
33317
33318 For the implementation of a variable debugger window (locals, watched
33319 expressions, etc.), we are proposing the adaptation of the existing code
33320 used by @code{Insight}.
33321
33322 The two main reasons for that are:
33323
33324 @enumerate 1
33325 @item
33326 It has been proven in practice (it is already on its second generation).
33327
33328 @item
33329 It will shorten development time (needless to say how important it is
33330 now).
33331 @end enumerate
33332
33333 The original interface was designed to be used by Tcl code, so it was
33334 slightly changed so it could be used through @sc{gdb/mi}. This section
33335 describes the @sc{gdb/mi} operations that will be available and gives some
33336 hints about their use.
33337
33338 @emph{Note}: In addition to the set of operations described here, we
33339 expect the @sc{gui} implementation of a variable window to require, at
33340 least, the following operations:
33341
33342 @itemize @bullet
33343 @item @code{-gdb-show} @code{output-radix}
33344 @item @code{-stack-list-arguments}
33345 @item @code{-stack-list-locals}
33346 @item @code{-stack-select-frame}
33347 @end itemize
33348
33349 @end ignore
33350
33351 @subheading Introduction to Variable Objects
33352
33353 @cindex variable objects in @sc{gdb/mi}
33354
33355 Variable objects are "object-oriented" MI interface for examining and
33356 changing values of expressions. Unlike some other MI interfaces that
33357 work with expressions, variable objects are specifically designed for
33358 simple and efficient presentation in the frontend. A variable object
33359 is identified by string name. When a variable object is created, the
33360 frontend specifies the expression for that variable object. The
33361 expression can be a simple variable, or it can be an arbitrary complex
33362 expression, and can even involve CPU registers. After creating a
33363 variable object, the frontend can invoke other variable object
33364 operations---for example to obtain or change the value of a variable
33365 object, or to change display format.
33366
33367 Variable objects have hierarchical tree structure. Any variable object
33368 that corresponds to a composite type, such as structure in C, has
33369 a number of child variable objects, for example corresponding to each
33370 element of a structure. A child variable object can itself have
33371 children, recursively. Recursion ends when we reach
33372 leaf variable objects, which always have built-in types. Child variable
33373 objects are created only by explicit request, so if a frontend
33374 is not interested in the children of a particular variable object, no
33375 child will be created.
33376
33377 For a leaf variable object it is possible to obtain its value as a
33378 string, or set the value from a string. String value can be also
33379 obtained for a non-leaf variable object, but it's generally a string
33380 that only indicates the type of the object, and does not list its
33381 contents. Assignment to a non-leaf variable object is not allowed.
33382
33383 A frontend does not need to read the values of all variable objects each time
33384 the program stops. Instead, MI provides an update command that lists all
33385 variable objects whose values has changed since the last update
33386 operation. This considerably reduces the amount of data that must
33387 be transferred to the frontend. As noted above, children variable
33388 objects are created on demand, and only leaf variable objects have a
33389 real value. As result, gdb will read target memory only for leaf
33390 variables that frontend has created.
33391
33392 The automatic update is not always desirable. For example, a frontend
33393 might want to keep a value of some expression for future reference,
33394 and never update it. For another example, fetching memory is
33395 relatively slow for embedded targets, so a frontend might want
33396 to disable automatic update for the variables that are either not
33397 visible on the screen, or ``closed''. This is possible using so
33398 called ``frozen variable objects''. Such variable objects are never
33399 implicitly updated.
33400
33401 Variable objects can be either @dfn{fixed} or @dfn{floating}. For the
33402 fixed variable object, the expression is parsed when the variable
33403 object is created, including associating identifiers to specific
33404 variables. The meaning of expression never changes. For a floating
33405 variable object the values of variables whose names appear in the
33406 expressions are re-evaluated every time in the context of the current
33407 frame. Consider this example:
33408
33409 @smallexample
33410 void do_work(...)
33411 @{
33412 struct work_state state;
33413
33414 if (...)
33415 do_work(...);
33416 @}
33417 @end smallexample
33418
33419 If a fixed variable object for the @code{state} variable is created in
33420 this function, and we enter the recursive call, the variable
33421 object will report the value of @code{state} in the top-level
33422 @code{do_work} invocation. On the other hand, a floating variable
33423 object will report the value of @code{state} in the current frame.
33424
33425 If an expression specified when creating a fixed variable object
33426 refers to a local variable, the variable object becomes bound to the
33427 thread and frame in which the variable object is created. When such
33428 variable object is updated, @value{GDBN} makes sure that the
33429 thread/frame combination the variable object is bound to still exists,
33430 and re-evaluates the variable object in context of that thread/frame.
33431
33432 The following is the complete set of @sc{gdb/mi} operations defined to
33433 access this functionality:
33434
33435 @multitable @columnfractions .4 .6
33436 @item @strong{Operation}
33437 @tab @strong{Description}
33438
33439 @item @code{-enable-pretty-printing}
33440 @tab enable Python-based pretty-printing
33441 @item @code{-var-create}
33442 @tab create a variable object
33443 @item @code{-var-delete}
33444 @tab delete the variable object and/or its children
33445 @item @code{-var-set-format}
33446 @tab set the display format of this variable
33447 @item @code{-var-show-format}
33448 @tab show the display format of this variable
33449 @item @code{-var-info-num-children}
33450 @tab tells how many children this object has
33451 @item @code{-var-list-children}
33452 @tab return a list of the object's children
33453 @item @code{-var-info-type}
33454 @tab show the type of this variable object
33455 @item @code{-var-info-expression}
33456 @tab print parent-relative expression that this variable object represents
33457 @item @code{-var-info-path-expression}
33458 @tab print full expression that this variable object represents
33459 @item @code{-var-show-attributes}
33460 @tab is this variable editable? does it exist here?
33461 @item @code{-var-evaluate-expression}
33462 @tab get the value of this variable
33463 @item @code{-var-assign}
33464 @tab set the value of this variable
33465 @item @code{-var-update}
33466 @tab update the variable and its children
33467 @item @code{-var-set-frozen}
33468 @tab set frozenness attribute
33469 @item @code{-var-set-update-range}
33470 @tab set range of children to display on update
33471 @end multitable
33472
33473 In the next subsection we describe each operation in detail and suggest
33474 how it can be used.
33475
33476 @subheading Description And Use of Operations on Variable Objects
33477
33478 @subheading The @code{-enable-pretty-printing} Command
33479 @findex -enable-pretty-printing
33480
33481 @smallexample
33482 -enable-pretty-printing
33483 @end smallexample
33484
33485 @value{GDBN} allows Python-based visualizers to affect the output of the
33486 MI variable object commands. However, because there was no way to
33487 implement this in a fully backward-compatible way, a front end must
33488 request that this functionality be enabled.
33489
33490 Once enabled, this feature cannot be disabled.
33491
33492 Note that if Python support has not been compiled into @value{GDBN},
33493 this command will still succeed (and do nothing).
33494
33495 This feature is currently (as of @value{GDBN} 7.0) experimental, and
33496 may work differently in future versions of @value{GDBN}.
33497
33498 @subheading The @code{-var-create} Command
33499 @findex -var-create
33500
33501 @subsubheading Synopsis
33502
33503 @smallexample
33504 -var-create @{@var{name} | "-"@}
33505 @{@var{frame-addr} | "*" | "@@"@} @var{expression}
33506 @end smallexample
33507
33508 This operation creates a variable object, which allows the monitoring of
33509 a variable, the result of an expression, a memory cell or a CPU
33510 register.
33511
33512 The @var{name} parameter is the string by which the object can be
33513 referenced. It must be unique. If @samp{-} is specified, the varobj
33514 system will generate a string ``varNNNNNN'' automatically. It will be
33515 unique provided that one does not specify @var{name} of that format.
33516 The command fails if a duplicate name is found.
33517
33518 The frame under which the expression should be evaluated can be
33519 specified by @var{frame-addr}. A @samp{*} indicates that the current
33520 frame should be used. A @samp{@@} indicates that a floating variable
33521 object must be created.
33522
33523 @var{expression} is any expression valid on the current language set (must not
33524 begin with a @samp{*}), or one of the following:
33525
33526 @itemize @bullet
33527 @item
33528 @samp{*@var{addr}}, where @var{addr} is the address of a memory cell
33529
33530 @item
33531 @samp{*@var{addr}-@var{addr}} --- a memory address range (TBD)
33532
33533 @item
33534 @samp{$@var{regname}} --- a CPU register name
33535 @end itemize
33536
33537 @cindex dynamic varobj
33538 A varobj's contents may be provided by a Python-based pretty-printer. In this
33539 case the varobj is known as a @dfn{dynamic varobj}. Dynamic varobjs
33540 have slightly different semantics in some cases. If the
33541 @code{-enable-pretty-printing} command is not sent, then @value{GDBN}
33542 will never create a dynamic varobj. This ensures backward
33543 compatibility for existing clients.
33544
33545 @subsubheading Result
33546
33547 This operation returns attributes of the newly-created varobj. These
33548 are:
33549
33550 @table @samp
33551 @item name
33552 The name of the varobj.
33553
33554 @item numchild
33555 The number of children of the varobj. This number is not necessarily
33556 reliable for a dynamic varobj. Instead, you must examine the
33557 @samp{has_more} attribute.
33558
33559 @item value
33560 The varobj's scalar value. For a varobj whose type is some sort of
33561 aggregate (e.g., a @code{struct}), or for a dynamic varobj, this value
33562 will not be interesting.
33563
33564 @item type
33565 The varobj's type. This is a string representation of the type, as
33566 would be printed by the @value{GDBN} CLI. If @samp{print object}
33567 (@pxref{Print Settings, set print object}) is set to @code{on}, the
33568 @emph{actual} (derived) type of the object is shown rather than the
33569 @emph{declared} one.
33570
33571 @item thread-id
33572 If a variable object is bound to a specific thread, then this is the
33573 thread's global identifier.
33574
33575 @item has_more
33576 For a dynamic varobj, this indicates whether there appear to be any
33577 children available. For a non-dynamic varobj, this will be 0.
33578
33579 @item dynamic
33580 This attribute will be present and have the value @samp{1} if the
33581 varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
33582 then this attribute will not be present.
33583
33584 @item displayhint
33585 A dynamic varobj can supply a display hint to the front end. The
33586 value comes directly from the Python pretty-printer object's
33587 @code{display_hint} method. @xref{Pretty Printing API}.
33588 @end table
33589
33590 Typical output will look like this:
33591
33592 @smallexample
33593 name="@var{name}",numchild="@var{N}",type="@var{type}",thread-id="@var{M}",
33594 has_more="@var{has_more}"
33595 @end smallexample
33596
33597
33598 @subheading The @code{-var-delete} Command
33599 @findex -var-delete
33600
33601 @subsubheading Synopsis
33602
33603 @smallexample
33604 -var-delete [ -c ] @var{name}
33605 @end smallexample
33606
33607 Deletes a previously created variable object and all of its children.
33608 With the @samp{-c} option, just deletes the children.
33609
33610 Returns an error if the object @var{name} is not found.
33611
33612
33613 @subheading The @code{-var-set-format} Command
33614 @findex -var-set-format
33615
33616 @subsubheading Synopsis
33617
33618 @smallexample
33619 -var-set-format @var{name} @var{format-spec}
33620 @end smallexample
33621
33622 Sets the output format for the value of the object @var{name} to be
33623 @var{format-spec}.
33624
33625 @anchor{-var-set-format}
33626 The syntax for the @var{format-spec} is as follows:
33627
33628 @smallexample
33629 @var{format-spec} @expansion{}
33630 @{binary | decimal | hexadecimal | octal | natural | zero-hexadecimal@}
33631 @end smallexample
33632
33633 The natural format is the default format choosen automatically
33634 based on the variable type (like decimal for an @code{int}, hex
33635 for pointers, etc.).
33636
33637 The zero-hexadecimal format has a representation similar to hexadecimal
33638 but with padding zeroes to the left of the value. For example, a 32-bit
33639 hexadecimal value of 0x1234 would be represented as 0x00001234 in the
33640 zero-hexadecimal format.
33641
33642 For a variable with children, the format is set only on the
33643 variable itself, and the children are not affected.
33644
33645 @subheading The @code{-var-show-format} Command
33646 @findex -var-show-format
33647
33648 @subsubheading Synopsis
33649
33650 @smallexample
33651 -var-show-format @var{name}
33652 @end smallexample
33653
33654 Returns the format used to display the value of the object @var{name}.
33655
33656 @smallexample
33657 @var{format} @expansion{}
33658 @var{format-spec}
33659 @end smallexample
33660
33661
33662 @subheading The @code{-var-info-num-children} Command
33663 @findex -var-info-num-children
33664
33665 @subsubheading Synopsis
33666
33667 @smallexample
33668 -var-info-num-children @var{name}
33669 @end smallexample
33670
33671 Returns the number of children of a variable object @var{name}:
33672
33673 @smallexample
33674 numchild=@var{n}
33675 @end smallexample
33676
33677 Note that this number is not completely reliable for a dynamic varobj.
33678 It will return the current number of children, but more children may
33679 be available.
33680
33681
33682 @subheading The @code{-var-list-children} Command
33683 @findex -var-list-children
33684
33685 @subsubheading Synopsis
33686
33687 @smallexample
33688 -var-list-children [@var{print-values}] @var{name} [@var{from} @var{to}]
33689 @end smallexample
33690 @anchor{-var-list-children}
33691
33692 Return a list of the children of the specified variable object and
33693 create variable objects for them, if they do not already exist. With
33694 a single argument or if @var{print-values} has a value of 0 or
33695 @code{--no-values}, print only the names of the variables; if
33696 @var{print-values} is 1 or @code{--all-values}, also print their
33697 values; and if it is 2 or @code{--simple-values} print the name and
33698 value for simple data types and just the name for arrays, structures
33699 and unions.
33700
33701 @var{from} and @var{to}, if specified, indicate the range of children
33702 to report. If @var{from} or @var{to} is less than zero, the range is
33703 reset and all children will be reported. Otherwise, children starting
33704 at @var{from} (zero-based) and up to and excluding @var{to} will be
33705 reported.
33706
33707 If a child range is requested, it will only affect the current call to
33708 @code{-var-list-children}, but not future calls to @code{-var-update}.
33709 For this, you must instead use @code{-var-set-update-range}. The
33710 intent of this approach is to enable a front end to implement any
33711 update approach it likes; for example, scrolling a view may cause the
33712 front end to request more children with @code{-var-list-children}, and
33713 then the front end could call @code{-var-set-update-range} with a
33714 different range to ensure that future updates are restricted to just
33715 the visible items.
33716
33717 For each child the following results are returned:
33718
33719 @table @var
33720
33721 @item name
33722 Name of the variable object created for this child.
33723
33724 @item exp
33725 The expression to be shown to the user by the front end to designate this child.
33726 For example this may be the name of a structure member.
33727
33728 For a dynamic varobj, this value cannot be used to form an
33729 expression. There is no way to do this at all with a dynamic varobj.
33730
33731 For C/C@t{++} structures there are several pseudo children returned to
33732 designate access qualifiers. For these pseudo children @var{exp} is
33733 @samp{public}, @samp{private}, or @samp{protected}. In this case the
33734 type and value are not present.
33735
33736 A dynamic varobj will not report the access qualifying
33737 pseudo-children, regardless of the language. This information is not
33738 available at all with a dynamic varobj.
33739
33740 @item numchild
33741 Number of children this child has. For a dynamic varobj, this will be
33742 0.
33743
33744 @item type
33745 The type of the child. If @samp{print object}
33746 (@pxref{Print Settings, set print object}) is set to @code{on}, the
33747 @emph{actual} (derived) type of the object is shown rather than the
33748 @emph{declared} one.
33749
33750 @item value
33751 If values were requested, this is the value.
33752
33753 @item thread-id
33754 If this variable object is associated with a thread, this is the
33755 thread's global thread id. Otherwise this result is not present.
33756
33757 @item frozen
33758 If the variable object is frozen, this variable will be present with a value of 1.
33759
33760 @item displayhint
33761 A dynamic varobj can supply a display hint to the front end. The
33762 value comes directly from the Python pretty-printer object's
33763 @code{display_hint} method. @xref{Pretty Printing API}.
33764
33765 @item dynamic
33766 This attribute will be present and have the value @samp{1} if the
33767 varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
33768 then this attribute will not be present.
33769
33770 @end table
33771
33772 The result may have its own attributes:
33773
33774 @table @samp
33775 @item displayhint
33776 A dynamic varobj can supply a display hint to the front end. The
33777 value comes directly from the Python pretty-printer object's
33778 @code{display_hint} method. @xref{Pretty Printing API}.
33779
33780 @item has_more
33781 This is an integer attribute which is nonzero if there are children
33782 remaining after the end of the selected range.
33783 @end table
33784
33785 @subsubheading Example
33786
33787 @smallexample
33788 (gdb)
33789 -var-list-children n
33790 ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
33791 numchild=@var{n},type=@var{type}@},@r{(repeats N times)}]
33792 (gdb)
33793 -var-list-children --all-values n
33794 ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
33795 numchild=@var{n},value=@var{value},type=@var{type}@},@r{(repeats N times)}]
33796 @end smallexample
33797
33798
33799 @subheading The @code{-var-info-type} Command
33800 @findex -var-info-type
33801
33802 @subsubheading Synopsis
33803
33804 @smallexample
33805 -var-info-type @var{name}
33806 @end smallexample
33807
33808 Returns the type of the specified variable @var{name}. The type is
33809 returned as a string in the same format as it is output by the
33810 @value{GDBN} CLI:
33811
33812 @smallexample
33813 type=@var{typename}
33814 @end smallexample
33815
33816
33817 @subheading The @code{-var-info-expression} Command
33818 @findex -var-info-expression
33819
33820 @subsubheading Synopsis
33821
33822 @smallexample
33823 -var-info-expression @var{name}
33824 @end smallexample
33825
33826 Returns a string that is suitable for presenting this
33827 variable object in user interface. The string is generally
33828 not valid expression in the current language, and cannot be evaluated.
33829
33830 For example, if @code{a} is an array, and variable object
33831 @code{A} was created for @code{a}, then we'll get this output:
33832
33833 @smallexample
33834 (gdb) -var-info-expression A.1
33835 ^done,lang="C",exp="1"
33836 @end smallexample
33837
33838 @noindent
33839 Here, the value of @code{lang} is the language name, which can be
33840 found in @ref{Supported Languages}.
33841
33842 Note that the output of the @code{-var-list-children} command also
33843 includes those expressions, so the @code{-var-info-expression} command
33844 is of limited use.
33845
33846 @subheading The @code{-var-info-path-expression} Command
33847 @findex -var-info-path-expression
33848
33849 @subsubheading Synopsis
33850
33851 @smallexample
33852 -var-info-path-expression @var{name}
33853 @end smallexample
33854
33855 Returns an expression that can be evaluated in the current
33856 context and will yield the same value that a variable object has.
33857 Compare this with the @code{-var-info-expression} command, which
33858 result can be used only for UI presentation. Typical use of
33859 the @code{-var-info-path-expression} command is creating a
33860 watchpoint from a variable object.
33861
33862 This command is currently not valid for children of a dynamic varobj,
33863 and will give an error when invoked on one.
33864
33865 For example, suppose @code{C} is a C@t{++} class, derived from class
33866 @code{Base}, and that the @code{Base} class has a member called
33867 @code{m_size}. Assume a variable @code{c} is has the type of
33868 @code{C} and a variable object @code{C} was created for variable
33869 @code{c}. Then, we'll get this output:
33870 @smallexample
33871 (gdb) -var-info-path-expression C.Base.public.m_size
33872 ^done,path_expr=((Base)c).m_size)
33873 @end smallexample
33874
33875 @subheading The @code{-var-show-attributes} Command
33876 @findex -var-show-attributes
33877
33878 @subsubheading Synopsis
33879
33880 @smallexample
33881 -var-show-attributes @var{name}
33882 @end smallexample
33883
33884 List attributes of the specified variable object @var{name}:
33885
33886 @smallexample
33887 status=@var{attr} [ ( ,@var{attr} )* ]
33888 @end smallexample
33889
33890 @noindent
33891 where @var{attr} is @code{@{ @{ editable | noneditable @} | TBD @}}.
33892
33893 @subheading The @code{-var-evaluate-expression} Command
33894 @findex -var-evaluate-expression
33895
33896 @subsubheading Synopsis
33897
33898 @smallexample
33899 -var-evaluate-expression [-f @var{format-spec}] @var{name}
33900 @end smallexample
33901
33902 Evaluates the expression that is represented by the specified variable
33903 object and returns its value as a string. The format of the string
33904 can be specified with the @samp{-f} option. The possible values of
33905 this option are the same as for @code{-var-set-format}
33906 (@pxref{-var-set-format}). If the @samp{-f} option is not specified,
33907 the current display format will be used. The current display format
33908 can be changed using the @code{-var-set-format} command.
33909
33910 @smallexample
33911 value=@var{value}
33912 @end smallexample
33913
33914 Note that one must invoke @code{-var-list-children} for a variable
33915 before the value of a child variable can be evaluated.
33916
33917 @subheading The @code{-var-assign} Command
33918 @findex -var-assign
33919
33920 @subsubheading Synopsis
33921
33922 @smallexample
33923 -var-assign @var{name} @var{expression}
33924 @end smallexample
33925
33926 Assigns the value of @var{expression} to the variable object specified
33927 by @var{name}. The object must be @samp{editable}. If the variable's
33928 value is altered by the assign, the variable will show up in any
33929 subsequent @code{-var-update} list.
33930
33931 @subsubheading Example
33932
33933 @smallexample
33934 (gdb)
33935 -var-assign var1 3
33936 ^done,value="3"
33937 (gdb)
33938 -var-update *
33939 ^done,changelist=[@{name="var1",in_scope="true",type_changed="false"@}]
33940 (gdb)
33941 @end smallexample
33942
33943 @subheading The @code{-var-update} Command
33944 @findex -var-update
33945
33946 @subsubheading Synopsis
33947
33948 @smallexample
33949 -var-update [@var{print-values}] @{@var{name} | "*"@}
33950 @end smallexample
33951
33952 Reevaluate the expressions corresponding to the variable object
33953 @var{name} and all its direct and indirect children, and return the
33954 list of variable objects whose values have changed; @var{name} must
33955 be a root variable object. Here, ``changed'' means that the result of
33956 @code{-var-evaluate-expression} before and after the
33957 @code{-var-update} is different. If @samp{*} is used as the variable
33958 object names, all existing variable objects are updated, except
33959 for frozen ones (@pxref{-var-set-frozen}). The option
33960 @var{print-values} determines whether both names and values, or just
33961 names are printed. The possible values of this option are the same
33962 as for @code{-var-list-children} (@pxref{-var-list-children}). It is
33963 recommended to use the @samp{--all-values} option, to reduce the
33964 number of MI commands needed on each program stop.
33965
33966 With the @samp{*} parameter, if a variable object is bound to a
33967 currently running thread, it will not be updated, without any
33968 diagnostic.
33969
33970 If @code{-var-set-update-range} was previously used on a varobj, then
33971 only the selected range of children will be reported.
33972
33973 @code{-var-update} reports all the changed varobjs in a tuple named
33974 @samp{changelist}.
33975
33976 Each item in the change list is itself a tuple holding:
33977
33978 @table @samp
33979 @item name
33980 The name of the varobj.
33981
33982 @item value
33983 If values were requested for this update, then this field will be
33984 present and will hold the value of the varobj.
33985
33986 @item in_scope
33987 @anchor{-var-update}
33988 This field is a string which may take one of three values:
33989
33990 @table @code
33991 @item "true"
33992 The variable object's current value is valid.
33993
33994 @item "false"
33995 The variable object does not currently hold a valid value but it may
33996 hold one in the future if its associated expression comes back into
33997 scope.
33998
33999 @item "invalid"
34000 The variable object no longer holds a valid value.
34001 This can occur when the executable file being debugged has changed,
34002 either through recompilation or by using the @value{GDBN} @code{file}
34003 command. The front end should normally choose to delete these variable
34004 objects.
34005 @end table
34006
34007 In the future new values may be added to this list so the front should
34008 be prepared for this possibility. @xref{GDB/MI Development and Front Ends, ,@sc{GDB/MI} Development and Front Ends}.
34009
34010 @item type_changed
34011 This is only present if the varobj is still valid. If the type
34012 changed, then this will be the string @samp{true}; otherwise it will
34013 be @samp{false}.
34014
34015 When a varobj's type changes, its children are also likely to have
34016 become incorrect. Therefore, the varobj's children are automatically
34017 deleted when this attribute is @samp{true}. Also, the varobj's update
34018 range, when set using the @code{-var-set-update-range} command, is
34019 unset.
34020
34021 @item new_type
34022 If the varobj's type changed, then this field will be present and will
34023 hold the new type.
34024
34025 @item new_num_children
34026 For a dynamic varobj, if the number of children changed, or if the
34027 type changed, this will be the new number of children.
34028
34029 The @samp{numchild} field in other varobj responses is generally not
34030 valid for a dynamic varobj -- it will show the number of children that
34031 @value{GDBN} knows about, but because dynamic varobjs lazily
34032 instantiate their children, this will not reflect the number of
34033 children which may be available.
34034
34035 The @samp{new_num_children} attribute only reports changes to the
34036 number of children known by @value{GDBN}. This is the only way to
34037 detect whether an update has removed children (which necessarily can
34038 only happen at the end of the update range).
34039
34040 @item displayhint
34041 The display hint, if any.
34042
34043 @item has_more
34044 This is an integer value, which will be 1 if there are more children
34045 available outside the varobj's update range.
34046
34047 @item dynamic
34048 This attribute will be present and have the value @samp{1} if the
34049 varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
34050 then this attribute will not be present.
34051
34052 @item new_children
34053 If new children were added to a dynamic varobj within the selected
34054 update range (as set by @code{-var-set-update-range}), then they will
34055 be listed in this attribute.
34056 @end table
34057
34058 @subsubheading Example
34059
34060 @smallexample
34061 (gdb)
34062 -var-assign var1 3
34063 ^done,value="3"
34064 (gdb)
34065 -var-update --all-values var1
34066 ^done,changelist=[@{name="var1",value="3",in_scope="true",
34067 type_changed="false"@}]
34068 (gdb)
34069 @end smallexample
34070
34071 @subheading The @code{-var-set-frozen} Command
34072 @findex -var-set-frozen
34073 @anchor{-var-set-frozen}
34074
34075 @subsubheading Synopsis
34076
34077 @smallexample
34078 -var-set-frozen @var{name} @var{flag}
34079 @end smallexample
34080
34081 Set the frozenness flag on the variable object @var{name}. The
34082 @var{flag} parameter should be either @samp{1} to make the variable
34083 frozen or @samp{0} to make it unfrozen. If a variable object is
34084 frozen, then neither itself, nor any of its children, are
34085 implicitly updated by @code{-var-update} of
34086 a parent variable or by @code{-var-update *}. Only
34087 @code{-var-update} of the variable itself will update its value and
34088 values of its children. After a variable object is unfrozen, it is
34089 implicitly updated by all subsequent @code{-var-update} operations.
34090 Unfreezing a variable does not update it, only subsequent
34091 @code{-var-update} does.
34092
34093 @subsubheading Example
34094
34095 @smallexample
34096 (gdb)
34097 -var-set-frozen V 1
34098 ^done
34099 (gdb)
34100 @end smallexample
34101
34102 @subheading The @code{-var-set-update-range} command
34103 @findex -var-set-update-range
34104 @anchor{-var-set-update-range}
34105
34106 @subsubheading Synopsis
34107
34108 @smallexample
34109 -var-set-update-range @var{name} @var{from} @var{to}
34110 @end smallexample
34111
34112 Set the range of children to be returned by future invocations of
34113 @code{-var-update}.
34114
34115 @var{from} and @var{to} indicate the range of children to report. If
34116 @var{from} or @var{to} is less than zero, the range is reset and all
34117 children will be reported. Otherwise, children starting at @var{from}
34118 (zero-based) and up to and excluding @var{to} will be reported.
34119
34120 @subsubheading Example
34121
34122 @smallexample
34123 (gdb)
34124 -var-set-update-range V 1 2
34125 ^done
34126 @end smallexample
34127
34128 @subheading The @code{-var-set-visualizer} command
34129 @findex -var-set-visualizer
34130 @anchor{-var-set-visualizer}
34131
34132 @subsubheading Synopsis
34133
34134 @smallexample
34135 -var-set-visualizer @var{name} @var{visualizer}
34136 @end smallexample
34137
34138 Set a visualizer for the variable object @var{name}.
34139
34140 @var{visualizer} is the visualizer to use. The special value
34141 @samp{None} means to disable any visualizer in use.
34142
34143 If not @samp{None}, @var{visualizer} must be a Python expression.
34144 This expression must evaluate to a callable object which accepts a
34145 single argument. @value{GDBN} will call this object with the value of
34146 the varobj @var{name} as an argument (this is done so that the same
34147 Python pretty-printing code can be used for both the CLI and MI).
34148 When called, this object must return an object which conforms to the
34149 pretty-printing interface (@pxref{Pretty Printing API}).
34150
34151 The pre-defined function @code{gdb.default_visualizer} may be used to
34152 select a visualizer by following the built-in process
34153 (@pxref{Selecting Pretty-Printers}). This is done automatically when
34154 a varobj is created, and so ordinarily is not needed.
34155
34156 This feature is only available if Python support is enabled. The MI
34157 command @code{-list-features} (@pxref{GDB/MI Support Commands})
34158 can be used to check this.
34159
34160 @subsubheading Example
34161
34162 Resetting the visualizer:
34163
34164 @smallexample
34165 (gdb)
34166 -var-set-visualizer V None
34167 ^done
34168 @end smallexample
34169
34170 Reselecting the default (type-based) visualizer:
34171
34172 @smallexample
34173 (gdb)
34174 -var-set-visualizer V gdb.default_visualizer
34175 ^done
34176 @end smallexample
34177
34178 Suppose @code{SomeClass} is a visualizer class. A lambda expression
34179 can be used to instantiate this class for a varobj:
34180
34181 @smallexample
34182 (gdb)
34183 -var-set-visualizer V "lambda val: SomeClass()"
34184 ^done
34185 @end smallexample
34186
34187 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34188 @node GDB/MI Data Manipulation
34189 @section @sc{gdb/mi} Data Manipulation
34190
34191 @cindex data manipulation, in @sc{gdb/mi}
34192 @cindex @sc{gdb/mi}, data manipulation
34193 This section describes the @sc{gdb/mi} commands that manipulate data:
34194 examine memory and registers, evaluate expressions, etc.
34195
34196 For details about what an addressable memory unit is,
34197 @pxref{addressable memory unit}.
34198
34199 @c REMOVED FROM THE INTERFACE.
34200 @c @subheading -data-assign
34201 @c Change the value of a program variable. Plenty of side effects.
34202 @c @subsubheading GDB Command
34203 @c set variable
34204 @c @subsubheading Example
34205 @c N.A.
34206
34207 @subheading The @code{-data-disassemble} Command
34208 @findex -data-disassemble
34209
34210 @subsubheading Synopsis
34211
34212 @smallexample
34213 -data-disassemble
34214 [ -s @var{start-addr} -e @var{end-addr} ]
34215 | [ -a @var{addr} ]
34216 | [ -f @var{filename} -l @var{linenum} [ -n @var{lines} ] ]
34217 -- @var{mode}
34218 @end smallexample
34219
34220 @noindent
34221 Where:
34222
34223 @table @samp
34224 @item @var{start-addr}
34225 is the beginning address (or @code{$pc})
34226 @item @var{end-addr}
34227 is the end address
34228 @item @var{addr}
34229 is an address anywhere within (or the name of) the function to
34230 disassemble. If an address is specified, the whole function
34231 surrounding that address will be disassembled. If a name is
34232 specified, the whole function with that name will be disassembled.
34233 @item @var{filename}
34234 is the name of the file to disassemble
34235 @item @var{linenum}
34236 is the line number to disassemble around
34237 @item @var{lines}
34238 is the number of disassembly lines to be produced. If it is -1,
34239 the whole function will be disassembled, in case no @var{end-addr} is
34240 specified. If @var{end-addr} is specified as a non-zero value, and
34241 @var{lines} is lower than the number of disassembly lines between
34242 @var{start-addr} and @var{end-addr}, only @var{lines} lines are
34243 displayed; if @var{lines} is higher than the number of lines between
34244 @var{start-addr} and @var{end-addr}, only the lines up to @var{end-addr}
34245 are displayed.
34246 @item @var{mode}
34247 is one of:
34248 @itemize @bullet
34249 @item 0 disassembly only
34250 @item 1 mixed source and disassembly (deprecated)
34251 @item 2 disassembly with raw opcodes
34252 @item 3 mixed source and disassembly with raw opcodes (deprecated)
34253 @item 4 mixed source and disassembly
34254 @item 5 mixed source and disassembly with raw opcodes
34255 @end itemize
34256
34257 Modes 1 and 3 are deprecated. The output is ``source centric''
34258 which hasn't proved useful in practice.
34259 @xref{Machine Code}, for a discussion of the difference between
34260 @code{/m} and @code{/s} output of the @code{disassemble} command.
34261 @end table
34262
34263 @subsubheading Result
34264
34265 The result of the @code{-data-disassemble} command will be a list named
34266 @samp{asm_insns}, the contents of this list depend on the @var{mode}
34267 used with the @code{-data-disassemble} command.
34268
34269 For modes 0 and 2 the @samp{asm_insns} list contains tuples with the
34270 following fields:
34271
34272 @table @code
34273 @item address
34274 The address at which this instruction was disassembled.
34275
34276 @item func-name
34277 The name of the function this instruction is within.
34278
34279 @item offset
34280 The decimal offset in bytes from the start of @samp{func-name}.
34281
34282 @item inst
34283 The text disassembly for this @samp{address}.
34284
34285 @item opcodes
34286 This field is only present for modes 2, 3 and 5. This contains the raw opcode
34287 bytes for the @samp{inst} field.
34288
34289 @end table
34290
34291 For modes 1, 3, 4 and 5 the @samp{asm_insns} list contains tuples named
34292 @samp{src_and_asm_line}, each of which has the following fields:
34293
34294 @table @code
34295 @item line
34296 The line number within @samp{file}.
34297
34298 @item file
34299 The file name from the compilation unit. This might be an absolute
34300 file name or a relative file name depending on the compile command
34301 used.
34302
34303 @item fullname
34304 Absolute file name of @samp{file}. It is converted to a canonical form
34305 using the source file search path
34306 (@pxref{Source Path, ,Specifying Source Directories})
34307 and after resolving all the symbolic links.
34308
34309 If the source file is not found this field will contain the path as
34310 present in the debug information.
34311
34312 @item line_asm_insn
34313 This is a list of tuples containing the disassembly for @samp{line} in
34314 @samp{file}. The fields of each tuple are the same as for
34315 @code{-data-disassemble} in @var{mode} 0 and 2, so @samp{address},
34316 @samp{func-name}, @samp{offset}, @samp{inst}, and optionally
34317 @samp{opcodes}.
34318
34319 @end table
34320
34321 Note that whatever included in the @samp{inst} field, is not
34322 manipulated directly by @sc{gdb/mi}, i.e., it is not possible to
34323 adjust its format.
34324
34325 @subsubheading @value{GDBN} Command
34326
34327 The corresponding @value{GDBN} command is @samp{disassemble}.
34328
34329 @subsubheading Example
34330
34331 Disassemble from the current value of @code{$pc} to @code{$pc + 20}:
34332
34333 @smallexample
34334 (gdb)
34335 -data-disassemble -s $pc -e "$pc + 20" -- 0
34336 ^done,
34337 asm_insns=[
34338 @{address="0x000107c0",func-name="main",offset="4",
34339 inst="mov 2, %o0"@},
34340 @{address="0x000107c4",func-name="main",offset="8",
34341 inst="sethi %hi(0x11800), %o2"@},
34342 @{address="0x000107c8",func-name="main",offset="12",
34343 inst="or %o2, 0x140, %o1\t! 0x11940 <_lib_version+8>"@},
34344 @{address="0x000107cc",func-name="main",offset="16",
34345 inst="sethi %hi(0x11800), %o2"@},
34346 @{address="0x000107d0",func-name="main",offset="20",
34347 inst="or %o2, 0x168, %o4\t! 0x11968 <_lib_version+48>"@}]
34348 (gdb)
34349 @end smallexample
34350
34351 Disassemble the whole @code{main} function. Line 32 is part of
34352 @code{main}.
34353
34354 @smallexample
34355 -data-disassemble -f basics.c -l 32 -- 0
34356 ^done,asm_insns=[
34357 @{address="0x000107bc",func-name="main",offset="0",
34358 inst="save %sp, -112, %sp"@},
34359 @{address="0x000107c0",func-name="main",offset="4",
34360 inst="mov 2, %o0"@},
34361 @{address="0x000107c4",func-name="main",offset="8",
34362 inst="sethi %hi(0x11800), %o2"@},
34363 [@dots{}]
34364 @{address="0x0001081c",func-name="main",offset="96",inst="ret "@},
34365 @{address="0x00010820",func-name="main",offset="100",inst="restore "@}]
34366 (gdb)
34367 @end smallexample
34368
34369 Disassemble 3 instructions from the start of @code{main}:
34370
34371 @smallexample
34372 (gdb)
34373 -data-disassemble -f basics.c -l 32 -n 3 -- 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 (gdb)
34382 @end smallexample
34383
34384 Disassemble 3 instructions from the start of @code{main} in mixed mode:
34385
34386 @smallexample
34387 (gdb)
34388 -data-disassemble -f basics.c -l 32 -n 3 -- 1
34389 ^done,asm_insns=[
34390 src_and_asm_line=@{line="31",
34391 file="../../../src/gdb/testsuite/gdb.mi/basics.c",
34392 fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
34393 line_asm_insn=[@{address="0x000107bc",
34394 func-name="main",offset="0",inst="save %sp, -112, %sp"@}]@},
34395 src_and_asm_line=@{line="32",
34396 file="../../../src/gdb/testsuite/gdb.mi/basics.c",
34397 fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
34398 line_asm_insn=[@{address="0x000107c0",
34399 func-name="main",offset="4",inst="mov 2, %o0"@},
34400 @{address="0x000107c4",func-name="main",offset="8",
34401 inst="sethi %hi(0x11800), %o2"@}]@}]
34402 (gdb)
34403 @end smallexample
34404
34405
34406 @subheading The @code{-data-evaluate-expression} Command
34407 @findex -data-evaluate-expression
34408
34409 @subsubheading Synopsis
34410
34411 @smallexample
34412 -data-evaluate-expression @var{expr}
34413 @end smallexample
34414
34415 Evaluate @var{expr} as an expression. The expression could contain an
34416 inferior function call. The function call will execute synchronously.
34417 If the expression contains spaces, it must be enclosed in double quotes.
34418
34419 @subsubheading @value{GDBN} Command
34420
34421 The corresponding @value{GDBN} commands are @samp{print}, @samp{output}, and
34422 @samp{call}. In @code{gdbtk} only, there's a corresponding
34423 @samp{gdb_eval} command.
34424
34425 @subsubheading Example
34426
34427 In the following example, the numbers that precede the commands are the
34428 @dfn{tokens} described in @ref{GDB/MI Command Syntax, ,@sc{gdb/mi}
34429 Command Syntax}. Notice how @sc{gdb/mi} returns the same tokens in its
34430 output.
34431
34432 @smallexample
34433 211-data-evaluate-expression A
34434 211^done,value="1"
34435 (gdb)
34436 311-data-evaluate-expression &A
34437 311^done,value="0xefffeb7c"
34438 (gdb)
34439 411-data-evaluate-expression A+3
34440 411^done,value="4"
34441 (gdb)
34442 511-data-evaluate-expression "A + 3"
34443 511^done,value="4"
34444 (gdb)
34445 @end smallexample
34446
34447
34448 @subheading The @code{-data-list-changed-registers} Command
34449 @findex -data-list-changed-registers
34450
34451 @subsubheading Synopsis
34452
34453 @smallexample
34454 -data-list-changed-registers
34455 @end smallexample
34456
34457 Display a list of the registers that have changed.
34458
34459 @subsubheading @value{GDBN} Command
34460
34461 @value{GDBN} doesn't have a direct analog for this command; @code{gdbtk}
34462 has the corresponding command @samp{gdb_changed_register_list}.
34463
34464 @subsubheading Example
34465
34466 On a PPC MBX board:
34467
34468 @smallexample
34469 (gdb)
34470 -exec-continue
34471 ^running
34472
34473 (gdb)
34474 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",frame=@{
34475 func="main",args=[],file="try.c",fullname="/home/foo/bar/try.c",
34476 line="5",arch="powerpc"@}
34477 (gdb)
34478 -data-list-changed-registers
34479 ^done,changed-registers=["0","1","2","4","5","6","7","8","9",
34480 "10","11","13","14","15","16","17","18","19","20","21","22","23",
34481 "24","25","26","27","28","30","31","64","65","66","67","69"]
34482 (gdb)
34483 @end smallexample
34484
34485
34486 @subheading The @code{-data-list-register-names} Command
34487 @findex -data-list-register-names
34488
34489 @subsubheading Synopsis
34490
34491 @smallexample
34492 -data-list-register-names [ ( @var{regno} )+ ]
34493 @end smallexample
34494
34495 Show a list of register names for the current target. If no arguments
34496 are given, it shows a list of the names of all the registers. If
34497 integer numbers are given as arguments, it will print a list of the
34498 names of the registers corresponding to the arguments. To ensure
34499 consistency between a register name and its number, the output list may
34500 include empty register names.
34501
34502 @subsubheading @value{GDBN} Command
34503
34504 @value{GDBN} does not have a command which corresponds to
34505 @samp{-data-list-register-names}. In @code{gdbtk} there is a
34506 corresponding command @samp{gdb_regnames}.
34507
34508 @subsubheading Example
34509
34510 For the PPC MBX board:
34511 @smallexample
34512 (gdb)
34513 -data-list-register-names
34514 ^done,register-names=["r0","r1","r2","r3","r4","r5","r6","r7",
34515 "r8","r9","r10","r11","r12","r13","r14","r15","r16","r17","r18",
34516 "r19","r20","r21","r22","r23","r24","r25","r26","r27","r28","r29",
34517 "r30","r31","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9",
34518 "f10","f11","f12","f13","f14","f15","f16","f17","f18","f19","f20",
34519 "f21","f22","f23","f24","f25","f26","f27","f28","f29","f30","f31",
34520 "", "pc","ps","cr","lr","ctr","xer"]
34521 (gdb)
34522 -data-list-register-names 1 2 3
34523 ^done,register-names=["r1","r2","r3"]
34524 (gdb)
34525 @end smallexample
34526
34527 @subheading The @code{-data-list-register-values} Command
34528 @findex -data-list-register-values
34529
34530 @subsubheading Synopsis
34531
34532 @smallexample
34533 -data-list-register-values
34534 [ @code{--skip-unavailable} ] @var{fmt} [ ( @var{regno} )*]
34535 @end smallexample
34536
34537 Display the registers' contents. The format according to which the
34538 registers' contents are to be returned is given by @var{fmt}, followed
34539 by an optional list of numbers specifying the registers to display. A
34540 missing list of numbers indicates that the contents of all the
34541 registers must be returned. The @code{--skip-unavailable} option
34542 indicates that only the available registers are to be returned.
34543
34544 Allowed formats for @var{fmt} are:
34545
34546 @table @code
34547 @item x
34548 Hexadecimal
34549 @item o
34550 Octal
34551 @item t
34552 Binary
34553 @item d
34554 Decimal
34555 @item r
34556 Raw
34557 @item N
34558 Natural
34559 @end table
34560
34561 @subsubheading @value{GDBN} Command
34562
34563 The corresponding @value{GDBN} commands are @samp{info reg}, @samp{info
34564 all-reg}, and (in @code{gdbtk}) @samp{gdb_fetch_registers}.
34565
34566 @subsubheading Example
34567
34568 For a PPC MBX board (note: line breaks are for readability only, they
34569 don't appear in the actual output):
34570
34571 @smallexample
34572 (gdb)
34573 -data-list-register-values r 64 65
34574 ^done,register-values=[@{number="64",value="0xfe00a300"@},
34575 @{number="65",value="0x00029002"@}]
34576 (gdb)
34577 -data-list-register-values x
34578 ^done,register-values=[@{number="0",value="0xfe0043c8"@},
34579 @{number="1",value="0x3fff88"@},@{number="2",value="0xfffffffe"@},
34580 @{number="3",value="0x0"@},@{number="4",value="0xa"@},
34581 @{number="5",value="0x3fff68"@},@{number="6",value="0x3fff58"@},
34582 @{number="7",value="0xfe011e98"@},@{number="8",value="0x2"@},
34583 @{number="9",value="0xfa202820"@},@{number="10",value="0xfa202808"@},
34584 @{number="11",value="0x1"@},@{number="12",value="0x0"@},
34585 @{number="13",value="0x4544"@},@{number="14",value="0xffdfffff"@},
34586 @{number="15",value="0xffffffff"@},@{number="16",value="0xfffffeff"@},
34587 @{number="17",value="0xefffffed"@},@{number="18",value="0xfffffffe"@},
34588 @{number="19",value="0xffffffff"@},@{number="20",value="0xffffffff"@},
34589 @{number="21",value="0xffffffff"@},@{number="22",value="0xfffffff7"@},
34590 @{number="23",value="0xffffffff"@},@{number="24",value="0xffffffff"@},
34591 @{number="25",value="0xffffffff"@},@{number="26",value="0xfffffffb"@},
34592 @{number="27",value="0xffffffff"@},@{number="28",value="0xf7bfffff"@},
34593 @{number="29",value="0x0"@},@{number="30",value="0xfe010000"@},
34594 @{number="31",value="0x0"@},@{number="32",value="0x0"@},
34595 @{number="33",value="0x0"@},@{number="34",value="0x0"@},
34596 @{number="35",value="0x0"@},@{number="36",value="0x0"@},
34597 @{number="37",value="0x0"@},@{number="38",value="0x0"@},
34598 @{number="39",value="0x0"@},@{number="40",value="0x0"@},
34599 @{number="41",value="0x0"@},@{number="42",value="0x0"@},
34600 @{number="43",value="0x0"@},@{number="44",value="0x0"@},
34601 @{number="45",value="0x0"@},@{number="46",value="0x0"@},
34602 @{number="47",value="0x0"@},@{number="48",value="0x0"@},
34603 @{number="49",value="0x0"@},@{number="50",value="0x0"@},
34604 @{number="51",value="0x0"@},@{number="52",value="0x0"@},
34605 @{number="53",value="0x0"@},@{number="54",value="0x0"@},
34606 @{number="55",value="0x0"@},@{number="56",value="0x0"@},
34607 @{number="57",value="0x0"@},@{number="58",value="0x0"@},
34608 @{number="59",value="0x0"@},@{number="60",value="0x0"@},
34609 @{number="61",value="0x0"@},@{number="62",value="0x0"@},
34610 @{number="63",value="0x0"@},@{number="64",value="0xfe00a300"@},
34611 @{number="65",value="0x29002"@},@{number="66",value="0x202f04b5"@},
34612 @{number="67",value="0xfe0043b0"@},@{number="68",value="0xfe00b3e4"@},
34613 @{number="69",value="0x20002b03"@}]
34614 (gdb)
34615 @end smallexample
34616
34617
34618 @subheading The @code{-data-read-memory} Command
34619 @findex -data-read-memory
34620
34621 This command is deprecated, use @code{-data-read-memory-bytes} instead.
34622
34623 @subsubheading Synopsis
34624
34625 @smallexample
34626 -data-read-memory [ -o @var{byte-offset} ]
34627 @var{address} @var{word-format} @var{word-size}
34628 @var{nr-rows} @var{nr-cols} [ @var{aschar} ]
34629 @end smallexample
34630
34631 @noindent
34632 where:
34633
34634 @table @samp
34635 @item @var{address}
34636 An expression specifying the address of the first memory word to be
34637 read. Complex expressions containing embedded white space should be
34638 quoted using the C convention.
34639
34640 @item @var{word-format}
34641 The format to be used to print the memory words. The notation is the
34642 same as for @value{GDBN}'s @code{print} command (@pxref{Output Formats,
34643 ,Output Formats}).
34644
34645 @item @var{word-size}
34646 The size of each memory word in bytes.
34647
34648 @item @var{nr-rows}
34649 The number of rows in the output table.
34650
34651 @item @var{nr-cols}
34652 The number of columns in the output table.
34653
34654 @item @var{aschar}
34655 If present, indicates that each row should include an @sc{ascii} dump. The
34656 value of @var{aschar} is used as a padding character when a byte is not a
34657 member of the printable @sc{ascii} character set (printable @sc{ascii}
34658 characters are those whose code is between 32 and 126, inclusively).
34659
34660 @item @var{byte-offset}
34661 An offset to add to the @var{address} before fetching memory.
34662 @end table
34663
34664 This command displays memory contents as a table of @var{nr-rows} by
34665 @var{nr-cols} words, each word being @var{word-size} bytes. In total,
34666 @code{@var{nr-rows} * @var{nr-cols} * @var{word-size}} bytes are read
34667 (returned as @samp{total-bytes}). Should less than the requested number
34668 of bytes be returned by the target, the missing words are identified
34669 using @samp{N/A}. The number of bytes read from the target is returned
34670 in @samp{nr-bytes} and the starting address used to read memory in
34671 @samp{addr}.
34672
34673 The address of the next/previous row or page is available in
34674 @samp{next-row} and @samp{prev-row}, @samp{next-page} and
34675 @samp{prev-page}.
34676
34677 @subsubheading @value{GDBN} Command
34678
34679 The corresponding @value{GDBN} command is @samp{x}. @code{gdbtk} has
34680 @samp{gdb_get_mem} memory read command.
34681
34682 @subsubheading Example
34683
34684 Read six bytes of memory starting at @code{bytes+6} but then offset by
34685 @code{-6} bytes. Format as three rows of two columns. One byte per
34686 word. Display each word in hex.
34687
34688 @smallexample
34689 (gdb)
34690 9-data-read-memory -o -6 -- bytes+6 x 1 3 2
34691 9^done,addr="0x00001390",nr-bytes="6",total-bytes="6",
34692 next-row="0x00001396",prev-row="0x0000138e",next-page="0x00001396",
34693 prev-page="0x0000138a",memory=[
34694 @{addr="0x00001390",data=["0x00","0x01"]@},
34695 @{addr="0x00001392",data=["0x02","0x03"]@},
34696 @{addr="0x00001394",data=["0x04","0x05"]@}]
34697 (gdb)
34698 @end smallexample
34699
34700 Read two bytes of memory starting at address @code{shorts + 64} and
34701 display as a single word formatted in decimal.
34702
34703 @smallexample
34704 (gdb)
34705 5-data-read-memory shorts+64 d 2 1 1
34706 5^done,addr="0x00001510",nr-bytes="2",total-bytes="2",
34707 next-row="0x00001512",prev-row="0x0000150e",
34708 next-page="0x00001512",prev-page="0x0000150e",memory=[
34709 @{addr="0x00001510",data=["128"]@}]
34710 (gdb)
34711 @end smallexample
34712
34713 Read thirty two bytes of memory starting at @code{bytes+16} and format
34714 as eight rows of four columns. Include a string encoding with @samp{x}
34715 used as the non-printable character.
34716
34717 @smallexample
34718 (gdb)
34719 4-data-read-memory bytes+16 x 1 8 4 x
34720 4^done,addr="0x000013a0",nr-bytes="32",total-bytes="32",
34721 next-row="0x000013c0",prev-row="0x0000139c",
34722 next-page="0x000013c0",prev-page="0x00001380",memory=[
34723 @{addr="0x000013a0",data=["0x10","0x11","0x12","0x13"],ascii="xxxx"@},
34724 @{addr="0x000013a4",data=["0x14","0x15","0x16","0x17"],ascii="xxxx"@},
34725 @{addr="0x000013a8",data=["0x18","0x19","0x1a","0x1b"],ascii="xxxx"@},
34726 @{addr="0x000013ac",data=["0x1c","0x1d","0x1e","0x1f"],ascii="xxxx"@},
34727 @{addr="0x000013b0",data=["0x20","0x21","0x22","0x23"],ascii=" !\"#"@},
34728 @{addr="0x000013b4",data=["0x24","0x25","0x26","0x27"],ascii="$%&'"@},
34729 @{addr="0x000013b8",data=["0x28","0x29","0x2a","0x2b"],ascii="()*+"@},
34730 @{addr="0x000013bc",data=["0x2c","0x2d","0x2e","0x2f"],ascii=",-./"@}]
34731 (gdb)
34732 @end smallexample
34733
34734 @subheading The @code{-data-read-memory-bytes} Command
34735 @findex -data-read-memory-bytes
34736
34737 @subsubheading Synopsis
34738
34739 @smallexample
34740 -data-read-memory-bytes [ -o @var{offset} ]
34741 @var{address} @var{count}
34742 @end smallexample
34743
34744 @noindent
34745 where:
34746
34747 @table @samp
34748 @item @var{address}
34749 An expression specifying the address of the first addressable memory unit
34750 to be read. Complex expressions containing embedded white space should be
34751 quoted using the C convention.
34752
34753 @item @var{count}
34754 The number of addressable memory units to read. This should be an integer
34755 literal.
34756
34757 @item @var{offset}
34758 The offset relative to @var{address} at which to start reading. This
34759 should be an integer literal. This option is provided so that a frontend
34760 is not required to first evaluate address and then perform address
34761 arithmetics itself.
34762
34763 @end table
34764
34765 This command attempts to read all accessible memory regions in the
34766 specified range. First, all regions marked as unreadable in the memory
34767 map (if one is defined) will be skipped. @xref{Memory Region
34768 Attributes}. Second, @value{GDBN} will attempt to read the remaining
34769 regions. For each one, if reading full region results in an errors,
34770 @value{GDBN} will try to read a subset of the region.
34771
34772 In general, every single memory unit in the region may be readable or not,
34773 and the only way to read every readable unit is to try a read at
34774 every address, which is not practical. Therefore, @value{GDBN} will
34775 attempt to read all accessible memory units at either beginning or the end
34776 of the region, using a binary division scheme. This heuristic works
34777 well for reading across a memory map boundary. Note that if a region
34778 has a readable range that is neither at the beginning or the end,
34779 @value{GDBN} will not read it.
34780
34781 The result record (@pxref{GDB/MI Result Records}) that is output of
34782 the command includes a field named @samp{memory} whose content is a
34783 list of tuples. Each tuple represent a successfully read memory block
34784 and has the following fields:
34785
34786 @table @code
34787 @item begin
34788 The start address of the memory block, as hexadecimal literal.
34789
34790 @item end
34791 The end address of the memory block, as hexadecimal literal.
34792
34793 @item offset
34794 The offset of the memory block, as hexadecimal literal, relative to
34795 the start address passed to @code{-data-read-memory-bytes}.
34796
34797 @item contents
34798 The contents of the memory block, in hex.
34799
34800 @end table
34801
34802
34803
34804 @subsubheading @value{GDBN} Command
34805
34806 The corresponding @value{GDBN} command is @samp{x}.
34807
34808 @subsubheading Example
34809
34810 @smallexample
34811 (gdb)
34812 -data-read-memory-bytes &a 10
34813 ^done,memory=[@{begin="0xbffff154",offset="0x00000000",
34814 end="0xbffff15e",
34815 contents="01000000020000000300"@}]
34816 (gdb)
34817 @end smallexample
34818
34819
34820 @subheading The @code{-data-write-memory-bytes} Command
34821 @findex -data-write-memory-bytes
34822
34823 @subsubheading Synopsis
34824
34825 @smallexample
34826 -data-write-memory-bytes @var{address} @var{contents}
34827 -data-write-memory-bytes @var{address} @var{contents} @r{[}@var{count}@r{]}
34828 @end smallexample
34829
34830 @noindent
34831 where:
34832
34833 @table @samp
34834 @item @var{address}
34835 An expression specifying the address of the first addressable memory unit
34836 to be written. Complex expressions containing embedded white space should
34837 be quoted using the C convention.
34838
34839 @item @var{contents}
34840 The hex-encoded data to write. It is an error if @var{contents} does
34841 not represent an integral number of addressable memory units.
34842
34843 @item @var{count}
34844 Optional argument indicating the number of addressable memory units to be
34845 written. If @var{count} is greater than @var{contents}' length,
34846 @value{GDBN} will repeatedly write @var{contents} until it fills
34847 @var{count} memory units.
34848
34849 @end table
34850
34851 @subsubheading @value{GDBN} Command
34852
34853 There's no corresponding @value{GDBN} command.
34854
34855 @subsubheading Example
34856
34857 @smallexample
34858 (gdb)
34859 -data-write-memory-bytes &a "aabbccdd"
34860 ^done
34861 (gdb)
34862 @end smallexample
34863
34864 @smallexample
34865 (gdb)
34866 -data-write-memory-bytes &a "aabbccdd" 16e
34867 ^done
34868 (gdb)
34869 @end smallexample
34870
34871 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34872 @node GDB/MI Tracepoint Commands
34873 @section @sc{gdb/mi} Tracepoint Commands
34874
34875 The commands defined in this section implement MI support for
34876 tracepoints. For detailed introduction, see @ref{Tracepoints}.
34877
34878 @subheading The @code{-trace-find} Command
34879 @findex -trace-find
34880
34881 @subsubheading Synopsis
34882
34883 @smallexample
34884 -trace-find @var{mode} [@var{parameters}@dots{}]
34885 @end smallexample
34886
34887 Find a trace frame using criteria defined by @var{mode} and
34888 @var{parameters}. The following table lists permissible
34889 modes and their parameters. For details of operation, see @ref{tfind}.
34890
34891 @table @samp
34892
34893 @item none
34894 No parameters are required. Stops examining trace frames.
34895
34896 @item frame-number
34897 An integer is required as parameter. Selects tracepoint frame with
34898 that index.
34899
34900 @item tracepoint-number
34901 An integer is required as parameter. Finds next
34902 trace frame that corresponds to tracepoint with the specified number.
34903
34904 @item pc
34905 An address is required as parameter. Finds
34906 next trace frame that corresponds to any tracepoint at the specified
34907 address.
34908
34909 @item pc-inside-range
34910 Two addresses are required as parameters. Finds next trace
34911 frame that corresponds to a tracepoint at an address inside the
34912 specified range. Both bounds are considered to be inside the range.
34913
34914 @item pc-outside-range
34915 Two addresses are required as parameters. Finds
34916 next trace frame that corresponds to a tracepoint at an address outside
34917 the specified range. Both bounds are considered to be inside the range.
34918
34919 @item line
34920 Line specification is required as parameter. @xref{Specify Location}.
34921 Finds next trace frame that corresponds to a tracepoint at
34922 the specified location.
34923
34924 @end table
34925
34926 If @samp{none} was passed as @var{mode}, the response does not
34927 have fields. Otherwise, the response may have the following fields:
34928
34929 @table @samp
34930 @item found
34931 This field has either @samp{0} or @samp{1} as the value, depending
34932 on whether a matching tracepoint was found.
34933
34934 @item traceframe
34935 The index of the found traceframe. This field is present iff
34936 the @samp{found} field has value of @samp{1}.
34937
34938 @item tracepoint
34939 The index of the found tracepoint. This field is present iff
34940 the @samp{found} field has value of @samp{1}.
34941
34942 @item frame
34943 The information about the frame corresponding to the found trace
34944 frame. This field is present only if a trace frame was found.
34945 @xref{GDB/MI Frame Information}, for description of this field.
34946
34947 @end table
34948
34949 @subsubheading @value{GDBN} Command
34950
34951 The corresponding @value{GDBN} command is @samp{tfind}.
34952
34953 @subheading -trace-define-variable
34954 @findex -trace-define-variable
34955
34956 @subsubheading Synopsis
34957
34958 @smallexample
34959 -trace-define-variable @var{name} [ @var{value} ]
34960 @end smallexample
34961
34962 Create trace variable @var{name} if it does not exist. If
34963 @var{value} is specified, sets the initial value of the specified
34964 trace variable to that value. Note that the @var{name} should start
34965 with the @samp{$} character.
34966
34967 @subsubheading @value{GDBN} Command
34968
34969 The corresponding @value{GDBN} command is @samp{tvariable}.
34970
34971 @subheading The @code{-trace-frame-collected} Command
34972 @findex -trace-frame-collected
34973
34974 @subsubheading Synopsis
34975
34976 @smallexample
34977 -trace-frame-collected
34978 [--var-print-values @var{var_pval}]
34979 [--comp-print-values @var{comp_pval}]
34980 [--registers-format @var{regformat}]
34981 [--memory-contents]
34982 @end smallexample
34983
34984 This command returns the set of collected objects, register names,
34985 trace state variable names, memory ranges and computed expressions
34986 that have been collected at a particular trace frame. The optional
34987 parameters to the command affect the output format in different ways.
34988 See the output description table below for more details.
34989
34990 The reported names can be used in the normal manner to create
34991 varobjs and inspect the objects themselves. The items returned by
34992 this command are categorized so that it is clear which is a variable,
34993 which is a register, which is a trace state variable, which is a
34994 memory range and which is a computed expression.
34995
34996 For instance, if the actions were
34997 @smallexample
34998 collect myVar, myArray[myIndex], myObj.field, myPtr->field, myCount + 2
34999 collect *(int*)0xaf02bef0@@40
35000 @end smallexample
35001
35002 @noindent
35003 the object collected in its entirety would be @code{myVar}. The
35004 object @code{myArray} would be partially collected, because only the
35005 element at index @code{myIndex} would be collected. The remaining
35006 objects would be computed expressions.
35007
35008 An example output would be:
35009
35010 @smallexample
35011 (gdb)
35012 -trace-frame-collected
35013 ^done,
35014 explicit-variables=[@{name="myVar",value="1"@}],
35015 computed-expressions=[@{name="myArray[myIndex]",value="0"@},
35016 @{name="myObj.field",value="0"@},
35017 @{name="myPtr->field",value="1"@},
35018 @{name="myCount + 2",value="3"@},
35019 @{name="$tvar1 + 1",value="43970027"@}],
35020 registers=[@{number="0",value="0x7fe2c6e79ec8"@},
35021 @{number="1",value="0x0"@},
35022 @{number="2",value="0x4"@},
35023 ...
35024 @{number="125",value="0x0"@}],
35025 tvars=[@{name="$tvar1",current="43970026"@}],
35026 memory=[@{address="0x0000000000602264",length="4"@},
35027 @{address="0x0000000000615bc0",length="4"@}]
35028 (gdb)
35029 @end smallexample
35030
35031 Where:
35032
35033 @table @code
35034 @item explicit-variables
35035 The set of objects that have been collected in their entirety (as
35036 opposed to collecting just a few elements of an array or a few struct
35037 members). For each object, its name and value are printed.
35038 The @code{--var-print-values} option affects how or whether the value
35039 field is output. If @var{var_pval} is 0, then print only the names;
35040 if it is 1, print also their values; and if it is 2, print the name,
35041 type and value for simple data types, and the name and type for
35042 arrays, structures and unions.
35043
35044 @item computed-expressions
35045 The set of computed expressions that have been collected at the
35046 current trace frame. The @code{--comp-print-values} option affects
35047 this set like the @code{--var-print-values} option affects the
35048 @code{explicit-variables} set. See above.
35049
35050 @item registers
35051 The registers that have been collected at the current trace frame.
35052 For each register collected, the name and current value are returned.
35053 The value is formatted according to the @code{--registers-format}
35054 option. See the @command{-data-list-register-values} command for a
35055 list of the allowed formats. The default is @samp{x}.
35056
35057 @item tvars
35058 The trace state variables that have been collected at the current
35059 trace frame. For each trace state variable collected, the name and
35060 current value are returned.
35061
35062 @item memory
35063 The set of memory ranges that have been collected at the current trace
35064 frame. Its content is a list of tuples. Each tuple represents a
35065 collected memory range and has the following fields:
35066
35067 @table @code
35068 @item address
35069 The start address of the memory range, as hexadecimal literal.
35070
35071 @item length
35072 The length of the memory range, as decimal literal.
35073
35074 @item contents
35075 The contents of the memory block, in hex. This field is only present
35076 if the @code{--memory-contents} option is specified.
35077
35078 @end table
35079
35080 @end table
35081
35082 @subsubheading @value{GDBN} Command
35083
35084 There is no corresponding @value{GDBN} command.
35085
35086 @subsubheading Example
35087
35088 @subheading -trace-list-variables
35089 @findex -trace-list-variables
35090
35091 @subsubheading Synopsis
35092
35093 @smallexample
35094 -trace-list-variables
35095 @end smallexample
35096
35097 Return a table of all defined trace variables. Each element of the
35098 table has the following fields:
35099
35100 @table @samp
35101 @item name
35102 The name of the trace variable. This field is always present.
35103
35104 @item initial
35105 The initial value. This is a 64-bit signed integer. This
35106 field is always present.
35107
35108 @item current
35109 The value the trace variable has at the moment. This is a 64-bit
35110 signed integer. This field is absent iff current value is
35111 not defined, for example if the trace was never run, or is
35112 presently running.
35113
35114 @end table
35115
35116 @subsubheading @value{GDBN} Command
35117
35118 The corresponding @value{GDBN} command is @samp{tvariables}.
35119
35120 @subsubheading Example
35121
35122 @smallexample
35123 (gdb)
35124 -trace-list-variables
35125 ^done,trace-variables=@{nr_rows="1",nr_cols="3",
35126 hdr=[@{width="15",alignment="-1",col_name="name",colhdr="Name"@},
35127 @{width="11",alignment="-1",col_name="initial",colhdr="Initial"@},
35128 @{width="11",alignment="-1",col_name="current",colhdr="Current"@}],
35129 body=[variable=@{name="$trace_timestamp",initial="0"@}
35130 variable=@{name="$foo",initial="10",current="15"@}]@}
35131 (gdb)
35132 @end smallexample
35133
35134 @subheading -trace-save
35135 @findex -trace-save
35136
35137 @subsubheading Synopsis
35138
35139 @smallexample
35140 -trace-save [ -r ] [ -ctf ] @var{filename}
35141 @end smallexample
35142
35143 Saves the collected trace data to @var{filename}. Without the
35144 @samp{-r} option, the data is downloaded from the target and saved
35145 in a local file. With the @samp{-r} option the target is asked
35146 to perform the save.
35147
35148 By default, this command will save the trace in the tfile format. You can
35149 supply the optional @samp{-ctf} argument to save it the CTF format. See
35150 @ref{Trace Files} for more information about CTF.
35151
35152 @subsubheading @value{GDBN} Command
35153
35154 The corresponding @value{GDBN} command is @samp{tsave}.
35155
35156
35157 @subheading -trace-start
35158 @findex -trace-start
35159
35160 @subsubheading Synopsis
35161
35162 @smallexample
35163 -trace-start
35164 @end smallexample
35165
35166 Starts a tracing experiment. The result of this command does not
35167 have any fields.
35168
35169 @subsubheading @value{GDBN} Command
35170
35171 The corresponding @value{GDBN} command is @samp{tstart}.
35172
35173 @subheading -trace-status
35174 @findex -trace-status
35175
35176 @subsubheading Synopsis
35177
35178 @smallexample
35179 -trace-status
35180 @end smallexample
35181
35182 Obtains the status of a tracing experiment. The result may include
35183 the following fields:
35184
35185 @table @samp
35186
35187 @item supported
35188 May have a value of either @samp{0}, when no tracing operations are
35189 supported, @samp{1}, when all tracing operations are supported, or
35190 @samp{file} when examining trace file. In the latter case, examining
35191 of trace frame is possible but new tracing experiement cannot be
35192 started. This field is always present.
35193
35194 @item running
35195 May have a value of either @samp{0} or @samp{1} depending on whether
35196 tracing experiement is in progress on target. This field is present
35197 if @samp{supported} field is not @samp{0}.
35198
35199 @item stop-reason
35200 Report the reason why the tracing was stopped last time. This field
35201 may be absent iff tracing was never stopped on target yet. The
35202 value of @samp{request} means the tracing was stopped as result of
35203 the @code{-trace-stop} command. The value of @samp{overflow} means
35204 the tracing buffer is full. The value of @samp{disconnection} means
35205 tracing was automatically stopped when @value{GDBN} has disconnected.
35206 The value of @samp{passcount} means tracing was stopped when a
35207 tracepoint was passed a maximal number of times for that tracepoint.
35208 This field is present if @samp{supported} field is not @samp{0}.
35209
35210 @item stopping-tracepoint
35211 The number of tracepoint whose passcount as exceeded. This field is
35212 present iff the @samp{stop-reason} field has the value of
35213 @samp{passcount}.
35214
35215 @item frames
35216 @itemx frames-created
35217 The @samp{frames} field is a count of the total number of trace frames
35218 in the trace buffer, while @samp{frames-created} is the total created
35219 during the run, including ones that were discarded, such as when a
35220 circular trace buffer filled up. Both fields are optional.
35221
35222 @item buffer-size
35223 @itemx buffer-free
35224 These fields tell the current size of the tracing buffer and the
35225 remaining space. These fields are optional.
35226
35227 @item circular
35228 The value of the circular trace buffer flag. @code{1} means that the
35229 trace buffer is circular and old trace frames will be discarded if
35230 necessary to make room, @code{0} means that the trace buffer is linear
35231 and may fill up.
35232
35233 @item disconnected
35234 The value of the disconnected tracing flag. @code{1} means that
35235 tracing will continue after @value{GDBN} disconnects, @code{0} means
35236 that the trace run will stop.
35237
35238 @item trace-file
35239 The filename of the trace file being examined. This field is
35240 optional, and only present when examining a trace file.
35241
35242 @end table
35243
35244 @subsubheading @value{GDBN} Command
35245
35246 The corresponding @value{GDBN} command is @samp{tstatus}.
35247
35248 @subheading -trace-stop
35249 @findex -trace-stop
35250
35251 @subsubheading Synopsis
35252
35253 @smallexample
35254 -trace-stop
35255 @end smallexample
35256
35257 Stops a tracing experiment. The result of this command has the same
35258 fields as @code{-trace-status}, except that the @samp{supported} and
35259 @samp{running} fields are not output.
35260
35261 @subsubheading @value{GDBN} Command
35262
35263 The corresponding @value{GDBN} command is @samp{tstop}.
35264
35265
35266 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35267 @node GDB/MI Symbol Query
35268 @section @sc{gdb/mi} Symbol Query Commands
35269
35270
35271 @ignore
35272 @subheading The @code{-symbol-info-address} Command
35273 @findex -symbol-info-address
35274
35275 @subsubheading Synopsis
35276
35277 @smallexample
35278 -symbol-info-address @var{symbol}
35279 @end smallexample
35280
35281 Describe where @var{symbol} is stored.
35282
35283 @subsubheading @value{GDBN} Command
35284
35285 The corresponding @value{GDBN} command is @samp{info address}.
35286
35287 @subsubheading Example
35288 N.A.
35289
35290
35291 @subheading The @code{-symbol-info-file} Command
35292 @findex -symbol-info-file
35293
35294 @subsubheading Synopsis
35295
35296 @smallexample
35297 -symbol-info-file
35298 @end smallexample
35299
35300 Show the file for the symbol.
35301
35302 @subsubheading @value{GDBN} Command
35303
35304 There's no equivalent @value{GDBN} command. @code{gdbtk} has
35305 @samp{gdb_find_file}.
35306
35307 @subsubheading Example
35308 N.A.
35309 @end ignore
35310
35311 @subheading The @code{-symbol-info-functions} Command
35312 @findex -symbol-info-functions
35313 @anchor{-symbol-info-functions}
35314
35315 @subsubheading Synopsis
35316
35317 @smallexample
35318 -symbol-info-functions [--include-nondebug]
35319 [--type @var{type_regexp}]
35320 [--name @var{name_regexp}]
35321 [--max-results @var{limit}]
35322 @end smallexample
35323
35324 @noindent
35325 Return a list containing the names and types for all global functions
35326 taken from the debug information. The functions are grouped by source
35327 file, and shown with the line number on which each function is
35328 defined.
35329
35330 The @code{--include-nondebug} option causes the output to include
35331 code symbols from the symbol table.
35332
35333 The options @code{--type} and @code{--name} allow the symbols returned
35334 to be filtered based on either the name of the function, or the type
35335 signature of the function.
35336
35337 The option @code{--max-results} restricts the command to return no
35338 more than @var{limit} results. If exactly @var{limit} results are
35339 returned then there might be additional results available if a higher
35340 limit is used.
35341
35342 @subsubheading @value{GDBN} Command
35343
35344 The corresponding @value{GDBN} command is @samp{info functions}.
35345
35346 @subsubheading Example
35347 @smallexample
35348 @group
35349 (gdb)
35350 -symbol-info-functions
35351 ^done,symbols=
35352 @{debug=
35353 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35354 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35355 symbols=[@{line="36", name="f4", type="void (int *)",
35356 description="void f4(int *);"@},
35357 @{line="42", name="main", type="int ()",
35358 description="int main();"@},
35359 @{line="30", name="f1", type="my_int_t (int, int)",
35360 description="static my_int_t f1(int, int);"@}]@},
35361 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35362 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35363 symbols=[@{line="33", name="f2", type="float (another_float_t)",
35364 description="float f2(another_float_t);"@},
35365 @{line="39", name="f3", type="int (another_int_t)",
35366 description="int f3(another_int_t);"@},
35367 @{line="27", name="f1", type="another_float_t (int)",
35368 description="static another_float_t f1(int);"@}]@}]@}
35369 @end group
35370 @group
35371 (gdb)
35372 -symbol-info-functions --name f1
35373 ^done,symbols=
35374 @{debug=
35375 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35376 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35377 symbols=[@{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="27", name="f1", type="another_float_t (int)",
35382 description="static another_float_t f1(int);"@}]@}]@}
35383 @end group
35384 @group
35385 (gdb)
35386 -symbol-info-functions --type void
35387 ^done,symbols=
35388 @{debug=
35389 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35390 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35391 symbols=[@{line="36", name="f4", type="void (int *)",
35392 description="void f4(int *);"@}]@}]@}
35393 @end group
35394 @group
35395 (gdb)
35396 -symbol-info-functions --include-nondebug
35397 ^done,symbols=
35398 @{debug=
35399 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35400 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35401 symbols=[@{line="36", name="f4", type="void (int *)",
35402 description="void f4(int *);"@},
35403 @{line="42", name="main", type="int ()",
35404 description="int main();"@},
35405 @{line="30", name="f1", type="my_int_t (int, int)",
35406 description="static my_int_t f1(int, int);"@}]@},
35407 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35408 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35409 symbols=[@{line="33", name="f2", type="float (another_float_t)",
35410 description="float f2(another_float_t);"@},
35411 @{line="39", name="f3", type="int (another_int_t)",
35412 description="int f3(another_int_t);"@},
35413 @{line="27", name="f1", type="another_float_t (int)",
35414 description="static another_float_t f1(int);"@}]@}],
35415 nondebug=
35416 [@{address="0x0000000000400398",name="_init"@},
35417 @{address="0x00000000004003b0",name="_start"@},
35418 ...
35419 ]@}
35420 @end group
35421 @end smallexample
35422
35423 @subheading The @code{-symbol-info-module-functions} Command
35424 @findex -symbol-info-module-functions
35425 @anchor{-symbol-info-module-functions}
35426
35427 @subsubheading Synopsis
35428
35429 @smallexample
35430 -symbol-info-module-functions [--module @var{module_regexp}]
35431 [--name @var{name_regexp}]
35432 [--type @var{type_regexp}]
35433 @end smallexample
35434
35435 @noindent
35436 Return a list containing the names of all known functions within all
35437 know Fortran modules. The functions are grouped by source file and
35438 containing module, and shown with the line number on which each
35439 function is defined.
35440
35441 The option @code{--module} only returns results for modules matching
35442 @var{module_regexp}. The option @code{--name} only returns functions
35443 whose name matches @var{name_regexp}, and @code{--type} only returns
35444 functions whose type matches @var{type_regexp}.
35445
35446 @subsubheading @value{GDBN} Command
35447
35448 The corresponding @value{GDBN} command is @samp{info module functions}.
35449
35450 @subsubheading Example
35451
35452 @smallexample
35453 @group
35454 (gdb)
35455 -symbol-info-module-functions
35456 ^done,symbols=
35457 [@{module="mod1",
35458 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35459 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35460 symbols=[@{line="21",name="mod1::check_all",type="void (void)",
35461 description="void mod1::check_all(void);"@}]@}]@},
35462 @{module="mod2",
35463 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35464 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35465 symbols=[@{line="30",name="mod2::check_var_i",type="void (void)",
35466 description="void mod2::check_var_i(void);"@}]@}]@},
35467 @{module="mod3",
35468 files=[@{filename="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35469 fullname="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35470 symbols=[@{line="21",name="mod3::check_all",type="void (void)",
35471 description="void mod3::check_all(void);"@},
35472 @{line="27",name="mod3::check_mod2",type="void (void)",
35473 description="void mod3::check_mod2(void);"@}]@}]@},
35474 @{module="modmany",
35475 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35476 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35477 symbols=[@{line="35",name="modmany::check_some",type="void (void)",
35478 description="void modmany::check_some(void);"@}]@}]@},
35479 @{module="moduse",
35480 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35481 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35482 symbols=[@{line="44",name="moduse::check_all",type="void (void)",
35483 description="void moduse::check_all(void);"@},
35484 @{line="49",name="moduse::check_var_x",type="void (void)",
35485 description="void moduse::check_var_x(void);"@}]@}]@}]
35486 @end group
35487 @end smallexample
35488
35489 @subheading The @code{-symbol-info-module-variables} Command
35490 @findex -symbol-info-module-variables
35491 @anchor{-symbol-info-module-variables}
35492
35493 @subsubheading Synopsis
35494
35495 @smallexample
35496 -symbol-info-module-variables [--module @var{module_regexp}]
35497 [--name @var{name_regexp}]
35498 [--type @var{type_regexp}]
35499 @end smallexample
35500
35501 @noindent
35502 Return a list containing the names of all known variables within all
35503 know Fortran modules. The variables are grouped by source file and
35504 containing module, and shown with the line number on which each
35505 variable is defined.
35506
35507 The option @code{--module} only returns results for modules matching
35508 @var{module_regexp}. The option @code{--name} only returns variables
35509 whose name matches @var{name_regexp}, and @code{--type} only returns
35510 variables whose type matches @var{type_regexp}.
35511
35512 @subsubheading @value{GDBN} Command
35513
35514 The corresponding @value{GDBN} command is @samp{info module variables}.
35515
35516 @subsubheading Example
35517
35518 @smallexample
35519 @group
35520 (gdb)
35521 -symbol-info-module-variables
35522 ^done,symbols=
35523 [@{module="mod1",
35524 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35525 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35526 symbols=[@{line="18",name="mod1::var_const",type="integer(kind=4)",
35527 description="integer(kind=4) mod1::var_const;"@},
35528 @{line="17",name="mod1::var_i",type="integer(kind=4)",
35529 description="integer(kind=4) mod1::var_i;"@}]@}]@},
35530 @{module="mod2",
35531 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35532 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35533 symbols=[@{line="28",name="mod2::var_i",type="integer(kind=4)",
35534 description="integer(kind=4) mod2::var_i;"@}]@}]@},
35535 @{module="mod3",
35536 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35537 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35538 symbols=[@{line="18",name="mod3::mod1",type="integer(kind=4)",
35539 description="integer(kind=4) mod3::mod1;"@},
35540 @{line="17",name="mod3::mod2",type="integer(kind=4)",
35541 description="integer(kind=4) mod3::mod2;"@},
35542 @{line="19",name="mod3::var_i",type="integer(kind=4)",
35543 description="integer(kind=4) mod3::var_i;"@}]@}]@},
35544 @{module="modmany",
35545 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35546 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35547 symbols=[@{line="33",name="modmany::var_a",type="integer(kind=4)",
35548 description="integer(kind=4) modmany::var_a;"@},
35549 @{line="33",name="modmany::var_b",type="integer(kind=4)",
35550 description="integer(kind=4) modmany::var_b;"@},
35551 @{line="33",name="modmany::var_c",type="integer(kind=4)",
35552 description="integer(kind=4) modmany::var_c;"@},
35553 @{line="33",name="modmany::var_i",type="integer(kind=4)",
35554 description="integer(kind=4) modmany::var_i;"@}]@}]@},
35555 @{module="moduse",
35556 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35557 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35558 symbols=[@{line="42",name="moduse::var_x",type="integer(kind=4)",
35559 description="integer(kind=4) moduse::var_x;"@},
35560 @{line="42",name="moduse::var_y",type="integer(kind=4)",
35561 description="integer(kind=4) moduse::var_y;"@}]@}]@}]
35562 @end group
35563 @end smallexample
35564
35565 @subheading The @code{-symbol-info-modules} Command
35566 @findex -symbol-info-modules
35567 @anchor{-symbol-info-modules}
35568
35569 @subsubheading Synopsis
35570
35571 @smallexample
35572 -symbol-info-modules [--name @var{name_regexp}]
35573 [--max-results @var{limit}]
35574
35575 @end smallexample
35576
35577 @noindent
35578 Return a list containing the names of all known Fortran modules. The
35579 modules are grouped by source file, and shown with the line number on
35580 which each modules is defined.
35581
35582 The option @code{--name} allows the modules returned to be filtered
35583 based the name of the module.
35584
35585 The option @code{--max-results} restricts the command to return no
35586 more than @var{limit} results. If exactly @var{limit} results are
35587 returned then there might be additional results available if a higher
35588 limit is used.
35589
35590 @subsubheading @value{GDBN} Command
35591
35592 The corresponding @value{GDBN} command is @samp{info modules}.
35593
35594 @subsubheading Example
35595 @smallexample
35596 @group
35597 (gdb)
35598 -symbol-info-modules
35599 ^done,symbols=
35600 @{debug=
35601 [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35602 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35603 symbols=[@{line="16",name="mod1"@},
35604 @{line="22",name="mod2"@}]@},
35605 @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35606 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35607 symbols=[@{line="16",name="mod3"@},
35608 @{line="22",name="modmany"@},
35609 @{line="26",name="moduse"@}]@}]@}
35610 @end group
35611 @group
35612 (gdb)
35613 -symbol-info-modules --name mod[123]
35614 ^done,symbols=
35615 @{debug=
35616 [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35617 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35618 symbols=[@{line="16",name="mod1"@},
35619 @{line="22",name="mod2"@}]@},
35620 @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35621 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35622 symbols=[@{line="16",name="mod3"@}]@}]@}
35623 @end group
35624 @end smallexample
35625
35626 @subheading The @code{-symbol-info-types} Command
35627 @findex -symbol-info-types
35628 @anchor{-symbol-info-types}
35629
35630 @subsubheading Synopsis
35631
35632 @smallexample
35633 -symbol-info-types [--name @var{name_regexp}]
35634 [--max-results @var{limit}]
35635
35636 @end smallexample
35637
35638 @noindent
35639 Return a list of all defined types. The types are grouped by source
35640 file, and shown with the line number on which each user defined type
35641 is defined. Some base types are not defined in the source code but
35642 are added to the debug information by the compiler, for example
35643 @code{int}, @code{float}, etc.; these types do not have an associated
35644 line number.
35645
35646 The option @code{--name} allows the list of types returned to be
35647 filtered by name.
35648
35649 The option @code{--max-results} restricts the command to return no
35650 more than @var{limit} results. If exactly @var{limit} results are
35651 returned then there might be additional results available if a higher
35652 limit is used.
35653
35654 @subsubheading @value{GDBN} Command
35655
35656 The corresponding @value{GDBN} command is @samp{info types}.
35657
35658 @subsubheading Example
35659 @smallexample
35660 @group
35661 (gdb)
35662 -symbol-info-types
35663 ^done,symbols=
35664 @{debug=
35665 [@{filename="gdb.mi/mi-sym-info-1.c",
35666 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35667 symbols=[@{name="float"@},
35668 @{name="int"@},
35669 @{line="27",name="typedef int my_int_t;"@}]@},
35670 @{filename="gdb.mi/mi-sym-info-2.c",
35671 fullname="/project/gdb.mi/mi-sym-info-2.c",
35672 symbols=[@{line="24",name="typedef float another_float_t;"@},
35673 @{line="23",name="typedef int another_int_t;"@},
35674 @{name="float"@},
35675 @{name="int"@}]@}]@}
35676 @end group
35677 @group
35678 (gdb)
35679 -symbol-info-types --name _int_
35680 ^done,symbols=
35681 @{debug=
35682 [@{filename="gdb.mi/mi-sym-info-1.c",
35683 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35684 symbols=[@{line="27",name="typedef int my_int_t;"@}]@},
35685 @{filename="gdb.mi/mi-sym-info-2.c",
35686 fullname="/project/gdb.mi/mi-sym-info-2.c",
35687 symbols=[@{line="23",name="typedef int another_int_t;"@}]@}]@}
35688 @end group
35689 @end smallexample
35690
35691 @subheading The @code{-symbol-info-variables} Command
35692 @findex -symbol-info-variables
35693 @anchor{-symbol-info-variables}
35694
35695 @subsubheading Synopsis
35696
35697 @smallexample
35698 -symbol-info-variables [--include-nondebug]
35699 [--type @var{type_regexp}]
35700 [--name @var{name_regexp}]
35701 [--max-results @var{limit}]
35702
35703 @end smallexample
35704
35705 @noindent
35706 Return a list containing the names and types for all global variables
35707 taken from the debug information. The variables are grouped by source
35708 file, and shown with the line number on which each variable is
35709 defined.
35710
35711 The @code{--include-nondebug} option causes the output to include
35712 data symbols from the symbol table.
35713
35714 The options @code{--type} and @code{--name} allow the symbols returned
35715 to be filtered based on either the name of the variable, or the type
35716 of the variable.
35717
35718 The option @code{--max-results} restricts the command to return no
35719 more than @var{limit} results. If exactly @var{limit} results are
35720 returned then there might be additional results available if a higher
35721 limit is used.
35722
35723 @subsubheading @value{GDBN} Command
35724
35725 The corresponding @value{GDBN} command is @samp{info variables}.
35726
35727 @subsubheading Example
35728 @smallexample
35729 @group
35730 (gdb)
35731 -symbol-info-variables
35732 ^done,symbols=
35733 @{debug=
35734 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35735 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35736 symbols=[@{line="25",name="global_f1",type="float",
35737 description="static float global_f1;"@},
35738 @{line="24",name="global_i1",type="int",
35739 description="static int global_i1;"@}]@},
35740 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35741 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35742 symbols=[@{line="21",name="global_f2",type="int",
35743 description="int global_f2;"@},
35744 @{line="20",name="global_i2",type="int",
35745 description="int global_i2;"@},
35746 @{line="19",name="global_f1",type="float",
35747 description="static float global_f1;"@},
35748 @{line="18",name="global_i1",type="int",
35749 description="static int global_i1;"@}]@}]@}
35750 @end group
35751 @group
35752 (gdb)
35753 -symbol-info-variables --name f1
35754 ^done,symbols=
35755 @{debug=
35756 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35757 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35758 symbols=[@{line="25",name="global_f1",type="float",
35759 description="static float global_f1;"@}]@},
35760 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35761 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35762 symbols=[@{line="19",name="global_f1",type="float",
35763 description="static float global_f1;"@}]@}]@}
35764 @end group
35765 @group
35766 (gdb)
35767 -symbol-info-variables --type float
35768 ^done,symbols=
35769 @{debug=
35770 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35771 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35772 symbols=[@{line="25",name="global_f1",type="float",
35773 description="static float global_f1;"@}]@},
35774 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35775 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35776 symbols=[@{line="19",name="global_f1",type="float",
35777 description="static float global_f1;"@}]@}]@}
35778 @end group
35779 @group
35780 (gdb)
35781 -symbol-info-variables --include-nondebug
35782 ^done,symbols=
35783 @{debug=
35784 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35785 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35786 symbols=[@{line="25",name="global_f1",type="float",
35787 description="static float global_f1;"@},
35788 @{line="24",name="global_i1",type="int",
35789 description="static int global_i1;"@}]@},
35790 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35791 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35792 symbols=[@{line="21",name="global_f2",type="int",
35793 description="int global_f2;"@},
35794 @{line="20",name="global_i2",type="int",
35795 description="int global_i2;"@},
35796 @{line="19",name="global_f1",type="float",
35797 description="static float global_f1;"@},
35798 @{line="18",name="global_i1",type="int",
35799 description="static int global_i1;"@}]@}],
35800 nondebug=
35801 [@{address="0x00000000004005d0",name="_IO_stdin_used"@},
35802 @{address="0x00000000004005d8",name="__dso_handle"@}
35803 ...
35804 ]@}
35805 @end group
35806 @end smallexample
35807
35808 @ignore
35809 @subheading The @code{-symbol-info-line} Command
35810 @findex -symbol-info-line
35811
35812 @subsubheading Synopsis
35813
35814 @smallexample
35815 -symbol-info-line
35816 @end smallexample
35817
35818 Show the core addresses of the code for a source line.
35819
35820 @subsubheading @value{GDBN} Command
35821
35822 The corresponding @value{GDBN} command is @samp{info line}.
35823 @code{gdbtk} has the @samp{gdb_get_line} and @samp{gdb_get_file} commands.
35824
35825 @subsubheading Example
35826 N.A.
35827
35828
35829 @subheading The @code{-symbol-info-symbol} Command
35830 @findex -symbol-info-symbol
35831
35832 @subsubheading Synopsis
35833
35834 @smallexample
35835 -symbol-info-symbol @var{addr}
35836 @end smallexample
35837
35838 Describe what symbol is at location @var{addr}.
35839
35840 @subsubheading @value{GDBN} Command
35841
35842 The corresponding @value{GDBN} command is @samp{info symbol}.
35843
35844 @subsubheading Example
35845 N.A.
35846
35847
35848 @subheading The @code{-symbol-list-functions} Command
35849 @findex -symbol-list-functions
35850
35851 @subsubheading Synopsis
35852
35853 @smallexample
35854 -symbol-list-functions
35855 @end smallexample
35856
35857 List the functions in the executable.
35858
35859 @subsubheading @value{GDBN} Command
35860
35861 @samp{info functions} in @value{GDBN}, @samp{gdb_listfunc} and
35862 @samp{gdb_search} in @code{gdbtk}.
35863
35864 @subsubheading Example
35865 N.A.
35866 @end ignore
35867
35868
35869 @subheading The @code{-symbol-list-lines} Command
35870 @findex -symbol-list-lines
35871
35872 @subsubheading Synopsis
35873
35874 @smallexample
35875 -symbol-list-lines @var{filename}
35876 @end smallexample
35877
35878 Print the list of lines that contain code and their associated program
35879 addresses for the given source filename. The entries are sorted in
35880 ascending PC order.
35881
35882 @subsubheading @value{GDBN} Command
35883
35884 There is no corresponding @value{GDBN} command.
35885
35886 @subsubheading Example
35887 @smallexample
35888 (gdb)
35889 -symbol-list-lines basics.c
35890 ^done,lines=[@{pc="0x08048554",line="7"@},@{pc="0x0804855a",line="8"@}]
35891 (gdb)
35892 @end smallexample
35893
35894
35895 @ignore
35896 @subheading The @code{-symbol-list-types} Command
35897 @findex -symbol-list-types
35898
35899 @subsubheading Synopsis
35900
35901 @smallexample
35902 -symbol-list-types
35903 @end smallexample
35904
35905 List all the type names.
35906
35907 @subsubheading @value{GDBN} Command
35908
35909 The corresponding commands are @samp{info types} in @value{GDBN},
35910 @samp{gdb_search} in @code{gdbtk}.
35911
35912 @subsubheading Example
35913 N.A.
35914
35915
35916 @subheading The @code{-symbol-list-variables} Command
35917 @findex -symbol-list-variables
35918
35919 @subsubheading Synopsis
35920
35921 @smallexample
35922 -symbol-list-variables
35923 @end smallexample
35924
35925 List all the global and static variable names.
35926
35927 @subsubheading @value{GDBN} Command
35928
35929 @samp{info variables} in @value{GDBN}, @samp{gdb_search} in @code{gdbtk}.
35930
35931 @subsubheading Example
35932 N.A.
35933
35934
35935 @subheading The @code{-symbol-locate} Command
35936 @findex -symbol-locate
35937
35938 @subsubheading Synopsis
35939
35940 @smallexample
35941 -symbol-locate
35942 @end smallexample
35943
35944 @subsubheading @value{GDBN} Command
35945
35946 @samp{gdb_loc} in @code{gdbtk}.
35947
35948 @subsubheading Example
35949 N.A.
35950
35951
35952 @subheading The @code{-symbol-type} Command
35953 @findex -symbol-type
35954
35955 @subsubheading Synopsis
35956
35957 @smallexample
35958 -symbol-type @var{variable}
35959 @end smallexample
35960
35961 Show type of @var{variable}.
35962
35963 @subsubheading @value{GDBN} Command
35964
35965 The corresponding @value{GDBN} command is @samp{ptype}, @code{gdbtk} has
35966 @samp{gdb_obj_variable}.
35967
35968 @subsubheading Example
35969 N.A.
35970 @end ignore
35971
35972
35973 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35974 @node GDB/MI File Commands
35975 @section @sc{gdb/mi} File Commands
35976
35977 This section describes the GDB/MI commands to specify executable file names
35978 and to read in and obtain symbol table information.
35979
35980 @subheading The @code{-file-exec-and-symbols} Command
35981 @findex -file-exec-and-symbols
35982
35983 @subsubheading Synopsis
35984
35985 @smallexample
35986 -file-exec-and-symbols @var{file}
35987 @end smallexample
35988
35989 Specify the executable file to be debugged. This file is the one from
35990 which the symbol table is also read. If no file is specified, the
35991 command clears the executable and symbol information. If breakpoints
35992 are set when using this command with no arguments, @value{GDBN} will produce
35993 error messages. Otherwise, no output is produced, except a completion
35994 notification.
35995
35996 @subsubheading @value{GDBN} Command
35997
35998 The corresponding @value{GDBN} command is @samp{file}.
35999
36000 @subsubheading Example
36001
36002 @smallexample
36003 (gdb)
36004 -file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36005 ^done
36006 (gdb)
36007 @end smallexample
36008
36009
36010 @subheading The @code{-file-exec-file} Command
36011 @findex -file-exec-file
36012
36013 @subsubheading Synopsis
36014
36015 @smallexample
36016 -file-exec-file @var{file}
36017 @end smallexample
36018
36019 Specify the executable file to be debugged. Unlike
36020 @samp{-file-exec-and-symbols}, the symbol table is @emph{not} read
36021 from this file. If used without argument, @value{GDBN} clears the information
36022 about the executable file. No output is produced, except a completion
36023 notification.
36024
36025 @subsubheading @value{GDBN} Command
36026
36027 The corresponding @value{GDBN} command is @samp{exec-file}.
36028
36029 @subsubheading Example
36030
36031 @smallexample
36032 (gdb)
36033 -file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36034 ^done
36035 (gdb)
36036 @end smallexample
36037
36038
36039 @ignore
36040 @subheading The @code{-file-list-exec-sections} Command
36041 @findex -file-list-exec-sections
36042
36043 @subsubheading Synopsis
36044
36045 @smallexample
36046 -file-list-exec-sections
36047 @end smallexample
36048
36049 List the sections of the current executable file.
36050
36051 @subsubheading @value{GDBN} Command
36052
36053 The @value{GDBN} command @samp{info file} shows, among the rest, the same
36054 information as this command. @code{gdbtk} has a corresponding command
36055 @samp{gdb_load_info}.
36056
36057 @subsubheading Example
36058 N.A.
36059 @end ignore
36060
36061
36062 @subheading The @code{-file-list-exec-source-file} Command
36063 @findex -file-list-exec-source-file
36064
36065 @subsubheading Synopsis
36066
36067 @smallexample
36068 -file-list-exec-source-file
36069 @end smallexample
36070
36071 List the line number, the current source file, and the absolute path
36072 to the current source file for the current executable. The macro
36073 information field has a value of @samp{1} or @samp{0} depending on
36074 whether or not the file includes preprocessor macro information.
36075
36076 @subsubheading @value{GDBN} Command
36077
36078 The @value{GDBN} equivalent is @samp{info source}
36079
36080 @subsubheading Example
36081
36082 @smallexample
36083 (gdb)
36084 123-file-list-exec-source-file
36085 123^done,line="1",file="foo.c",fullname="/home/bar/foo.c,macro-info="1"
36086 (gdb)
36087 @end smallexample
36088
36089
36090 @subheading The @code{-file-list-exec-source-files} Command
36091 @kindex info sources
36092 @findex -file-list-exec-source-files
36093
36094 @subsubheading Synopsis
36095
36096 @smallexample
36097 -file-list-exec-source-files @r{[} @var{--group-by-objfile} @r{]}
36098 @r{[} @var{--dirname} @r{|} @var{--basename} @r{]}
36099 @r{[} -- @r{]}
36100 @r{[} @var{regexp} @r{]}
36101 @end smallexample
36102
36103 This command returns information about the source files @value{GDBN}
36104 knows about, it will output both the filename and fullname (absolute
36105 file name) of a source file, though the fullname can be elided if this
36106 information is not known to @value{GDBN}.
36107
36108 With no arguments this command returns a list of source files. Each
36109 source file is represented by a tuple with the fields; @var{file},
36110 @var{fullname}, and @var{debug-fully-read}. The @var{file} is the
36111 display name for the file, while @var{fullname} is the absolute name
36112 of the file. The @var{fullname} field can be elided if the absolute
36113 name of the source file can't be computed. The field
36114 @var{debug-fully-read} will be a string, either @code{true} or
36115 @code{false}. When @code{true}, this indicates the full debug
36116 information for the compilation unit describing this file has been
36117 read in. When @code{false}, the full debug information has not yet
36118 been read in. While reading in the full debug information it is
36119 possible that @value{GDBN} could become aware of additional source
36120 files.
36121
36122 The optional @var{regexp} can be used to filter the list of source
36123 files returned. The @var{regexp} will be matched against the full
36124 source file name. The matching is case-sensitive, except on operating
36125 systems that have case-insensitive filesystem (e.g.,
36126 MS-Windows). @samp{--} can be used before @var{regexp} to prevent
36127 @value{GDBN} interpreting @var{regexp} as a command option (e.g.@: if
36128 @var{regexp} starts with @samp{-}).
36129
36130 If @code{--dirname} is provided, then @var{regexp} is matched only
36131 against the directory name of each source file. If @code{--basename}
36132 is provided, then @var{regexp} is matched against the basename of each
36133 source file. Only one of @code{--dirname} or @code{--basename} may be
36134 given, and if either is given then @var{regexp} is required.
36135
36136 If @code{--group-by-objfile} is used then the format of the results is
36137 changed. The results will now be a list of tuples, with each tuple
36138 representing an object file (executable or shared library) loaded into
36139 @value{GDBN}. The fields of these tuples are; @var{filename},
36140 @var{debug-info}, and @var{sources}. The @var{filename} is the
36141 absolute name of the object file, @var{debug-info} is a string with
36142 one of the following values:
36143
36144 @table @code
36145 @item none
36146 This object file has no debug information.
36147 @item partially-read
36148 This object file has debug information, but it is not fully read in
36149 yet. When it is read in later, GDB might become aware of additional
36150 source files.
36151 @item fully-read
36152 This object file has debug information, and this information is fully
36153 read into GDB. The list of source files is complete.
36154 @end table
36155
36156 The @var{sources} is a list or tuples, with each tuple describing a
36157 single source file with the same fields as described previously. The
36158 @var{sources} list can be empty for object files that have no debug
36159 information.
36160
36161 @subsubheading @value{GDBN} Command
36162
36163 The @value{GDBN} equivalent is @samp{info sources}.
36164 @code{gdbtk} has an analogous command @samp{gdb_listfiles}.
36165
36166 @subsubheading Example
36167 @smallexample
36168 (@value{GDBP})
36169 -file-list-exec-source-files
36170 ^done,files=[@{file="foo.c",fullname="/home/foo.c",debug-fully-read="true"@},
36171 @{file="/home/bar.c",fullname="/home/bar.c",debug-fully-read="true"@},
36172 @{file="gdb_could_not_find_fullpath.c",debug-fully-read="true"@}]
36173 (@value{GDBP})
36174 -file-list-exec-source-files
36175 ^done,files=[@{file="test.c",
36176 fullname="/tmp/info-sources/test.c",
36177 debug-fully-read="true"@},
36178 @{file="/usr/include/stdc-predef.h",
36179 fullname="/usr/include/stdc-predef.h",
36180 debug-fully-read="true"@},
36181 @{file="header.h",
36182 fullname="/tmp/info-sources/header.h",
36183 debug-fully-read="true"@},
36184 @{file="helper.c",
36185 fullname="/tmp/info-sources/helper.c",
36186 debug-fully-read="true"@}]
36187 (@value{GDBP})
36188 -file-list-exec-source-files -- \\.c
36189 ^done,files=[@{file="test.c",
36190 fullname="/tmp/info-sources/test.c",
36191 debug-fully-read="true"@},
36192 @{file="helper.c",
36193 fullname="/tmp/info-sources/helper.c",
36194 debug-fully-read="true"@}]
36195 (@value{GDBP})
36196 -file-list-exec-source-files --group-by-objfile
36197 ^done,files=[@{filename="/tmp/info-sources/test.x",
36198 debug-info="fully-read",
36199 sources=[@{file="test.c",
36200 fullname="/tmp/info-sources/test.c",
36201 debug-fully-read="true"@},
36202 @{file="/usr/include/stdc-predef.h",
36203 fullname="/usr/include/stdc-predef.h",
36204 debug-fully-read="true"@},
36205 @{file="header.h",
36206 fullname="/tmp/info-sources/header.h",
36207 debug-fully-read="true"@}]@},
36208 @{filename="/lib64/ld-linux-x86-64.so.2",
36209 debug-info="none",
36210 sources=[]@},
36211 @{filename="system-supplied DSO at 0x7ffff7fcf000",
36212 debug-info="none",
36213 sources=[]@},
36214 @{filename="/tmp/info-sources/libhelper.so",
36215 debug-info="fully-read",
36216 sources=[@{file="helper.c",
36217 fullname="/tmp/info-sources/helper.c",
36218 debug-fully-read="true"@},
36219 @{file="/usr/include/stdc-predef.h",
36220 fullname="/usr/include/stdc-predef.h",
36221 debug-fully-read="true"@},
36222 @{file="header.h",
36223 fullname="/tmp/info-sources/header.h",
36224 debug-fully-read="true"@}]@},
36225 @{filename="/lib64/libc.so.6",
36226 debug-info="none",
36227 sources=[]@}]
36228 @end smallexample
36229
36230 @subheading The @code{-file-list-shared-libraries} Command
36231 @findex -file-list-shared-libraries
36232
36233 @subsubheading Synopsis
36234
36235 @smallexample
36236 -file-list-shared-libraries [ @var{regexp} ]
36237 @end smallexample
36238
36239 List the shared libraries in the program.
36240 With a regular expression @var{regexp}, only those libraries whose
36241 names match @var{regexp} are listed.
36242
36243 @subsubheading @value{GDBN} Command
36244
36245 The corresponding @value{GDBN} command is @samp{info shared}. The fields
36246 have a similar meaning to the @code{=library-loaded} notification.
36247 The @code{ranges} field specifies the multiple segments belonging to this
36248 library. Each range has the following fields:
36249
36250 @table @samp
36251 @item from
36252 The address defining the inclusive lower bound of the segment.
36253 @item to
36254 The address defining the exclusive upper bound of the segment.
36255 @end table
36256
36257 @subsubheading Example
36258 @smallexample
36259 (gdb)
36260 -file-list-exec-source-files
36261 ^done,shared-libraries=[
36262 @{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"@}]@},
36263 @{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"@}]@}]
36264 (gdb)
36265 @end smallexample
36266
36267
36268 @ignore
36269 @subheading The @code{-file-list-symbol-files} Command
36270 @findex -file-list-symbol-files
36271
36272 @subsubheading Synopsis
36273
36274 @smallexample
36275 -file-list-symbol-files
36276 @end smallexample
36277
36278 List symbol files.
36279
36280 @subsubheading @value{GDBN} Command
36281
36282 The corresponding @value{GDBN} command is @samp{info file} (part of it).
36283
36284 @subsubheading Example
36285 N.A.
36286 @end ignore
36287
36288
36289 @subheading The @code{-file-symbol-file} Command
36290 @findex -file-symbol-file
36291
36292 @subsubheading Synopsis
36293
36294 @smallexample
36295 -file-symbol-file @var{file}
36296 @end smallexample
36297
36298 Read symbol table info from the specified @var{file} argument. When
36299 used without arguments, clears @value{GDBN}'s symbol table info. No output is
36300 produced, except for a completion notification.
36301
36302 @subsubheading @value{GDBN} Command
36303
36304 The corresponding @value{GDBN} command is @samp{symbol-file}.
36305
36306 @subsubheading Example
36307
36308 @smallexample
36309 (gdb)
36310 -file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
36311 ^done
36312 (gdb)
36313 @end smallexample
36314
36315 @ignore
36316 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36317 @node GDB/MI Memory Overlay Commands
36318 @section @sc{gdb/mi} Memory Overlay Commands
36319
36320 The memory overlay commands are not implemented.
36321
36322 @c @subheading -overlay-auto
36323
36324 @c @subheading -overlay-list-mapping-state
36325
36326 @c @subheading -overlay-list-overlays
36327
36328 @c @subheading -overlay-map
36329
36330 @c @subheading -overlay-off
36331
36332 @c @subheading -overlay-on
36333
36334 @c @subheading -overlay-unmap
36335
36336 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36337 @node GDB/MI Signal Handling Commands
36338 @section @sc{gdb/mi} Signal Handling Commands
36339
36340 Signal handling commands are not implemented.
36341
36342 @c @subheading -signal-handle
36343
36344 @c @subheading -signal-list-handle-actions
36345
36346 @c @subheading -signal-list-signal-types
36347 @end ignore
36348
36349
36350 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36351 @node GDB/MI Target Manipulation
36352 @section @sc{gdb/mi} Target Manipulation Commands
36353
36354
36355 @subheading The @code{-target-attach} Command
36356 @findex -target-attach
36357
36358 @subsubheading Synopsis
36359
36360 @smallexample
36361 -target-attach @var{pid} | @var{gid} | @var{file}
36362 @end smallexample
36363
36364 Attach to a process @var{pid} or a file @var{file} outside of
36365 @value{GDBN}, or a thread group @var{gid}. If attaching to a thread
36366 group, the id previously returned by
36367 @samp{-list-thread-groups --available} must be used.
36368
36369 @subsubheading @value{GDBN} Command
36370
36371 The corresponding @value{GDBN} command is @samp{attach}.
36372
36373 @subsubheading Example
36374 @smallexample
36375 (gdb)
36376 -target-attach 34
36377 =thread-created,id="1"
36378 *stopped,thread-id="1",frame=@{addr="0xb7f7e410",func="bar",args=[]@}
36379 ^done
36380 (gdb)
36381 @end smallexample
36382
36383 @ignore
36384 @subheading The @code{-target-compare-sections} Command
36385 @findex -target-compare-sections
36386
36387 @subsubheading Synopsis
36388
36389 @smallexample
36390 -target-compare-sections [ @var{section} ]
36391 @end smallexample
36392
36393 Compare data of section @var{section} on target to the exec file.
36394 Without the argument, all sections are compared.
36395
36396 @subsubheading @value{GDBN} Command
36397
36398 The @value{GDBN} equivalent is @samp{compare-sections}.
36399
36400 @subsubheading Example
36401 N.A.
36402 @end ignore
36403
36404
36405 @subheading The @code{-target-detach} Command
36406 @findex -target-detach
36407
36408 @subsubheading Synopsis
36409
36410 @smallexample
36411 -target-detach [ @var{pid} | @var{gid} ]
36412 @end smallexample
36413
36414 Detach from the remote target which normally resumes its execution.
36415 If either @var{pid} or @var{gid} is specified, detaches from either
36416 the specified process, or specified thread group. There's no output.
36417
36418 @subsubheading @value{GDBN} Command
36419
36420 The corresponding @value{GDBN} command is @samp{detach}.
36421
36422 @subsubheading Example
36423
36424 @smallexample
36425 (gdb)
36426 -target-detach
36427 ^done
36428 (gdb)
36429 @end smallexample
36430
36431
36432 @subheading The @code{-target-disconnect} Command
36433 @findex -target-disconnect
36434
36435 @subsubheading Synopsis
36436
36437 @smallexample
36438 -target-disconnect
36439 @end smallexample
36440
36441 Disconnect from the remote target. There's no output and the target is
36442 generally not resumed.
36443
36444 @subsubheading @value{GDBN} Command
36445
36446 The corresponding @value{GDBN} command is @samp{disconnect}.
36447
36448 @subsubheading Example
36449
36450 @smallexample
36451 (gdb)
36452 -target-disconnect
36453 ^done
36454 (gdb)
36455 @end smallexample
36456
36457
36458 @subheading The @code{-target-download} Command
36459 @findex -target-download
36460
36461 @subsubheading Synopsis
36462
36463 @smallexample
36464 -target-download
36465 @end smallexample
36466
36467 Loads the executable onto the remote target.
36468 It prints out an update message every half second, which includes the fields:
36469
36470 @table @samp
36471 @item section
36472 The name of the section.
36473 @item section-sent
36474 The size of what has been sent so far for that section.
36475 @item section-size
36476 The size of the section.
36477 @item total-sent
36478 The total size of what was sent so far (the current and the previous sections).
36479 @item total-size
36480 The size of the overall executable to download.
36481 @end table
36482
36483 @noindent
36484 Each message is sent as status record (@pxref{GDB/MI Output Syntax, ,
36485 @sc{gdb/mi} Output Syntax}).
36486
36487 In addition, it prints the name and size of the sections, as they are
36488 downloaded. These messages include the following fields:
36489
36490 @table @samp
36491 @item section
36492 The name of the section.
36493 @item section-size
36494 The size of the section.
36495 @item total-size
36496 The size of the overall executable to download.
36497 @end table
36498
36499 @noindent
36500 At the end, a summary is printed.
36501
36502 @subsubheading @value{GDBN} Command
36503
36504 The corresponding @value{GDBN} command is @samp{load}.
36505
36506 @subsubheading Example
36507
36508 Note: each status message appears on a single line. Here the messages
36509 have been broken down so that they can fit onto a page.
36510
36511 @smallexample
36512 (gdb)
36513 -target-download
36514 +download,@{section=".text",section-size="6668",total-size="9880"@}
36515 +download,@{section=".text",section-sent="512",section-size="6668",
36516 total-sent="512",total-size="9880"@}
36517 +download,@{section=".text",section-sent="1024",section-size="6668",
36518 total-sent="1024",total-size="9880"@}
36519 +download,@{section=".text",section-sent="1536",section-size="6668",
36520 total-sent="1536",total-size="9880"@}
36521 +download,@{section=".text",section-sent="2048",section-size="6668",
36522 total-sent="2048",total-size="9880"@}
36523 +download,@{section=".text",section-sent="2560",section-size="6668",
36524 total-sent="2560",total-size="9880"@}
36525 +download,@{section=".text",section-sent="3072",section-size="6668",
36526 total-sent="3072",total-size="9880"@}
36527 +download,@{section=".text",section-sent="3584",section-size="6668",
36528 total-sent="3584",total-size="9880"@}
36529 +download,@{section=".text",section-sent="4096",section-size="6668",
36530 total-sent="4096",total-size="9880"@}
36531 +download,@{section=".text",section-sent="4608",section-size="6668",
36532 total-sent="4608",total-size="9880"@}
36533 +download,@{section=".text",section-sent="5120",section-size="6668",
36534 total-sent="5120",total-size="9880"@}
36535 +download,@{section=".text",section-sent="5632",section-size="6668",
36536 total-sent="5632",total-size="9880"@}
36537 +download,@{section=".text",section-sent="6144",section-size="6668",
36538 total-sent="6144",total-size="9880"@}
36539 +download,@{section=".text",section-sent="6656",section-size="6668",
36540 total-sent="6656",total-size="9880"@}
36541 +download,@{section=".init",section-size="28",total-size="9880"@}
36542 +download,@{section=".fini",section-size="28",total-size="9880"@}
36543 +download,@{section=".data",section-size="3156",total-size="9880"@}
36544 +download,@{section=".data",section-sent="512",section-size="3156",
36545 total-sent="7236",total-size="9880"@}
36546 +download,@{section=".data",section-sent="1024",section-size="3156",
36547 total-sent="7748",total-size="9880"@}
36548 +download,@{section=".data",section-sent="1536",section-size="3156",
36549 total-sent="8260",total-size="9880"@}
36550 +download,@{section=".data",section-sent="2048",section-size="3156",
36551 total-sent="8772",total-size="9880"@}
36552 +download,@{section=".data",section-sent="2560",section-size="3156",
36553 total-sent="9284",total-size="9880"@}
36554 +download,@{section=".data",section-sent="3072",section-size="3156",
36555 total-sent="9796",total-size="9880"@}
36556 ^done,address="0x10004",load-size="9880",transfer-rate="6586",
36557 write-rate="429"
36558 (gdb)
36559 @end smallexample
36560
36561
36562 @ignore
36563 @subheading The @code{-target-exec-status} Command
36564 @findex -target-exec-status
36565
36566 @subsubheading Synopsis
36567
36568 @smallexample
36569 -target-exec-status
36570 @end smallexample
36571
36572 Provide information on the state of the target (whether it is running or
36573 not, for instance).
36574
36575 @subsubheading @value{GDBN} Command
36576
36577 There's no equivalent @value{GDBN} command.
36578
36579 @subsubheading Example
36580 N.A.
36581
36582
36583 @subheading The @code{-target-list-available-targets} Command
36584 @findex -target-list-available-targets
36585
36586 @subsubheading Synopsis
36587
36588 @smallexample
36589 -target-list-available-targets
36590 @end smallexample
36591
36592 List the possible targets to connect to.
36593
36594 @subsubheading @value{GDBN} Command
36595
36596 The corresponding @value{GDBN} command is @samp{help target}.
36597
36598 @subsubheading Example
36599 N.A.
36600
36601
36602 @subheading The @code{-target-list-current-targets} Command
36603 @findex -target-list-current-targets
36604
36605 @subsubheading Synopsis
36606
36607 @smallexample
36608 -target-list-current-targets
36609 @end smallexample
36610
36611 Describe the current target.
36612
36613 @subsubheading @value{GDBN} Command
36614
36615 The corresponding information is printed by @samp{info file} (among
36616 other things).
36617
36618 @subsubheading Example
36619 N.A.
36620
36621
36622 @subheading The @code{-target-list-parameters} Command
36623 @findex -target-list-parameters
36624
36625 @subsubheading Synopsis
36626
36627 @smallexample
36628 -target-list-parameters
36629 @end smallexample
36630
36631 @c ????
36632 @end ignore
36633
36634 @subsubheading @value{GDBN} Command
36635
36636 No equivalent.
36637
36638 @subsubheading Example
36639 N.A.
36640
36641 @subheading The @code{-target-flash-erase} Command
36642 @findex -target-flash-erase
36643
36644 @subsubheading Synopsis
36645
36646 @smallexample
36647 -target-flash-erase
36648 @end smallexample
36649
36650 Erases all known flash memory regions on the target.
36651
36652 The corresponding @value{GDBN} command is @samp{flash-erase}.
36653
36654 The output is a list of flash regions that have been erased, with starting
36655 addresses and memory region sizes.
36656
36657 @smallexample
36658 (gdb)
36659 -target-flash-erase
36660 ^done,erased-regions=@{address="0x0",size="0x40000"@}
36661 (gdb)
36662 @end smallexample
36663
36664 @subheading The @code{-target-select} Command
36665 @findex -target-select
36666
36667 @subsubheading Synopsis
36668
36669 @smallexample
36670 -target-select @var{type} @var{parameters @dots{}}
36671 @end smallexample
36672
36673 Connect @value{GDBN} to the remote target. This command takes two args:
36674
36675 @table @samp
36676 @item @var{type}
36677 The type of target, for instance @samp{remote}, etc.
36678 @item @var{parameters}
36679 Device names, host names and the like. @xref{Target Commands, ,
36680 Commands for Managing Targets}, for more details.
36681 @end table
36682
36683 The output is a connection notification, followed by the address at
36684 which the target program is, in the following form:
36685
36686 @smallexample
36687 ^connected,addr="@var{address}",func="@var{function name}",
36688 args=[@var{arg list}]
36689 @end smallexample
36690
36691 @subsubheading @value{GDBN} Command
36692
36693 The corresponding @value{GDBN} command is @samp{target}.
36694
36695 @subsubheading Example
36696
36697 @smallexample
36698 (gdb)
36699 -target-select remote /dev/ttya
36700 ^connected,addr="0xfe00a300",func="??",args=[]
36701 (gdb)
36702 @end smallexample
36703
36704 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36705 @node GDB/MI File Transfer Commands
36706 @section @sc{gdb/mi} File Transfer Commands
36707
36708
36709 @subheading The @code{-target-file-put} Command
36710 @findex -target-file-put
36711
36712 @subsubheading Synopsis
36713
36714 @smallexample
36715 -target-file-put @var{hostfile} @var{targetfile}
36716 @end smallexample
36717
36718 Copy file @var{hostfile} from the host system (the machine running
36719 @value{GDBN}) to @var{targetfile} on the target system.
36720
36721 @subsubheading @value{GDBN} Command
36722
36723 The corresponding @value{GDBN} command is @samp{remote put}.
36724
36725 @subsubheading Example
36726
36727 @smallexample
36728 (gdb)
36729 -target-file-put localfile remotefile
36730 ^done
36731 (gdb)
36732 @end smallexample
36733
36734
36735 @subheading The @code{-target-file-get} Command
36736 @findex -target-file-get
36737
36738 @subsubheading Synopsis
36739
36740 @smallexample
36741 -target-file-get @var{targetfile} @var{hostfile}
36742 @end smallexample
36743
36744 Copy file @var{targetfile} from the target system to @var{hostfile}
36745 on the host system.
36746
36747 @subsubheading @value{GDBN} Command
36748
36749 The corresponding @value{GDBN} command is @samp{remote get}.
36750
36751 @subsubheading Example
36752
36753 @smallexample
36754 (gdb)
36755 -target-file-get remotefile localfile
36756 ^done
36757 (gdb)
36758 @end smallexample
36759
36760
36761 @subheading The @code{-target-file-delete} Command
36762 @findex -target-file-delete
36763
36764 @subsubheading Synopsis
36765
36766 @smallexample
36767 -target-file-delete @var{targetfile}
36768 @end smallexample
36769
36770 Delete @var{targetfile} from the target system.
36771
36772 @subsubheading @value{GDBN} Command
36773
36774 The corresponding @value{GDBN} command is @samp{remote delete}.
36775
36776 @subsubheading Example
36777
36778 @smallexample
36779 (gdb)
36780 -target-file-delete remotefile
36781 ^done
36782 (gdb)
36783 @end smallexample
36784
36785
36786 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36787 @node GDB/MI Ada Exceptions Commands
36788 @section Ada Exceptions @sc{gdb/mi} Commands
36789
36790 @subheading The @code{-info-ada-exceptions} Command
36791 @findex -info-ada-exceptions
36792
36793 @subsubheading Synopsis
36794
36795 @smallexample
36796 -info-ada-exceptions [ @var{regexp}]
36797 @end smallexample
36798
36799 List all Ada exceptions defined within the program being debugged.
36800 With a regular expression @var{regexp}, only those exceptions whose
36801 names match @var{regexp} are listed.
36802
36803 @subsubheading @value{GDBN} Command
36804
36805 The corresponding @value{GDBN} command is @samp{info exceptions}.
36806
36807 @subsubheading Result
36808
36809 The result is a table of Ada exceptions. The following columns are
36810 defined for each exception:
36811
36812 @table @samp
36813 @item name
36814 The name of the exception.
36815
36816 @item address
36817 The address of the exception.
36818
36819 @end table
36820
36821 @subsubheading Example
36822
36823 @smallexample
36824 -info-ada-exceptions aint
36825 ^done,ada-exceptions=@{nr_rows="2",nr_cols="2",
36826 hdr=[@{width="1",alignment="-1",col_name="name",colhdr="Name"@},
36827 @{width="1",alignment="-1",col_name="address",colhdr="Address"@}],
36828 body=[@{name="constraint_error",address="0x0000000000613da0"@},
36829 @{name="const.aint_global_e",address="0x0000000000613b00"@}]@}
36830 @end smallexample
36831
36832 @subheading Catching Ada Exceptions
36833
36834 The commands describing how to ask @value{GDBN} to stop when a program
36835 raises an exception are described at @ref{Ada Exception GDB/MI
36836 Catchpoint Commands}.
36837
36838
36839 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36840 @node GDB/MI Support Commands
36841 @section @sc{gdb/mi} Support Commands
36842
36843 Since new commands and features get regularly added to @sc{gdb/mi},
36844 some commands are available to help front-ends query the debugger
36845 about support for these capabilities. Similarly, it is also possible
36846 to query @value{GDBN} about target support of certain features.
36847
36848 @subheading The @code{-info-gdb-mi-command} Command
36849 @cindex @code{-info-gdb-mi-command}
36850 @findex -info-gdb-mi-command
36851
36852 @subsubheading Synopsis
36853
36854 @smallexample
36855 -info-gdb-mi-command @var{cmd_name}
36856 @end smallexample
36857
36858 Query support for the @sc{gdb/mi} command named @var{cmd_name}.
36859
36860 Note that the dash (@code{-}) starting all @sc{gdb/mi} commands
36861 is technically not part of the command name (@pxref{GDB/MI Input
36862 Syntax}), and thus should be omitted in @var{cmd_name}. However,
36863 for ease of use, this command also accepts the form with the leading
36864 dash.
36865
36866 @subsubheading @value{GDBN} Command
36867
36868 There is no corresponding @value{GDBN} command.
36869
36870 @subsubheading Result
36871
36872 The result is a tuple. There is currently only one field:
36873
36874 @table @samp
36875 @item exists
36876 This field is equal to @code{"true"} if the @sc{gdb/mi} command exists,
36877 @code{"false"} otherwise.
36878
36879 @end table
36880
36881 @subsubheading Example
36882
36883 Here is an example where the @sc{gdb/mi} command does not exist:
36884
36885 @smallexample
36886 -info-gdb-mi-command unsupported-command
36887 ^done,command=@{exists="false"@}
36888 @end smallexample
36889
36890 @noindent
36891 And here is an example where the @sc{gdb/mi} command is known
36892 to the debugger:
36893
36894 @smallexample
36895 -info-gdb-mi-command symbol-list-lines
36896 ^done,command=@{exists="true"@}
36897 @end smallexample
36898
36899 @subheading The @code{-list-features} Command
36900 @findex -list-features
36901 @cindex supported @sc{gdb/mi} features, list
36902
36903 Returns a list of particular features of the MI protocol that
36904 this version of gdb implements. A feature can be a command,
36905 or a new field in an output of some command, or even an
36906 important bugfix. While a frontend can sometimes detect presence
36907 of a feature at runtime, it is easier to perform detection at debugger
36908 startup.
36909
36910 The command returns a list of strings, with each string naming an
36911 available feature. Each returned string is just a name, it does not
36912 have any internal structure. The list of possible feature names
36913 is given below.
36914
36915 Example output:
36916
36917 @smallexample
36918 (gdb) -list-features
36919 ^done,result=["feature1","feature2"]
36920 @end smallexample
36921
36922 The current list of features is:
36923
36924 @ftable @samp
36925 @item frozen-varobjs
36926 Indicates support for the @code{-var-set-frozen} command, as well
36927 as possible presence of the @code{frozen} field in the output
36928 of @code{-varobj-create}.
36929 @item pending-breakpoints
36930 Indicates support for the @option{-f} option to the @code{-break-insert}
36931 command.
36932 @item python
36933 Indicates Python scripting support, Python-based
36934 pretty-printing commands, and possible presence of the
36935 @samp{display_hint} field in the output of @code{-var-list-children}
36936 @item thread-info
36937 Indicates support for the @code{-thread-info} command.
36938 @item data-read-memory-bytes
36939 Indicates support for the @code{-data-read-memory-bytes} and the
36940 @code{-data-write-memory-bytes} commands.
36941 @item breakpoint-notifications
36942 Indicates that changes to breakpoints and breakpoints created via the
36943 CLI will be announced via async records.
36944 @item ada-task-info
36945 Indicates support for the @code{-ada-task-info} command.
36946 @item language-option
36947 Indicates that all @sc{gdb/mi} commands accept the @option{--language}
36948 option (@pxref{Context management}).
36949 @item info-gdb-mi-command
36950 Indicates support for the @code{-info-gdb-mi-command} command.
36951 @item undefined-command-error-code
36952 Indicates support for the "undefined-command" error code in error result
36953 records, produced when trying to execute an undefined @sc{gdb/mi} command
36954 (@pxref{GDB/MI Result Records}).
36955 @item exec-run-start-option
36956 Indicates that the @code{-exec-run} command supports the @option{--start}
36957 option (@pxref{GDB/MI Program Execution}).
36958 @item data-disassemble-a-option
36959 Indicates that the @code{-data-disassemble} command supports the @option{-a}
36960 option (@pxref{GDB/MI Data Manipulation}).
36961 @end ftable
36962
36963 @subheading The @code{-list-target-features} Command
36964 @findex -list-target-features
36965
36966 Returns a list of particular features that are supported by the
36967 target. Those features affect the permitted MI commands, but
36968 unlike the features reported by the @code{-list-features} command, the
36969 features depend on which target GDB is using at the moment. Whenever
36970 a target can change, due to commands such as @code{-target-select},
36971 @code{-target-attach} or @code{-exec-run}, the list of target features
36972 may change, and the frontend should obtain it again.
36973 Example output:
36974
36975 @smallexample
36976 (gdb) -list-target-features
36977 ^done,result=["async"]
36978 @end smallexample
36979
36980 The current list of features is:
36981
36982 @table @samp
36983 @item async
36984 Indicates that the target is capable of asynchronous command
36985 execution, which means that @value{GDBN} will accept further commands
36986 while the target is running.
36987
36988 @item reverse
36989 Indicates that the target is capable of reverse execution.
36990 @xref{Reverse Execution}, for more information.
36991
36992 @end table
36993
36994 @c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36995 @node GDB/MI Miscellaneous Commands
36996 @section Miscellaneous @sc{gdb/mi} Commands
36997
36998 @c @subheading -gdb-complete
36999
37000 @subheading The @code{-gdb-exit} Command
37001 @findex -gdb-exit
37002
37003 @subsubheading Synopsis
37004
37005 @smallexample
37006 -gdb-exit
37007 @end smallexample
37008
37009 Exit @value{GDBN} immediately.
37010
37011 @subsubheading @value{GDBN} Command
37012
37013 Approximately corresponds to @samp{quit}.
37014
37015 @subsubheading Example
37016
37017 @smallexample
37018 (gdb)
37019 -gdb-exit
37020 ^exit
37021 @end smallexample
37022
37023
37024 @ignore
37025 @subheading The @code{-exec-abort} Command
37026 @findex -exec-abort
37027
37028 @subsubheading Synopsis
37029
37030 @smallexample
37031 -exec-abort
37032 @end smallexample
37033
37034 Kill the inferior running program.
37035
37036 @subsubheading @value{GDBN} Command
37037
37038 The corresponding @value{GDBN} command is @samp{kill}.
37039
37040 @subsubheading Example
37041 N.A.
37042 @end ignore
37043
37044
37045 @subheading The @code{-gdb-set} Command
37046 @findex -gdb-set
37047
37048 @subsubheading Synopsis
37049
37050 @smallexample
37051 -gdb-set
37052 @end smallexample
37053
37054 Set an internal @value{GDBN} variable.
37055 @c IS THIS A DOLLAR VARIABLE? OR SOMETHING LIKE ANNOTATE ?????
37056
37057 @subsubheading @value{GDBN} Command
37058
37059 The corresponding @value{GDBN} command is @samp{set}.
37060
37061 @subsubheading Example
37062
37063 @smallexample
37064 (gdb)
37065 -gdb-set $foo=3
37066 ^done
37067 (gdb)
37068 @end smallexample
37069
37070
37071 @subheading The @code{-gdb-show} Command
37072 @findex -gdb-show
37073
37074 @subsubheading Synopsis
37075
37076 @smallexample
37077 -gdb-show
37078 @end smallexample
37079
37080 Show the current value of a @value{GDBN} variable.
37081
37082 @subsubheading @value{GDBN} Command
37083
37084 The corresponding @value{GDBN} command is @samp{show}.
37085
37086 @subsubheading Example
37087
37088 @smallexample
37089 (gdb)
37090 -gdb-show annotate
37091 ^done,value="0"
37092 (gdb)
37093 @end smallexample
37094
37095 @c @subheading -gdb-source
37096
37097
37098 @subheading The @code{-gdb-version} Command
37099 @findex -gdb-version
37100
37101 @subsubheading Synopsis
37102
37103 @smallexample
37104 -gdb-version
37105 @end smallexample
37106
37107 Show version information for @value{GDBN}. Used mostly in testing.
37108
37109 @subsubheading @value{GDBN} Command
37110
37111 The @value{GDBN} equivalent is @samp{show version}. @value{GDBN} by
37112 default shows this information when you start an interactive session.
37113
37114 @subsubheading Example
37115
37116 @c This example modifies the actual output from GDB to avoid overfull
37117 @c box in TeX.
37118 @smallexample
37119 (gdb)
37120 -gdb-version
37121 ~GNU gdb 5.2.1
37122 ~Copyright 2000 Free Software Foundation, Inc.
37123 ~GDB is free software, covered by the GNU General Public License, and
37124 ~you are welcome to change it and/or distribute copies of it under
37125 ~ certain conditions.
37126 ~Type "show copying" to see the conditions.
37127 ~There is absolutely no warranty for GDB. Type "show warranty" for
37128 ~ details.
37129 ~This GDB was configured as
37130 "--host=sparc-sun-solaris2.5.1 --target=ppc-eabi".
37131 ^done
37132 (gdb)
37133 @end smallexample
37134
37135 @subheading The @code{-list-thread-groups} Command
37136 @findex -list-thread-groups
37137
37138 @subheading Synopsis
37139
37140 @smallexample
37141 -list-thread-groups [ --available ] [ --recurse 1 ] [ @var{group} ... ]
37142 @end smallexample
37143
37144 Lists thread groups (@pxref{Thread groups}). When a single thread
37145 group is passed as the argument, lists the children of that group.
37146 When several thread group are passed, lists information about those
37147 thread groups. Without any parameters, lists information about all
37148 top-level thread groups.
37149
37150 Normally, thread groups that are being debugged are reported.
37151 With the @samp{--available} option, @value{GDBN} reports thread groups
37152 available on the target.
37153
37154 The output of this command may have either a @samp{threads} result or
37155 a @samp{groups} result. The @samp{thread} result has a list of tuples
37156 as value, with each tuple describing a thread (@pxref{GDB/MI Thread
37157 Information}). The @samp{groups} result has a list of tuples as value,
37158 each tuple describing a thread group. If top-level groups are
37159 requested (that is, no parameter is passed), or when several groups
37160 are passed, the output always has a @samp{groups} result. The format
37161 of the @samp{group} result is described below.
37162
37163 To reduce the number of roundtrips it's possible to list thread groups
37164 together with their children, by passing the @samp{--recurse} option
37165 and the recursion depth. Presently, only recursion depth of 1 is
37166 permitted. If this option is present, then every reported thread group
37167 will also include its children, either as @samp{group} or
37168 @samp{threads} field.
37169
37170 In general, any combination of option and parameters is permitted, with
37171 the following caveats:
37172
37173 @itemize @bullet
37174 @item
37175 When a single thread group is passed, the output will typically
37176 be the @samp{threads} result. Because threads may not contain
37177 anything, the @samp{recurse} option will be ignored.
37178
37179 @item
37180 When the @samp{--available} option is passed, limited information may
37181 be available. In particular, the list of threads of a process might
37182 be inaccessible. Further, specifying specific thread groups might
37183 not give any performance advantage over listing all thread groups.
37184 The frontend should assume that @samp{-list-thread-groups --available}
37185 is always an expensive operation and cache the results.
37186
37187 @end itemize
37188
37189 The @samp{groups} result is a list of tuples, where each tuple may
37190 have the following fields:
37191
37192 @table @code
37193 @item id
37194 Identifier of the thread group. This field is always present.
37195 The identifier is an opaque string; frontends should not try to
37196 convert it to an integer, even though it might look like one.
37197
37198 @item type
37199 The type of the thread group. At present, only @samp{process} is a
37200 valid type.
37201
37202 @item pid
37203 The target-specific process identifier. This field is only present
37204 for thread groups of type @samp{process} and only if the process exists.
37205
37206 @item exit-code
37207 The exit code of this group's last exited thread, formatted in octal.
37208 This field is only present for thread groups of type @samp{process} and
37209 only if the process is not running.
37210
37211 @item num_children
37212 The number of children this thread group has. This field may be
37213 absent for an available thread group.
37214
37215 @item threads
37216 This field has a list of tuples as value, each tuple describing a
37217 thread. It may be present if the @samp{--recurse} option is
37218 specified, and it's actually possible to obtain the threads.
37219
37220 @item cores
37221 This field is a list of integers, each identifying a core that one
37222 thread of the group is running on. This field may be absent if
37223 such information is not available.
37224
37225 @item executable
37226 The name of the executable file that corresponds to this thread group.
37227 The field is only present for thread groups of type @samp{process},
37228 and only if there is a corresponding executable file.
37229
37230 @end table
37231
37232 @subheading Example
37233
37234 @smallexample
37235 (@value{GDBP})
37236 -list-thread-groups
37237 ^done,groups=[@{id="17",type="process",pid="yyy",num_children="2"@}]
37238 -list-thread-groups 17
37239 ^done,threads=[@{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
37240 frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",args=[]@},state="running"@},
37241 @{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
37242 frame=@{level="0",addr="0x0804891f",func="foo",args=[@{name="i",value="10"@}],
37243 file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},state="running"@}]]
37244 -list-thread-groups --available
37245 ^done,groups=[@{id="17",type="process",pid="yyy",num_children="2",cores=[1,2]@}]
37246 -list-thread-groups --available --recurse 1
37247 ^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
37248 threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
37249 @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},..]
37250 -list-thread-groups --available --recurse 1 17 18
37251 ^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
37252 threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
37253 @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},...]
37254 @end smallexample
37255
37256 @subheading The @code{-info-os} Command
37257 @findex -info-os
37258
37259 @subsubheading Synopsis
37260
37261 @smallexample
37262 -info-os [ @var{type} ]
37263 @end smallexample
37264
37265 If no argument is supplied, the command returns a table of available
37266 operating-system-specific information types. If one of these types is
37267 supplied as an argument @var{type}, then the command returns a table
37268 of data of that type.
37269
37270 The types of information available depend on the target operating
37271 system.
37272
37273 @subsubheading @value{GDBN} Command
37274
37275 The corresponding @value{GDBN} command is @samp{info os}.
37276
37277 @subsubheading Example
37278
37279 When run on a @sc{gnu}/Linux system, the output will look something
37280 like this:
37281
37282 @smallexample
37283 (@value{GDBP})
37284 -info-os
37285 ^done,OSDataTable=@{nr_rows="10",nr_cols="3",
37286 hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="Type"@},
37287 @{width="10",alignment="-1",col_name="col1",colhdr="Description"@},
37288 @{width="10",alignment="-1",col_name="col2",colhdr="Title"@}],
37289 body=[item=@{col0="cpus",col1="Listing of all cpus/cores on the system",
37290 col2="CPUs"@},
37291 item=@{col0="files",col1="Listing of all file descriptors",
37292 col2="File descriptors"@},
37293 item=@{col0="modules",col1="Listing of all loaded kernel modules",
37294 col2="Kernel modules"@},
37295 item=@{col0="msg",col1="Listing of all message queues",
37296 col2="Message queues"@},
37297 item=@{col0="processes",col1="Listing of all processes",
37298 col2="Processes"@},
37299 item=@{col0="procgroups",col1="Listing of all process groups",
37300 col2="Process groups"@},
37301 item=@{col0="semaphores",col1="Listing of all semaphores",
37302 col2="Semaphores"@},
37303 item=@{col0="shm",col1="Listing of all shared-memory regions",
37304 col2="Shared-memory regions"@},
37305 item=@{col0="sockets",col1="Listing of all internet-domain sockets",
37306 col2="Sockets"@},
37307 item=@{col0="threads",col1="Listing of all threads",
37308 col2="Threads"@}]
37309 (@value{GDBP})
37310 -info-os processes
37311 ^done,OSDataTable=@{nr_rows="190",nr_cols="4",
37312 hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="pid"@},
37313 @{width="10",alignment="-1",col_name="col1",colhdr="user"@},
37314 @{width="10",alignment="-1",col_name="col2",colhdr="command"@},
37315 @{width="10",alignment="-1",col_name="col3",colhdr="cores"@}],
37316 body=[item=@{col0="1",col1="root",col2="/sbin/init",col3="0"@},
37317 item=@{col0="2",col1="root",col2="[kthreadd]",col3="1"@},
37318 item=@{col0="3",col1="root",col2="[ksoftirqd/0]",col3="0"@},
37319 ...
37320 item=@{col0="26446",col1="stan",col2="bash",col3="0"@},
37321 item=@{col0="28152",col1="stan",col2="bash",col3="1"@}]@}
37322 (@value{GDBP})
37323 @end smallexample
37324
37325 (Note that the MI output here includes a @code{"Title"} column that
37326 does not appear in command-line @code{info os}; this column is useful
37327 for MI clients that want to enumerate the types of data, such as in a
37328 popup menu, but is needless clutter on the command line, and
37329 @code{info os} omits it.)
37330
37331 @subheading The @code{-add-inferior} Command
37332 @findex -add-inferior
37333
37334 @subheading Synopsis
37335
37336 @smallexample
37337 -add-inferior [ --no-connection ]
37338 @end smallexample
37339
37340 Creates a new inferior (@pxref{Inferiors Connections and Programs}). The created
37341 inferior is not associated with any executable. Such association may
37342 be established with the @samp{-file-exec-and-symbols} command
37343 (@pxref{GDB/MI File Commands}).
37344
37345 By default, the new inferior begins connected to the same target
37346 connection as the current inferior. For example, if the current
37347 inferior was connected to @code{gdbserver} with @code{target remote},
37348 then the new inferior will be connected to the same @code{gdbserver}
37349 instance. The @samp{--no-connection} option starts the new inferior
37350 with no connection yet. You can then for example use the
37351 @code{-target-select remote} command to connect to some other
37352 @code{gdbserver} instance, use @code{-exec-run} to spawn a local
37353 program, etc.
37354
37355 The command response always has a field, @var{inferior}, whose value
37356 is the identifier of the thread group corresponding to the new
37357 inferior.
37358
37359 An additional section field, @var{connection}, is optional. This
37360 field will only exist if the new inferior has a target connection. If
37361 this field exists, then its value will be a tuple containing the
37362 following fields:
37363
37364 @table @samp
37365 @item number
37366 The number of the connection used for the new inferior.
37367
37368 @item name
37369 The name of the connection type used for the new inferior.
37370 @end table
37371
37372 @subheading @value{GDBN} Command
37373
37374 The corresponding @value{GDBN} command is @samp{add-inferior}
37375 (@pxref{add_inferior_cli,,@samp{add-inferior}}).
37376
37377 @subheading Example
37378
37379 @smallexample
37380 (@value{GDBP})
37381 -add-inferior
37382 ^done,inferior="i3"
37383 @end smallexample
37384
37385 @subheading The @code{-interpreter-exec} Command
37386 @findex -interpreter-exec
37387
37388 @subheading Synopsis
37389
37390 @smallexample
37391 -interpreter-exec @var{interpreter} @var{command}
37392 @end smallexample
37393 @anchor{-interpreter-exec}
37394
37395 Execute the specified @var{command} in the given @var{interpreter}.
37396
37397 @subheading @value{GDBN} Command
37398
37399 The corresponding @value{GDBN} command is @samp{interpreter-exec}.
37400
37401 @subheading Example
37402
37403 @smallexample
37404 (gdb)
37405 -interpreter-exec console "break main"
37406 &"During symbol reading, couldn't parse type; debugger out of date?.\n"
37407 &"During symbol reading, bad structure-type format.\n"
37408 ~"Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n"
37409 ^done
37410 (gdb)
37411 @end smallexample
37412
37413 @subheading The @code{-inferior-tty-set} Command
37414 @findex -inferior-tty-set
37415
37416 @subheading Synopsis
37417
37418 @smallexample
37419 -inferior-tty-set /dev/pts/1
37420 @end smallexample
37421
37422 Set terminal for future runs of the program being debugged.
37423
37424 @subheading @value{GDBN} Command
37425
37426 The corresponding @value{GDBN} command is @samp{set inferior-tty} /dev/pts/1.
37427
37428 @subheading Example
37429
37430 @smallexample
37431 (gdb)
37432 -inferior-tty-set /dev/pts/1
37433 ^done
37434 (gdb)
37435 @end smallexample
37436
37437 @subheading The @code{-inferior-tty-show} Command
37438 @findex -inferior-tty-show
37439
37440 @subheading Synopsis
37441
37442 @smallexample
37443 -inferior-tty-show
37444 @end smallexample
37445
37446 Show terminal for future runs of program being debugged.
37447
37448 @subheading @value{GDBN} Command
37449
37450 The corresponding @value{GDBN} command is @samp{show inferior-tty}.
37451
37452 @subheading Example
37453
37454 @smallexample
37455 (gdb)
37456 -inferior-tty-set /dev/pts/1
37457 ^done
37458 (gdb)
37459 -inferior-tty-show
37460 ^done,inferior_tty_terminal="/dev/pts/1"
37461 (gdb)
37462 @end smallexample
37463
37464 @subheading The @code{-enable-timings} Command
37465 @findex -enable-timings
37466
37467 @subheading Synopsis
37468
37469 @smallexample
37470 -enable-timings [yes | no]
37471 @end smallexample
37472
37473 Toggle the printing of the wallclock, user and system times for an MI
37474 command as a field in its output. This command is to help frontend
37475 developers optimize the performance of their code. No argument is
37476 equivalent to @samp{yes}.
37477
37478 @subheading @value{GDBN} Command
37479
37480 No equivalent.
37481
37482 @subheading Example
37483
37484 @smallexample
37485 (gdb)
37486 -enable-timings
37487 ^done
37488 (gdb)
37489 -break-insert main
37490 ^done,bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
37491 addr="0x080484ed",func="main",file="myprog.c",
37492 fullname="/home/nickrob/myprog.c",line="73",thread-groups=["i1"],
37493 times="0"@},
37494 time=@{wallclock="0.05185",user="0.00800",system="0.00000"@}
37495 (gdb)
37496 -enable-timings no
37497 ^done
37498 (gdb)
37499 -exec-run
37500 ^running
37501 (gdb)
37502 *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
37503 frame=@{addr="0x080484ed",func="main",args=[@{name="argc",value="1"@},
37504 @{name="argv",value="0xbfb60364"@}],file="myprog.c",
37505 fullname="/home/nickrob/myprog.c",line="73",arch="i386:x86_64"@}
37506 (gdb)
37507 @end smallexample
37508
37509 @subheading The @code{-complete} Command
37510 @findex -complete
37511
37512 @subheading Synopsis
37513
37514 @smallexample
37515 -complete @var{command}
37516 @end smallexample
37517
37518 Show a list of completions for partially typed CLI @var{command}.
37519
37520 This command is intended for @sc{gdb/mi} frontends that cannot use two separate
37521 CLI and MI channels --- for example: because of lack of PTYs like on Windows or
37522 because @value{GDBN} is used remotely via a SSH connection.
37523
37524 @subheading Result
37525
37526 The result consists of two or three fields:
37527
37528 @table @samp
37529 @item completion
37530 This field contains the completed @var{command}. If @var{command}
37531 has no known completions, this field is omitted.
37532
37533 @item matches
37534 This field contains a (possibly empty) array of matches. It is always present.
37535
37536 @item max_completions_reached
37537 This field contains @code{1} if number of known completions is above
37538 @code{max-completions} limit (@pxref{Completion}), otherwise it contains
37539 @code{0}. It is always present.
37540
37541 @end table
37542
37543 @subheading @value{GDBN} Command
37544
37545 The corresponding @value{GDBN} command is @samp{complete}.
37546
37547 @subheading Example
37548
37549 @smallexample
37550 (gdb)
37551 -complete br
37552 ^done,completion="break",
37553 matches=["break","break-range"],
37554 max_completions_reached="0"
37555 (gdb)
37556 -complete "b ma"
37557 ^done,completion="b ma",
37558 matches=["b madvise","b main"],max_completions_reached="0"
37559 (gdb)
37560 -complete "b push_b"
37561 ^done,completion="b push_back(",
37562 matches=[
37563 "b A::push_back(void*)",
37564 "b std::string::push_back(char)",
37565 "b std::vector<int, std::allocator<int> >::push_back(int&&)"],
37566 max_completions_reached="0"
37567 (gdb)
37568 -complete "nonexist"
37569 ^done,matches=[],max_completions_reached="0"
37570 (gdb)
37571
37572 @end smallexample
37573
37574 @node Annotations
37575 @chapter @value{GDBN} Annotations
37576
37577 This chapter describes annotations in @value{GDBN}. Annotations were
37578 designed to interface @value{GDBN} to graphical user interfaces or other
37579 similar programs which want to interact with @value{GDBN} at a
37580 relatively high level.
37581
37582 The annotation mechanism has largely been superseded by @sc{gdb/mi}
37583 (@pxref{GDB/MI}).
37584
37585 @ignore
37586 This is Edition @value{EDITION}, @value{DATE}.
37587 @end ignore
37588
37589 @menu
37590 * Annotations Overview:: What annotations are; the general syntax.
37591 * Server Prefix:: Issuing a command without affecting user state.
37592 * Prompting:: Annotations marking @value{GDBN}'s need for input.
37593 * Errors:: Annotations for error messages.
37594 * Invalidation:: Some annotations describe things now invalid.
37595 * Annotations for Running::
37596 Whether the program is running, how it stopped, etc.
37597 * Source Annotations:: Annotations describing source code.
37598 @end menu
37599
37600 @node Annotations Overview
37601 @section What is an Annotation?
37602 @cindex annotations
37603
37604 Annotations start with a newline character, two @samp{control-z}
37605 characters, and the name of the annotation. If there is no additional
37606 information associated with this annotation, the name of the annotation
37607 is followed immediately by a newline. If there is additional
37608 information, the name of the annotation is followed by a space, the
37609 additional information, and a newline. The additional information
37610 cannot contain newline characters.
37611
37612 Any output not beginning with a newline and two @samp{control-z}
37613 characters denotes literal output from @value{GDBN}. Currently there is
37614 no need for @value{GDBN} to output a newline followed by two
37615 @samp{control-z} characters, but if there was such a need, the
37616 annotations could be extended with an @samp{escape} annotation which
37617 means those three characters as output.
37618
37619 The annotation @var{level}, which is specified using the
37620 @option{--annotate} command line option (@pxref{Mode Options}), controls
37621 how much information @value{GDBN} prints together with its prompt,
37622 values of expressions, source lines, and other types of output. Level 0
37623 is for no annotations, level 1 is for use when @value{GDBN} is run as a
37624 subprocess of @sc{gnu} Emacs, level 3 is the maximum annotation suitable
37625 for programs that control @value{GDBN}, and level 2 annotations have
37626 been made obsolete (@pxref{Limitations, , Limitations of the Annotation
37627 Interface, annotate, GDB's Obsolete Annotations}).
37628
37629 @table @code
37630 @kindex set annotate
37631 @item set annotate @var{level}
37632 The @value{GDBN} command @code{set annotate} sets the level of
37633 annotations to the specified @var{level}.
37634
37635 @item show annotate
37636 @kindex show annotate
37637 Show the current annotation level.
37638 @end table
37639
37640 This chapter describes level 3 annotations.
37641
37642 A simple example of starting up @value{GDBN} with annotations is:
37643
37644 @smallexample
37645 $ @kbd{gdb --annotate=3}
37646 GNU gdb 6.0
37647 Copyright 2003 Free Software Foundation, Inc.
37648 GDB is free software, covered by the GNU General Public License,
37649 and you are welcome to change it and/or distribute copies of it
37650 under certain conditions.
37651 Type "show copying" to see the conditions.
37652 There is absolutely no warranty for GDB. Type "show warranty"
37653 for details.
37654 This GDB was configured as "i386-pc-linux-gnu"
37655
37656 ^Z^Zpre-prompt
37657 (@value{GDBP})
37658 ^Z^Zprompt
37659 @kbd{quit}
37660
37661 ^Z^Zpost-prompt
37662 $
37663 @end smallexample
37664
37665 Here @samp{quit} is input to @value{GDBN}; the rest is output from
37666 @value{GDBN}. The three lines beginning @samp{^Z^Z} (where @samp{^Z}
37667 denotes a @samp{control-z} character) are annotations; the rest is
37668 output from @value{GDBN}.
37669
37670 @node Server Prefix
37671 @section The Server Prefix
37672 @cindex server prefix
37673
37674 If you prefix a command with @samp{server } then it will not affect
37675 the command history, nor will it affect @value{GDBN}'s notion of which
37676 command to repeat if @key{RET} is pressed on a line by itself. This
37677 means that commands can be run behind a user's back by a front-end in
37678 a transparent manner.
37679
37680 The @code{server } prefix does not affect the recording of values into
37681 the value history; to print a value without recording it into the
37682 value history, use the @code{output} command instead of the
37683 @code{print} command.
37684
37685 Using this prefix also disables confirmation requests
37686 (@pxref{confirmation requests}).
37687
37688 @node Prompting
37689 @section Annotation for @value{GDBN} Input
37690
37691 @cindex annotations for prompts
37692 When @value{GDBN} prompts for input, it annotates this fact so it is possible
37693 to know when to send output, when the output from a given command is
37694 over, etc.
37695
37696 Different kinds of input each have a different @dfn{input type}. Each
37697 input type has three annotations: a @code{pre-} annotation, which
37698 denotes the beginning of any prompt which is being output, a plain
37699 annotation, which denotes the end of the prompt, and then a @code{post-}
37700 annotation which denotes the end of any echo which may (or may not) be
37701 associated with the input. For example, the @code{prompt} input type
37702 features the following annotations:
37703
37704 @smallexample
37705 ^Z^Zpre-prompt
37706 ^Z^Zprompt
37707 ^Z^Zpost-prompt
37708 @end smallexample
37709
37710 The input types are
37711
37712 @table @code
37713 @findex pre-prompt annotation
37714 @findex prompt annotation
37715 @findex post-prompt annotation
37716 @item prompt
37717 When @value{GDBN} is prompting for a command (the main @value{GDBN} prompt).
37718
37719 @findex pre-commands annotation
37720 @findex commands annotation
37721 @findex post-commands annotation
37722 @item commands
37723 When @value{GDBN} prompts for a set of commands, like in the @code{commands}
37724 command. The annotations are repeated for each command which is input.
37725
37726 @findex pre-overload-choice annotation
37727 @findex overload-choice annotation
37728 @findex post-overload-choice annotation
37729 @item overload-choice
37730 When @value{GDBN} wants the user to select between various overloaded functions.
37731
37732 @findex pre-query annotation
37733 @findex query annotation
37734 @findex post-query annotation
37735 @item query
37736 When @value{GDBN} wants the user to confirm a potentially dangerous operation.
37737
37738 @findex pre-prompt-for-continue annotation
37739 @findex prompt-for-continue annotation
37740 @findex post-prompt-for-continue annotation
37741 @item prompt-for-continue
37742 When @value{GDBN} is asking the user to press return to continue. Note: Don't
37743 expect this to work well; instead use @code{set height 0} to disable
37744 prompting. This is because the counting of lines is buggy in the
37745 presence of annotations.
37746 @end table
37747
37748 @node Errors
37749 @section Errors
37750 @cindex annotations for errors, warnings and interrupts
37751
37752 @findex quit annotation
37753 @smallexample
37754 ^Z^Zquit
37755 @end smallexample
37756
37757 This annotation occurs right before @value{GDBN} responds to an interrupt.
37758
37759 @findex error annotation
37760 @smallexample
37761 ^Z^Zerror
37762 @end smallexample
37763
37764 This annotation occurs right before @value{GDBN} responds to an error.
37765
37766 Quit and error annotations indicate that any annotations which @value{GDBN} was
37767 in the middle of may end abruptly. For example, if a
37768 @code{value-history-begin} annotation is followed by a @code{error}, one
37769 cannot expect to receive the matching @code{value-history-end}. One
37770 cannot expect not to receive it either, however; an error annotation
37771 does not necessarily mean that @value{GDBN} is immediately returning all the way
37772 to the top level.
37773
37774 @findex error-begin annotation
37775 A quit or error annotation may be preceded by
37776
37777 @smallexample
37778 ^Z^Zerror-begin
37779 @end smallexample
37780
37781 Any output between that and the quit or error annotation is the error
37782 message.
37783
37784 Warning messages are not yet annotated.
37785 @c If we want to change that, need to fix warning(), type_error(),
37786 @c range_error(), and possibly other places.
37787
37788 @node Invalidation
37789 @section Invalidation Notices
37790
37791 @cindex annotations for invalidation messages
37792 The following annotations say that certain pieces of state may have
37793 changed.
37794
37795 @table @code
37796 @findex frames-invalid annotation
37797 @item ^Z^Zframes-invalid
37798
37799 The frames (for example, output from the @code{backtrace} command) may
37800 have changed.
37801
37802 @findex breakpoints-invalid annotation
37803 @item ^Z^Zbreakpoints-invalid
37804
37805 The breakpoints may have changed. For example, the user just added or
37806 deleted a breakpoint.
37807 @end table
37808
37809 @node Annotations for Running
37810 @section Running the Program
37811 @cindex annotations for running programs
37812
37813 @findex starting annotation
37814 @findex stopping annotation
37815 When the program starts executing due to a @value{GDBN} command such as
37816 @code{step} or @code{continue},
37817
37818 @smallexample
37819 ^Z^Zstarting
37820 @end smallexample
37821
37822 is output. When the program stops,
37823
37824 @smallexample
37825 ^Z^Zstopped
37826 @end smallexample
37827
37828 is output. Before the @code{stopped} annotation, a variety of
37829 annotations describe how the program stopped.
37830
37831 @table @code
37832 @findex exited annotation
37833 @item ^Z^Zexited @var{exit-status}
37834 The program exited, and @var{exit-status} is the exit status (zero for
37835 successful exit, otherwise nonzero).
37836
37837 @findex signalled annotation
37838 @findex signal-name annotation
37839 @findex signal-name-end annotation
37840 @findex signal-string annotation
37841 @findex signal-string-end annotation
37842 @item ^Z^Zsignalled
37843 The program exited with a signal. After the @code{^Z^Zsignalled}, the
37844 annotation continues:
37845
37846 @smallexample
37847 @var{intro-text}
37848 ^Z^Zsignal-name
37849 @var{name}
37850 ^Z^Zsignal-name-end
37851 @var{middle-text}
37852 ^Z^Zsignal-string
37853 @var{string}
37854 ^Z^Zsignal-string-end
37855 @var{end-text}
37856 @end smallexample
37857
37858 @noindent
37859 where @var{name} is the name of the signal, such as @code{SIGILL} or
37860 @code{SIGSEGV}, and @var{string} is the explanation of the signal, such
37861 as @code{Illegal Instruction} or @code{Segmentation fault}. The arguments
37862 @var{intro-text}, @var{middle-text}, and @var{end-text} are for the
37863 user's benefit and have no particular format.
37864
37865 @findex signal annotation
37866 @item ^Z^Zsignal
37867 The syntax of this annotation is just like @code{signalled}, but @value{GDBN} is
37868 just saying that the program received the signal, not that it was
37869 terminated with it.
37870
37871 @findex breakpoint annotation
37872 @item ^Z^Zbreakpoint @var{number}
37873 The program hit breakpoint number @var{number}.
37874
37875 @findex watchpoint annotation
37876 @item ^Z^Zwatchpoint @var{number}
37877 The program hit watchpoint number @var{number}.
37878 @end table
37879
37880 @node Source Annotations
37881 @section Displaying Source
37882 @cindex annotations for source display
37883
37884 @findex source annotation
37885 The following annotation is used instead of displaying source code:
37886
37887 @smallexample
37888 ^Z^Zsource @var{filename}:@var{line}:@var{character}:@var{middle}:@var{addr}
37889 @end smallexample
37890
37891 where @var{filename} is an absolute file name indicating which source
37892 file, @var{line} is the line number within that file (where 1 is the
37893 first line in the file), @var{character} is the character position
37894 within the file (where 0 is the first character in the file) (for most
37895 debug formats this will necessarily point to the beginning of a line),
37896 @var{middle} is @samp{middle} if @var{addr} is in the middle of the
37897 line, or @samp{beg} if @var{addr} is at the beginning of the line, and
37898 @var{addr} is the address in the target program associated with the
37899 source which is being displayed. The @var{addr} is in the form @samp{0x}
37900 followed by one or more lowercase hex digits (note that this does not
37901 depend on the language).
37902
37903 @node JIT Interface
37904 @chapter JIT Compilation Interface
37905 @cindex just-in-time compilation
37906 @cindex JIT compilation interface
37907
37908 This chapter documents @value{GDBN}'s @dfn{just-in-time} (JIT) compilation
37909 interface. A JIT compiler is a program or library that generates native
37910 executable code at runtime and executes it, usually in order to achieve good
37911 performance while maintaining platform independence.
37912
37913 Programs that use JIT compilation are normally difficult to debug because
37914 portions of their code are generated at runtime, instead of being loaded from
37915 object files, which is where @value{GDBN} normally finds the program's symbols
37916 and debug information. In order to debug programs that use JIT compilation,
37917 @value{GDBN} has an interface that allows the program to register in-memory
37918 symbol files with @value{GDBN} at runtime.
37919
37920 If you are using @value{GDBN} to debug a program that uses this interface, then
37921 it should work transparently so long as you have not stripped the binary. If
37922 you are developing a JIT compiler, then the interface is documented in the rest
37923 of this chapter. At this time, the only known client of this interface is the
37924 LLVM JIT.
37925
37926 Broadly speaking, the JIT interface mirrors the dynamic loader interface. The
37927 JIT compiler communicates with @value{GDBN} by writing data into a global
37928 variable and calling a function at a well-known symbol. When @value{GDBN}
37929 attaches, it reads a linked list of symbol files from the global variable to
37930 find existing code, and puts a breakpoint in the function so that it can find
37931 out about additional code.
37932
37933 @menu
37934 * Declarations:: Relevant C struct declarations
37935 * Registering Code:: Steps to register code
37936 * Unregistering Code:: Steps to unregister code
37937 * Custom Debug Info:: Emit debug information in a custom format
37938 @end menu
37939
37940 @node Declarations
37941 @section JIT Declarations
37942
37943 These are the relevant struct declarations that a C program should include to
37944 implement the interface:
37945
37946 @smallexample
37947 typedef enum
37948 @{
37949 JIT_NOACTION = 0,
37950 JIT_REGISTER_FN,
37951 JIT_UNREGISTER_FN
37952 @} jit_actions_t;
37953
37954 struct jit_code_entry
37955 @{
37956 struct jit_code_entry *next_entry;
37957 struct jit_code_entry *prev_entry;
37958 const char *symfile_addr;
37959 uint64_t symfile_size;
37960 @};
37961
37962 struct jit_descriptor
37963 @{
37964 uint32_t version;
37965 /* This type should be jit_actions_t, but we use uint32_t
37966 to be explicit about the bitwidth. */
37967 uint32_t action_flag;
37968 struct jit_code_entry *relevant_entry;
37969 struct jit_code_entry *first_entry;
37970 @};
37971
37972 /* GDB puts a breakpoint in this function. */
37973 void __attribute__((noinline)) __jit_debug_register_code() @{ @};
37974
37975 /* Make sure to specify the version statically, because the
37976 debugger may check the version before we can set it. */
37977 struct jit_descriptor __jit_debug_descriptor = @{ 1, 0, 0, 0 @};
37978 @end smallexample
37979
37980 If the JIT is multi-threaded, then it is important that the JIT synchronize any
37981 modifications to this global data properly, which can easily be done by putting
37982 a global mutex around modifications to these structures.
37983
37984 @node Registering Code
37985 @section Registering Code
37986
37987 To register code with @value{GDBN}, the JIT should follow this protocol:
37988
37989 @itemize @bullet
37990 @item
37991 Generate an object file in memory with symbols and other desired debug
37992 information. The file must include the virtual addresses of the sections.
37993
37994 @item
37995 Create a code entry for the file, which gives the start and size of the symbol
37996 file.
37997
37998 @item
37999 Add it to the linked list in the JIT descriptor.
38000
38001 @item
38002 Point the relevant_entry field of the descriptor at the entry.
38003
38004 @item
38005 Set @code{action_flag} to @code{JIT_REGISTER} and call
38006 @code{__jit_debug_register_code}.
38007 @end itemize
38008
38009 When @value{GDBN} is attached and the breakpoint fires, @value{GDBN} uses the
38010 @code{relevant_entry} pointer so it doesn't have to walk the list looking for
38011 new code. However, the linked list must still be maintained in order to allow
38012 @value{GDBN} to attach to a running process and still find the symbol files.
38013
38014 @node Unregistering Code
38015 @section Unregistering Code
38016
38017 If code is freed, then the JIT should use the following protocol:
38018
38019 @itemize @bullet
38020 @item
38021 Remove the code entry corresponding to the code from the linked list.
38022
38023 @item
38024 Point the @code{relevant_entry} field of the descriptor at the code entry.
38025
38026 @item
38027 Set @code{action_flag} to @code{JIT_UNREGISTER} and call
38028 @code{__jit_debug_register_code}.
38029 @end itemize
38030
38031 If the JIT frees or recompiles code without unregistering it, then @value{GDBN}
38032 and the JIT will leak the memory used for the associated symbol files.
38033
38034 @node Custom Debug Info
38035 @section Custom Debug Info
38036 @cindex custom JIT debug info
38037 @cindex JIT debug info reader
38038
38039 Generating debug information in platform-native file formats (like ELF
38040 or COFF) may be an overkill for JIT compilers; especially if all the
38041 debug info is used for is displaying a meaningful backtrace. The
38042 issue can be resolved by having the JIT writers decide on a debug info
38043 format and also provide a reader that parses the debug info generated
38044 by the JIT compiler. This section gives a brief overview on writing
38045 such a parser. More specific details can be found in the source file
38046 @file{gdb/jit-reader.in}, which is also installed as a header at
38047 @file{@var{includedir}/gdb/jit-reader.h} for easy inclusion.
38048
38049 The reader is implemented as a shared object (so this functionality is
38050 not available on platforms which don't allow loading shared objects at
38051 runtime). Two @value{GDBN} commands, @code{jit-reader-load} and
38052 @code{jit-reader-unload} are provided, to be used to load and unload
38053 the readers from a preconfigured directory. Once loaded, the shared
38054 object is used the parse the debug information emitted by the JIT
38055 compiler.
38056
38057 @menu
38058 * Using JIT Debug Info Readers:: How to use supplied readers correctly
38059 * Writing JIT Debug Info Readers:: Creating a debug-info reader
38060 @end menu
38061
38062 @node Using JIT Debug Info Readers
38063 @subsection Using JIT Debug Info Readers
38064 @kindex jit-reader-load
38065 @kindex jit-reader-unload
38066
38067 Readers can be loaded and unloaded using the @code{jit-reader-load}
38068 and @code{jit-reader-unload} commands.
38069
38070 @table @code
38071 @item jit-reader-load @var{reader}
38072 Load the JIT reader named @var{reader}, which is a shared
38073 object specified as either an absolute or a relative file name. In
38074 the latter case, @value{GDBN} will try to load the reader from a
38075 pre-configured directory, usually @file{@var{libdir}/gdb/} on a UNIX
38076 system (here @var{libdir} is the system library directory, often
38077 @file{/usr/local/lib}).
38078
38079 Only one reader can be active at a time; trying to load a second
38080 reader when one is already loaded will result in @value{GDBN}
38081 reporting an error. A new JIT reader can be loaded by first unloading
38082 the current one using @code{jit-reader-unload} and then invoking
38083 @code{jit-reader-load}.
38084
38085 @item jit-reader-unload
38086 Unload the currently loaded JIT reader.
38087
38088 @end table
38089
38090 @node Writing JIT Debug Info Readers
38091 @subsection Writing JIT Debug Info Readers
38092 @cindex writing JIT debug info readers
38093
38094 As mentioned, a reader is essentially a shared object conforming to a
38095 certain ABI. This ABI is described in @file{jit-reader.h}.
38096
38097 @file{jit-reader.h} defines the structures, macros and functions
38098 required to write a reader. It is installed (along with
38099 @value{GDBN}), in @file{@var{includedir}/gdb} where @var{includedir} is
38100 the system include directory.
38101
38102 Readers need to be released under a GPL compatible license. A reader
38103 can be declared as released under such a license by placing the macro
38104 @code{GDB_DECLARE_GPL_COMPATIBLE_READER} in a source file.
38105
38106 The entry point for readers is the symbol @code{gdb_init_reader},
38107 which is expected to be a function with the prototype
38108
38109 @findex gdb_init_reader
38110 @smallexample
38111 extern struct gdb_reader_funcs *gdb_init_reader (void);
38112 @end smallexample
38113
38114 @cindex @code{struct gdb_reader_funcs}
38115
38116 @code{struct gdb_reader_funcs} contains a set of pointers to callback
38117 functions. These functions are executed to read the debug info
38118 generated by the JIT compiler (@code{read}), to unwind stack frames
38119 (@code{unwind}) and to create canonical frame IDs
38120 (@code{get_frame_id}). It also has a callback that is called when the
38121 reader is being unloaded (@code{destroy}). The struct looks like this
38122
38123 @smallexample
38124 struct gdb_reader_funcs
38125 @{
38126 /* Must be set to GDB_READER_INTERFACE_VERSION. */
38127 int reader_version;
38128
38129 /* For use by the reader. */
38130 void *priv_data;
38131
38132 gdb_read_debug_info *read;
38133 gdb_unwind_frame *unwind;
38134 gdb_get_frame_id *get_frame_id;
38135 gdb_destroy_reader *destroy;
38136 @};
38137 @end smallexample
38138
38139 @cindex @code{struct gdb_symbol_callbacks}
38140 @cindex @code{struct gdb_unwind_callbacks}
38141
38142 The callbacks are provided with another set of callbacks by
38143 @value{GDBN} to do their job. For @code{read}, these callbacks are
38144 passed in a @code{struct gdb_symbol_callbacks} and for @code{unwind}
38145 and @code{get_frame_id}, in a @code{struct gdb_unwind_callbacks}.
38146 @code{struct gdb_symbol_callbacks} has callbacks to create new object
38147 files and new symbol tables inside those object files. @code{struct
38148 gdb_unwind_callbacks} has callbacks to read registers off the current
38149 frame and to write out the values of the registers in the previous
38150 frame. Both have a callback (@code{target_read}) to read bytes off the
38151 target's address space.
38152
38153 @node In-Process Agent
38154 @chapter In-Process Agent
38155 @cindex debugging agent
38156 The traditional debugging model is conceptually low-speed, but works fine,
38157 because most bugs can be reproduced in debugging-mode execution. However,
38158 as multi-core or many-core processors are becoming mainstream, and
38159 multi-threaded programs become more and more popular, there should be more
38160 and more bugs that only manifest themselves at normal-mode execution, for
38161 example, thread races, because debugger's interference with the program's
38162 timing may conceal the bugs. On the other hand, in some applications,
38163 it is not feasible for the debugger to interrupt the program's execution
38164 long enough for the developer to learn anything helpful about its behavior.
38165 If the program's correctness depends on its real-time behavior, delays
38166 introduced by a debugger might cause the program to fail, even when the
38167 code itself is correct. It is useful to be able to observe the program's
38168 behavior without interrupting it.
38169
38170 Therefore, traditional debugging model is too intrusive to reproduce
38171 some bugs. In order to reduce the interference with the program, we can
38172 reduce the number of operations performed by debugger. The
38173 @dfn{In-Process Agent}, a shared library, is running within the same
38174 process with inferior, and is able to perform some debugging operations
38175 itself. As a result, debugger is only involved when necessary, and
38176 performance of debugging can be improved accordingly. Note that
38177 interference with program can be reduced but can't be removed completely,
38178 because the in-process agent will still stop or slow down the program.
38179
38180 The in-process agent can interpret and execute Agent Expressions
38181 (@pxref{Agent Expressions}) during performing debugging operations. The
38182 agent expressions can be used for different purposes, such as collecting
38183 data in tracepoints, and condition evaluation in breakpoints.
38184
38185 @anchor{Control Agent}
38186 You can control whether the in-process agent is used as an aid for
38187 debugging with the following commands:
38188
38189 @table @code
38190 @kindex set agent on
38191 @item set agent on
38192 Causes the in-process agent to perform some operations on behalf of the
38193 debugger. Just which operations requested by the user will be done
38194 by the in-process agent depends on the its capabilities. For example,
38195 if you request to evaluate breakpoint conditions in the in-process agent,
38196 and the in-process agent has such capability as well, then breakpoint
38197 conditions will be evaluated in the in-process agent.
38198
38199 @kindex set agent off
38200 @item set agent off
38201 Disables execution of debugging operations by the in-process agent. All
38202 of the operations will be performed by @value{GDBN}.
38203
38204 @kindex show agent
38205 @item show agent
38206 Display the current setting of execution of debugging operations by
38207 the in-process agent.
38208 @end table
38209
38210 @menu
38211 * In-Process Agent Protocol::
38212 @end menu
38213
38214 @node In-Process Agent Protocol
38215 @section In-Process Agent Protocol
38216 @cindex in-process agent protocol
38217
38218 The in-process agent is able to communicate with both @value{GDBN} and
38219 GDBserver (@pxref{In-Process Agent}). This section documents the protocol
38220 used for communications between @value{GDBN} or GDBserver and the IPA.
38221 In general, @value{GDBN} or GDBserver sends commands
38222 (@pxref{IPA Protocol Commands}) and data to in-process agent, and then
38223 in-process agent replies back with the return result of the command, or
38224 some other information. The data sent to in-process agent is composed
38225 of primitive data types, such as 4-byte or 8-byte type, and composite
38226 types, which are called objects (@pxref{IPA Protocol Objects}).
38227
38228 @menu
38229 * IPA Protocol Objects::
38230 * IPA Protocol Commands::
38231 @end menu
38232
38233 @node IPA Protocol Objects
38234 @subsection IPA Protocol Objects
38235 @cindex ipa protocol objects
38236
38237 The commands sent to and results received from agent may contain some
38238 complex data types called @dfn{objects}.
38239
38240 The in-process agent is running on the same machine with @value{GDBN}
38241 or GDBserver, so it doesn't have to handle as much differences between
38242 two ends as remote protocol (@pxref{Remote Protocol}) tries to handle.
38243 However, there are still some differences of two ends in two processes:
38244
38245 @enumerate
38246 @item
38247 word size. On some 64-bit machines, @value{GDBN} or GDBserver can be
38248 compiled as a 64-bit executable, while in-process agent is a 32-bit one.
38249 @item
38250 ABI. Some machines may have multiple types of ABI, @value{GDBN} or
38251 GDBserver is compiled with one, and in-process agent is compiled with
38252 the other one.
38253 @end enumerate
38254
38255 Here are the IPA Protocol Objects:
38256
38257 @enumerate
38258 @item
38259 agent expression object. It represents an agent expression
38260 (@pxref{Agent Expressions}).
38261 @anchor{agent expression object}
38262 @item
38263 tracepoint action object. It represents a tracepoint action
38264 (@pxref{Tracepoint Actions,,Tracepoint Action Lists}) to collect registers,
38265 memory, static trace data and to evaluate expression.
38266 @anchor{tracepoint action object}
38267 @item
38268 tracepoint object. It represents a tracepoint (@pxref{Tracepoints}).
38269 @anchor{tracepoint object}
38270
38271 @end enumerate
38272
38273 The following table describes important attributes of each IPA protocol
38274 object:
38275
38276 @multitable @columnfractions .30 .20 .50
38277 @headitem Name @tab Size @tab Description
38278 @item @emph{agent expression object} @tab @tab
38279 @item length @tab 4 @tab length of bytes code
38280 @item byte code @tab @var{length} @tab contents of byte code
38281 @item @emph{tracepoint action for collecting memory} @tab @tab
38282 @item 'M' @tab 1 @tab type of tracepoint action
38283 @item addr @tab 8 @tab if @var{basereg} is @samp{-1}, @var{addr} is the
38284 address of the lowest byte to collect, otherwise @var{addr} is the offset
38285 of @var{basereg} for memory collecting.
38286 @item len @tab 8 @tab length of memory for collecting
38287 @item basereg @tab 4 @tab the register number containing the starting
38288 memory address for collecting.
38289 @item @emph{tracepoint action for collecting registers} @tab @tab
38290 @item 'R' @tab 1 @tab type of tracepoint action
38291 @item @emph{tracepoint action for collecting static trace data} @tab @tab
38292 @item 'L' @tab 1 @tab type of tracepoint action
38293 @item @emph{tracepoint action for expression evaluation} @tab @tab
38294 @item 'X' @tab 1 @tab type of tracepoint action
38295 @item agent expression @tab length of @tab @ref{agent expression object}
38296 @item @emph{tracepoint object} @tab @tab
38297 @item number @tab 4 @tab number of tracepoint
38298 @item address @tab 8 @tab address of tracepoint inserted on
38299 @item type @tab 4 @tab type of tracepoint
38300 @item enabled @tab 1 @tab enable or disable of tracepoint
38301 @item step_count @tab 8 @tab step
38302 @item pass_count @tab 8 @tab pass
38303 @item numactions @tab 4 @tab number of tracepoint actions
38304 @item hit count @tab 8 @tab hit count
38305 @item trace frame usage @tab 8 @tab trace frame usage
38306 @item compiled_cond @tab 8 @tab compiled condition
38307 @item orig_size @tab 8 @tab orig size
38308 @item condition @tab 4 if condition is NULL otherwise length of
38309 @ref{agent expression object}
38310 @tab zero if condition is NULL, otherwise is
38311 @ref{agent expression object}
38312 @item actions @tab variable
38313 @tab numactions number of @ref{tracepoint action object}
38314 @end multitable
38315
38316 @node IPA Protocol Commands
38317 @subsection IPA Protocol Commands
38318 @cindex ipa protocol commands
38319
38320 The spaces in each command are delimiters to ease reading this commands
38321 specification. They don't exist in real commands.
38322
38323 @table @samp
38324
38325 @item FastTrace:@var{tracepoint_object} @var{gdb_jump_pad_head}
38326 Installs a new fast tracepoint described by @var{tracepoint_object}
38327 (@pxref{tracepoint object}). The @var{gdb_jump_pad_head}, 8-byte long, is the
38328 head of @dfn{jumppad}, which is used to jump to data collection routine
38329 in IPA finally.
38330
38331 Replies:
38332 @table @samp
38333 @item OK @var{target_address} @var{gdb_jump_pad_head} @var{fjump_size} @var{fjump}
38334 @var{target_address} is address of tracepoint in the inferior.
38335 The @var{gdb_jump_pad_head} is updated head of jumppad. Both of
38336 @var{target_address} and @var{gdb_jump_pad_head} are 8-byte long.
38337 The @var{fjump} contains a sequence of instructions jump to jumppad entry.
38338 The @var{fjump_size}, 4-byte long, is the size of @var{fjump}.
38339 @item E @var{NN}
38340 for an error
38341
38342 @end table
38343
38344 @item close
38345 Closes the in-process agent. This command is sent when @value{GDBN} or GDBserver
38346 is about to kill inferiors.
38347
38348 @item qTfSTM
38349 @xref{qTfSTM}.
38350 @item qTsSTM
38351 @xref{qTsSTM}.
38352 @item qTSTMat
38353 @xref{qTSTMat}.
38354 @item probe_marker_at:@var{address}
38355 Asks in-process agent to probe the marker at @var{address}.
38356
38357 Replies:
38358 @table @samp
38359 @item E @var{NN}
38360 for an error
38361 @end table
38362 @item unprobe_marker_at:@var{address}
38363 Asks in-process agent to unprobe the marker at @var{address}.
38364 @end table
38365
38366 @node GDB Bugs
38367 @chapter Reporting Bugs in @value{GDBN}
38368 @cindex bugs in @value{GDBN}
38369 @cindex reporting bugs in @value{GDBN}
38370
38371 Your bug reports play an essential role in making @value{GDBN} reliable.
38372
38373 Reporting a bug may help you by bringing a solution to your problem, or it
38374 may not. But in any case the principal function of a bug report is to help
38375 the entire community by making the next version of @value{GDBN} work better. Bug
38376 reports are your contribution to the maintenance of @value{GDBN}.
38377
38378 In order for a bug report to serve its purpose, you must include the
38379 information that enables us to fix the bug.
38380
38381 @menu
38382 * Bug Criteria:: Have you found a bug?
38383 * Bug Reporting:: How to report bugs
38384 @end menu
38385
38386 @node Bug Criteria
38387 @section Have You Found a Bug?
38388 @cindex bug criteria
38389
38390 If you are not sure whether you have found a bug, here are some guidelines:
38391
38392 @itemize @bullet
38393 @cindex fatal signal
38394 @cindex debugger crash
38395 @cindex crash of debugger
38396 @item
38397 If the debugger gets a fatal signal, for any input whatever, that is a
38398 @value{GDBN} bug. Reliable debuggers never crash.
38399
38400 @cindex error on valid input
38401 @item
38402 If @value{GDBN} produces an error message for valid input, that is a
38403 bug. (Note that if you're cross debugging, the problem may also be
38404 somewhere in the connection to the target.)
38405
38406 @cindex invalid input
38407 @item
38408 If @value{GDBN} does not produce an error message for invalid input,
38409 that is a bug. However, you should note that your idea of
38410 ``invalid input'' might be our idea of ``an extension'' or ``support
38411 for traditional practice''.
38412
38413 @item
38414 If you are an experienced user of debugging tools, your suggestions
38415 for improvement of @value{GDBN} are welcome in any case.
38416 @end itemize
38417
38418 @node Bug Reporting
38419 @section How to Report Bugs
38420 @cindex bug reports
38421 @cindex @value{GDBN} bugs, reporting
38422
38423 A number of companies and individuals offer support for @sc{gnu} products.
38424 If you obtained @value{GDBN} from a support organization, we recommend you
38425 contact that organization first.
38426
38427 You can find contact information for many support companies and
38428 individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
38429 distribution.
38430 @c should add a web page ref...
38431
38432 @ifset BUGURL
38433 @ifset BUGURL_DEFAULT
38434 In any event, we also recommend that you submit bug reports for
38435 @value{GDBN}. The preferred method is to submit them directly using
38436 @uref{http://www.gnu.org/software/gdb/bugs/, @value{GDBN}'s Bugs web
38437 page}. Alternatively, the @email{bug-gdb@@gnu.org, e-mail gateway} can
38438 be used.
38439
38440 @strong{Do not send bug reports to @samp{info-gdb}, or to
38441 @samp{help-gdb}, or to any newsgroups.} Most users of @value{GDBN} do
38442 not want to receive bug reports. Those that do have arranged to receive
38443 @samp{bug-gdb}.
38444
38445 The mailing list @samp{bug-gdb} has a newsgroup @samp{gnu.gdb.bug} which
38446 serves as a repeater. The mailing list and the newsgroup carry exactly
38447 the same messages. Often people think of posting bug reports to the
38448 newsgroup instead of mailing them. This appears to work, but it has one
38449 problem which can be crucial: a newsgroup posting often lacks a mail
38450 path back to the sender. Thus, if we need to ask for more information,
38451 we may be unable to reach you. For this reason, it is better to send
38452 bug reports to the mailing list.
38453 @end ifset
38454 @ifclear BUGURL_DEFAULT
38455 In any event, we also recommend that you submit bug reports for
38456 @value{GDBN} to @value{BUGURL}.
38457 @end ifclear
38458 @end ifset
38459
38460 The fundamental principle of reporting bugs usefully is this:
38461 @strong{report all the facts}. If you are not sure whether to state a
38462 fact or leave it out, state it!
38463
38464 Often people omit facts because they think they know what causes the
38465 problem and assume that some details do not matter. Thus, you might
38466 assume that the name of the variable you use in an example does not matter.
38467 Well, probably it does not, but one cannot be sure. Perhaps the bug is a
38468 stray memory reference which happens to fetch from the location where that
38469 name is stored in memory; perhaps, if the name were different, the contents
38470 of that location would fool the debugger into doing the right thing despite
38471 the bug. Play it safe and give a specific, complete example. That is the
38472 easiest thing for you to do, and the most helpful.
38473
38474 Keep in mind that the purpose of a bug report is to enable us to fix the
38475 bug. It may be that the bug has been reported previously, but neither
38476 you nor we can know that unless your bug report is complete and
38477 self-contained.
38478
38479 Sometimes people give a few sketchy facts and ask, ``Does this ring a
38480 bell?'' Those bug reports are useless, and we urge everyone to
38481 @emph{refuse to respond to them} except to chide the sender to report
38482 bugs properly.
38483
38484 To enable us to fix the bug, you should include all these things:
38485
38486 @itemize @bullet
38487 @item
38488 The version of @value{GDBN}. @value{GDBN} announces it if you start
38489 with no arguments; you can also print it at any time using @code{show
38490 version}.
38491
38492 Without this, we will not know whether there is any point in looking for
38493 the bug in the current version of @value{GDBN}.
38494
38495 @item
38496 The type of machine you are using, and the operating system name and
38497 version number.
38498
38499 @item
38500 The details of the @value{GDBN} build-time configuration.
38501 @value{GDBN} shows these details if you invoke it with the
38502 @option{--configuration} command-line option, or if you type
38503 @code{show configuration} at @value{GDBN}'s prompt.
38504
38505 @item
38506 What compiler (and its version) was used to compile @value{GDBN}---e.g.@:
38507 ``@value{GCC}--2.8.1''.
38508
38509 @item
38510 What compiler (and its version) was used to compile the program you are
38511 debugging---e.g.@: ``@value{GCC}--2.8.1'', or ``HP92453-01 A.10.32.03 HP
38512 C Compiler''. For @value{NGCC}, you can say @kbd{@value{GCC} --version}
38513 to get this information; for other compilers, see the documentation for
38514 those compilers.
38515
38516 @item
38517 The command arguments you gave the compiler to compile your example and
38518 observe the bug. For example, did you use @samp{-O}? To guarantee
38519 you will not omit something important, list them all. A copy of the
38520 Makefile (or the output from make) is sufficient.
38521
38522 If we were to try to guess the arguments, we would probably guess wrong
38523 and then we might not encounter the bug.
38524
38525 @item
38526 A complete input script, and all necessary source files, that will
38527 reproduce the bug.
38528
38529 @item
38530 A description of what behavior you observe that you believe is
38531 incorrect. For example, ``It gets a fatal signal.''
38532
38533 Of course, if the bug is that @value{GDBN} gets a fatal signal, then we
38534 will certainly notice it. But if the bug is incorrect output, we might
38535 not notice unless it is glaringly wrong. You might as well not give us
38536 a chance to make a mistake.
38537
38538 Even if the problem you experience is a fatal signal, you should still
38539 say so explicitly. Suppose something strange is going on, such as, your
38540 copy of @value{GDBN} is out of synch, or you have encountered a bug in
38541 the C library on your system. (This has happened!) Your copy might
38542 crash and ours would not. If you told us to expect a crash, then when
38543 ours fails to crash, we would know that the bug was not happening for
38544 us. If you had not told us to expect a crash, then we would not be able
38545 to draw any conclusion from our observations.
38546
38547 @pindex script
38548 @cindex recording a session script
38549 To collect all this information, you can use a session recording program
38550 such as @command{script}, which is available on many Unix systems.
38551 Just run your @value{GDBN} session inside @command{script} and then
38552 include the @file{typescript} file with your bug report.
38553
38554 Another way to record a @value{GDBN} session is to run @value{GDBN}
38555 inside Emacs and then save the entire buffer to a file.
38556
38557 @item
38558 If you wish to suggest changes to the @value{GDBN} source, send us context
38559 diffs. If you even discuss something in the @value{GDBN} source, refer to
38560 it by context, not by line number.
38561
38562 The line numbers in our development sources will not match those in your
38563 sources. Your line numbers would convey no useful information to us.
38564
38565 @end itemize
38566
38567 Here are some things that are not necessary:
38568
38569 @itemize @bullet
38570 @item
38571 A description of the envelope of the bug.
38572
38573 Often people who encounter a bug spend a lot of time investigating
38574 which changes to the input file will make the bug go away and which
38575 changes will not affect it.
38576
38577 This is often time consuming and not very useful, because the way we
38578 will find the bug is by running a single example under the debugger
38579 with breakpoints, not by pure deduction from a series of examples.
38580 We recommend that you save your time for something else.
38581
38582 Of course, if you can find a simpler example to report @emph{instead}
38583 of the original one, that is a convenience for us. Errors in the
38584 output will be easier to spot, running under the debugger will take
38585 less time, and so on.
38586
38587 However, simplification is not vital; if you do not want to do this,
38588 report the bug anyway and send us the entire test case you used.
38589
38590 @item
38591 A patch for the bug.
38592
38593 A patch for the bug does help us if it is a good one. But do not omit
38594 the necessary information, such as the test case, on the assumption that
38595 a patch is all we need. We might see problems with your patch and decide
38596 to fix the problem another way, or we might not understand it at all.
38597
38598 Sometimes with a program as complicated as @value{GDBN} it is very hard to
38599 construct an example that will make the program follow a certain path
38600 through the code. If you do not send us the example, we will not be able
38601 to construct one, so we will not be able to verify that the bug is fixed.
38602
38603 And if we cannot understand what bug you are trying to fix, or why your
38604 patch should be an improvement, we will not install it. A test case will
38605 help us to understand.
38606
38607 @item
38608 A guess about what the bug is or what it depends on.
38609
38610 Such guesses are usually wrong. Even we cannot guess right about such
38611 things without first using the debugger to find the facts.
38612 @end itemize
38613
38614 @c The readline documentation is distributed with the readline code
38615 @c and consists of the two following files:
38616 @c rluser.texi
38617 @c hsuser.texi
38618 @c Use -I with makeinfo to point to the appropriate directory,
38619 @c environment var TEXINPUTS with TeX.
38620 @ifclear SYSTEM_READLINE
38621 @include rluser.texi
38622 @include hsuser.texi
38623 @end ifclear
38624
38625 @node In Memoriam
38626 @appendix In Memoriam
38627
38628 The @value{GDBN} project mourns the loss of the following long-time
38629 contributors:
38630
38631 @table @code
38632 @item Fred Fish
38633 Fred was a long-standing contributor to @value{GDBN} (1991-2006), and
38634 to Free Software in general. Outside of @value{GDBN}, he was known in
38635 the Amiga world for his series of Fish Disks, and the GeekGadget project.
38636
38637 @item Michael Snyder
38638 Michael was one of the Global Maintainers of the @value{GDBN} project,
38639 with contributions recorded as early as 1996, until 2011. In addition
38640 to his day to day participation, he was a large driving force behind
38641 adding Reverse Debugging to @value{GDBN}.
38642 @end table
38643
38644 Beyond their technical contributions to the project, they were also
38645 enjoyable members of the Free Software Community. We will miss them.
38646
38647 @node Formatting Documentation
38648 @appendix Formatting Documentation
38649
38650 @cindex @value{GDBN} reference card
38651 @cindex reference card
38652 The @value{GDBN} 4 release includes an already-formatted reference card, ready
38653 for printing with PostScript or Ghostscript, in the @file{gdb}
38654 subdirectory of the main source directory@footnote{In
38655 @file{gdb-@value{GDBVN}/gdb/refcard.ps} of the version @value{GDBVN}
38656 release.}. If you can use PostScript or Ghostscript with your printer,
38657 you can print the reference card immediately with @file{refcard.ps}.
38658
38659 The release also includes the source for the reference card. You
38660 can format it, using @TeX{}, by typing:
38661
38662 @smallexample
38663 make refcard.dvi
38664 @end smallexample
38665
38666 The @value{GDBN} reference card is designed to print in @dfn{landscape}
38667 mode on US ``letter'' size paper;
38668 that is, on a sheet 11 inches wide by 8.5 inches
38669 high. You will need to specify this form of printing as an option to
38670 your @sc{dvi} output program.
38671
38672 @cindex documentation
38673
38674 All the documentation for @value{GDBN} comes as part of the machine-readable
38675 distribution. The documentation is written in Texinfo format, which is
38676 a documentation system that uses a single source file to produce both
38677 on-line information and a printed manual. You can use one of the Info
38678 formatting commands to create the on-line version of the documentation
38679 and @TeX{} (or @code{texi2roff}) to typeset the printed version.
38680
38681 @value{GDBN} includes an already formatted copy of the on-line Info
38682 version of this manual in the @file{gdb} subdirectory. The main Info
38683 file is @file{gdb-@value{GDBVN}/gdb/gdb.info}, and it refers to
38684 subordinate files matching @samp{gdb.info*} in the same directory. If
38685 necessary, you can print out these files, or read them with any editor;
38686 but they are easier to read using the @code{info} subsystem in @sc{gnu}
38687 Emacs or the standalone @code{info} program, available as part of the
38688 @sc{gnu} Texinfo distribution.
38689
38690 If you want to format these Info files yourself, you need one of the
38691 Info formatting programs, such as @code{texinfo-format-buffer} or
38692 @code{makeinfo}.
38693
38694 If you have @code{makeinfo} installed, and are in the top level
38695 @value{GDBN} source directory (@file{gdb-@value{GDBVN}}, in the case of
38696 version @value{GDBVN}), you can make the Info file by typing:
38697
38698 @smallexample
38699 cd gdb
38700 make gdb.info
38701 @end smallexample
38702
38703 If you want to typeset and print copies of this manual, you need @TeX{},
38704 a program to print its @sc{dvi} output files, and @file{texinfo.tex}, the
38705 Texinfo definitions file.
38706
38707 @TeX{} is a typesetting program; it does not print files directly, but
38708 produces output files called @sc{dvi} files. To print a typeset
38709 document, you need a program to print @sc{dvi} files. If your system
38710 has @TeX{} installed, chances are it has such a program. The precise
38711 command to use depends on your system; @kbd{lpr -d} is common; another
38712 (for PostScript devices) is @kbd{dvips}. The @sc{dvi} print command may
38713 require a file name without any extension or a @samp{.dvi} extension.
38714
38715 @TeX{} also requires a macro definitions file called
38716 @file{texinfo.tex}. This file tells @TeX{} how to typeset a document
38717 written in Texinfo format. On its own, @TeX{} cannot either read or
38718 typeset a Texinfo file. @file{texinfo.tex} is distributed with GDB
38719 and is located in the @file{gdb-@var{version-number}/texinfo}
38720 directory.
38721
38722 If you have @TeX{} and a @sc{dvi} printer program installed, you can
38723 typeset and print this manual. First switch to the @file{gdb}
38724 subdirectory of the main source directory (for example, to
38725 @file{gdb-@value{GDBVN}/gdb}) and type:
38726
38727 @smallexample
38728 make gdb.dvi
38729 @end smallexample
38730
38731 Then give @file{gdb.dvi} to your @sc{dvi} printing program.
38732
38733 @node Installing GDB
38734 @appendix Installing @value{GDBN}
38735 @cindex installation
38736
38737 @menu
38738 * Requirements:: Requirements for building @value{GDBN}
38739 * Running Configure:: Invoking the @value{GDBN} @file{configure} script
38740 * Separate Objdir:: Compiling @value{GDBN} in another directory
38741 * Config Names:: Specifying names for hosts and targets
38742 * Configure Options:: Summary of options for configure
38743 * System-wide configuration:: Having a system-wide init file
38744 @end menu
38745
38746 @node Requirements
38747 @section Requirements for Building @value{GDBN}
38748 @cindex building @value{GDBN}, requirements for
38749
38750 Building @value{GDBN} requires various tools and packages to be available.
38751 Other packages will be used only if they are found.
38752
38753 @heading Tools/Packages Necessary for Building @value{GDBN}
38754 @table @asis
38755 @item C@t{++}11 compiler
38756 @value{GDBN} is written in C@t{++}11. It should be buildable with any
38757 recent C@t{++}11 compiler, e.g.@: GCC.
38758
38759 @item GNU make
38760 @value{GDBN}'s build system relies on features only found in the GNU
38761 make program. Other variants of @code{make} will not work.
38762
38763 @item GMP (The GNU Multiple Precision Arithmetic Library)
38764 @value{GDBN} now uses GMP to perform some of its arithmetics.
38765 This library may be included with your operating system distribution;
38766 if it is not, you can get the latest version from
38767 @url{https://gmplib.org/}. If GMP is installed at an unusual path,
38768 you can use the @option{--with-libgmp-prefix} option to specify
38769 its location.
38770
38771 @end table
38772
38773 @heading Tools/Packages Optional for Building @value{GDBN}
38774 @table @asis
38775 @item Expat
38776 @anchor{Expat}
38777 @value{GDBN} can use the Expat XML parsing library. This library may be
38778 included with your operating system distribution; if it is not, you
38779 can get the latest version from @url{http://expat.sourceforge.net}.
38780 The @file{configure} script will search for this library in several
38781 standard locations; if it is installed in an unusual path, you can
38782 use the @option{--with-libexpat-prefix} option to specify its location.
38783
38784 Expat is used for:
38785
38786 @itemize @bullet
38787 @item
38788 Remote protocol memory maps (@pxref{Memory Map Format})
38789 @item
38790 Target descriptions (@pxref{Target Descriptions})
38791 @item
38792 Remote shared library lists (@xref{Library List Format},
38793 or alternatively @pxref{Library List Format for SVR4 Targets})
38794 @item
38795 MS-Windows shared libraries (@pxref{Shared Libraries})
38796 @item
38797 Traceframe info (@pxref{Traceframe Info Format})
38798 @item
38799 Branch trace (@pxref{Branch Trace Format},
38800 @pxref{Branch Trace Configuration Format})
38801 @end itemize
38802
38803 @item Guile
38804 @value{GDBN} can be scripted using GNU Guile. @xref{Guile}. By
38805 default, @value{GDBN} will be compiled if the Guile libraries are
38806 installed and are found by @file{configure}. You can use the
38807 @code{--with-guile} option to request Guile, and pass either the Guile
38808 version number or the file name of the relevant @code{pkg-config}
38809 program to choose a particular version of Guile.
38810
38811 @item iconv
38812 @value{GDBN}'s features related to character sets (@pxref{Character
38813 Sets}) require a functioning @code{iconv} implementation. If you are
38814 on a GNU system, then this is provided by the GNU C Library. Some
38815 other systems also provide a working @code{iconv}.
38816
38817 If @value{GDBN} is using the @code{iconv} program which is installed
38818 in a non-standard place, you will need to tell @value{GDBN} where to
38819 find it. This is done with @option{--with-iconv-bin} which specifies
38820 the directory that contains the @code{iconv} program. This program is
38821 run in order to make a list of the available character sets.
38822
38823 On systems without @code{iconv}, you can install GNU Libiconv. If
38824 Libiconv is installed in a standard place, @value{GDBN} will
38825 automatically use it if it is needed. If you have previously
38826 installed Libiconv in a non-standard place, you can use the
38827 @option{--with-libiconv-prefix} option to @file{configure}.
38828
38829 @value{GDBN}'s top-level @file{configure} and @file{Makefile} will
38830 arrange to build Libiconv if a directory named @file{libiconv} appears
38831 in the top-most source directory. If Libiconv is built this way, and
38832 if the operating system does not provide a suitable @code{iconv}
38833 implementation, then the just-built library will automatically be used
38834 by @value{GDBN}. One easy way to set this up is to download GNU
38835 Libiconv, unpack it inside the top-level directory of the @value{GDBN}
38836 source tree, and then rename the directory holding the Libiconv source
38837 code to @samp{libiconv}.
38838
38839 @item lzma
38840 @value{GDBN} can support debugging sections that are compressed with
38841 the LZMA library. @xref{MiniDebugInfo}. If this library is not
38842 included with your operating system, you can find it in the xz package
38843 at @url{http://tukaani.org/xz/}. If the LZMA library is available in
38844 the usual place, then the @file{configure} script will use it
38845 automatically. If it is installed in an unusual path, you can use the
38846 @option{--with-liblzma-prefix} option to specify its location.
38847
38848 @item MPFR
38849 @anchor{MPFR}
38850 @value{GDBN} can use the GNU MPFR multiple-precision floating-point
38851 library. This library may be included with your operating system
38852 distribution; if it is not, you can get the latest version from
38853 @url{http://www.mpfr.org}. The @file{configure} script will search
38854 for this library in several standard locations; if it is installed
38855 in an unusual path, you can use the @option{--with-libmpfr-prefix}
38856 option to specify its location.
38857
38858 GNU MPFR is used to emulate target floating-point arithmetic during
38859 expression evaluation when the target uses different floating-point
38860 formats than the host. If GNU MPFR it is not available, @value{GDBN}
38861 will fall back to using host floating-point arithmetic.
38862
38863 @item Python
38864 @value{GDBN} can be scripted using Python language. @xref{Python}.
38865 By default, @value{GDBN} will be compiled if the Python libraries are
38866 installed and are found by @file{configure}. You can use the
38867 @code{--with-python} option to request Python, and pass either the
38868 file name of the relevant @code{python} executable, or the name of the
38869 directory in which Python is installed, to choose a particular
38870 installation of Python.
38871
38872 @item zlib
38873 @cindex compressed debug sections
38874 @value{GDBN} will use the @samp{zlib} library, if available, to read
38875 compressed debug sections. Some linkers, such as GNU gold, are capable
38876 of producing binaries with compressed debug sections. If @value{GDBN}
38877 is compiled with @samp{zlib}, it will be able to read the debug
38878 information in such binaries.
38879
38880 The @samp{zlib} library is likely included with your operating system
38881 distribution; if it is not, you can get the latest version from
38882 @url{http://zlib.net}.
38883 @end table
38884
38885 @node Running Configure
38886 @section Invoking the @value{GDBN} @file{configure} Script
38887 @cindex configuring @value{GDBN}
38888 @value{GDBN} comes with a @file{configure} script that automates the process
38889 of preparing @value{GDBN} for installation; you can then use @code{make} to
38890 build the @code{gdb} program.
38891 @iftex
38892 @c irrelevant in info file; it's as current as the code it lives with.
38893 @footnote{If you have a more recent version of @value{GDBN} than @value{GDBVN},
38894 look at the @file{README} file in the sources; we may have improved the
38895 installation procedures since publishing this manual.}
38896 @end iftex
38897
38898 The @value{GDBN} distribution includes all the source code you need for
38899 @value{GDBN} in a single directory, whose name is usually composed by
38900 appending the version number to @samp{gdb}.
38901
38902 For example, the @value{GDBN} version @value{GDBVN} distribution is in the
38903 @file{gdb-@value{GDBVN}} directory. That directory contains:
38904
38905 @table @code
38906 @item gdb-@value{GDBVN}/configure @r{(and supporting files)}
38907 script for configuring @value{GDBN} and all its supporting libraries
38908
38909 @item gdb-@value{GDBVN}/gdb
38910 the source specific to @value{GDBN} itself
38911
38912 @item gdb-@value{GDBVN}/bfd
38913 source for the Binary File Descriptor library
38914
38915 @item gdb-@value{GDBVN}/include
38916 @sc{gnu} include files
38917
38918 @item gdb-@value{GDBVN}/libiberty
38919 source for the @samp{-liberty} free software library
38920
38921 @item gdb-@value{GDBVN}/opcodes
38922 source for the library of opcode tables and disassemblers
38923
38924 @item gdb-@value{GDBVN}/readline
38925 source for the @sc{gnu} command-line interface
38926 @end table
38927
38928 There may be other subdirectories as well.
38929
38930 The simplest way to configure and build @value{GDBN} is to run @file{configure}
38931 from the @file{gdb-@var{version-number}} source directory, which in
38932 this example is the @file{gdb-@value{GDBVN}} directory.
38933
38934 First switch to the @file{gdb-@var{version-number}} source directory
38935 if you are not already in it; then run @file{configure}. Pass the
38936 identifier for the platform on which @value{GDBN} will run as an
38937 argument.
38938
38939 For example:
38940
38941 @smallexample
38942 cd gdb-@value{GDBVN}
38943 ./configure
38944 make
38945 @end smallexample
38946
38947 Running @samp{configure} and then running @code{make} builds the
38948 included supporting libraries, then @code{gdb} itself. The configured
38949 source files, and the binaries, are left in the corresponding source
38950 directories.
38951
38952 @need 750
38953 @file{configure} is a Bourne-shell (@code{/bin/sh}) script; if your
38954 system does not recognize this automatically when you run a different
38955 shell, you may need to run @code{sh} on it explicitly:
38956
38957 @smallexample
38958 sh configure
38959 @end smallexample
38960
38961 You should run the @file{configure} script from the top directory in the
38962 source tree, the @file{gdb-@var{version-number}} directory. If you run
38963 @file{configure} from one of the subdirectories, you will configure only
38964 that subdirectory. That is usually not what you want. In particular,
38965 if you run the first @file{configure} from the @file{gdb} subdirectory
38966 of the @file{gdb-@var{version-number}} directory, you will omit the
38967 configuration of @file{bfd}, @file{readline}, and other sibling
38968 directories of the @file{gdb} subdirectory. This leads to build errors
38969 about missing include files such as @file{bfd/bfd.h}.
38970
38971 You can install @code{@value{GDBN}} anywhere. The best way to do this
38972 is to pass the @code{--prefix} option to @code{configure}, and then
38973 install it with @code{make install}.
38974
38975 @node Separate Objdir
38976 @section Compiling @value{GDBN} in Another Directory
38977
38978 If you want to run @value{GDBN} versions for several host or target machines,
38979 you need a different @code{gdb} compiled for each combination of
38980 host and target. @file{configure} is designed to make this easy by
38981 allowing you to generate each configuration in a separate subdirectory,
38982 rather than in the source directory. If your @code{make} program
38983 handles the @samp{VPATH} feature (@sc{gnu} @code{make} does), running
38984 @code{make} in each of these directories builds the @code{gdb}
38985 program specified there.
38986
38987 To build @code{gdb} in a separate directory, run @file{configure}
38988 with the @samp{--srcdir} option to specify where to find the source.
38989 (You also need to specify a path to find @file{configure}
38990 itself from your working directory. If the path to @file{configure}
38991 would be the same as the argument to @samp{--srcdir}, you can leave out
38992 the @samp{--srcdir} option; it is assumed.)
38993
38994 For example, with version @value{GDBVN}, you can build @value{GDBN} in a
38995 separate directory for a Sun 4 like this:
38996
38997 @smallexample
38998 @group
38999 cd gdb-@value{GDBVN}
39000 mkdir ../gdb-sun4
39001 cd ../gdb-sun4
39002 ../gdb-@value{GDBVN}/configure
39003 make
39004 @end group
39005 @end smallexample
39006
39007 When @file{configure} builds a configuration using a remote source
39008 directory, it creates a tree for the binaries with the same structure
39009 (and using the same names) as the tree under the source directory. In
39010 the example, you'd find the Sun 4 library @file{libiberty.a} in the
39011 directory @file{gdb-sun4/libiberty}, and @value{GDBN} itself in
39012 @file{gdb-sun4/gdb}.
39013
39014 Make sure that your path to the @file{configure} script has just one
39015 instance of @file{gdb} in it. If your path to @file{configure} looks
39016 like @file{../gdb-@value{GDBVN}/gdb/configure}, you are configuring only
39017 one subdirectory of @value{GDBN}, not the whole package. This leads to
39018 build errors about missing include files such as @file{bfd/bfd.h}.
39019
39020 One popular reason to build several @value{GDBN} configurations in separate
39021 directories is to configure @value{GDBN} for cross-compiling (where
39022 @value{GDBN} runs on one machine---the @dfn{host}---while debugging
39023 programs that run on another machine---the @dfn{target}).
39024 You specify a cross-debugging target by
39025 giving the @samp{--target=@var{target}} option to @file{configure}.
39026
39027 When you run @code{make} to build a program or library, you must run
39028 it in a configured directory---whatever directory you were in when you
39029 called @file{configure} (or one of its subdirectories).
39030
39031 The @code{Makefile} that @file{configure} generates in each source
39032 directory also runs recursively. If you type @code{make} in a source
39033 directory such as @file{gdb-@value{GDBVN}} (or in a separate configured
39034 directory configured with @samp{--srcdir=@var{dirname}/gdb-@value{GDBVN}}), you
39035 will build all the required libraries, and then build GDB.
39036
39037 When you have multiple hosts or targets configured in separate
39038 directories, you can run @code{make} on them in parallel (for example,
39039 if they are NFS-mounted on each of the hosts); they will not interfere
39040 with each other.
39041
39042 @node Config Names
39043 @section Specifying Names for Hosts and Targets
39044
39045 The specifications used for hosts and targets in the @file{configure}
39046 script are based on a three-part naming scheme, but some short predefined
39047 aliases are also supported. The full naming scheme encodes three pieces
39048 of information in the following pattern:
39049
39050 @smallexample
39051 @var{architecture}-@var{vendor}-@var{os}
39052 @end smallexample
39053
39054 For example, you can use the alias @code{sun4} as a @var{host} argument,
39055 or as the value for @var{target} in a @code{--target=@var{target}}
39056 option. The equivalent full name is @samp{sparc-sun-sunos4}.
39057
39058 The @file{configure} script accompanying @value{GDBN} does not provide
39059 any query facility to list all supported host and target names or
39060 aliases. @file{configure} calls the Bourne shell script
39061 @code{config.sub} to map abbreviations to full names; you can read the
39062 script, if you wish, or you can use it to test your guesses on
39063 abbreviations---for example:
39064
39065 @smallexample
39066 % sh config.sub i386-linux
39067 i386-pc-linux-gnu
39068 % sh config.sub alpha-linux
39069 alpha-unknown-linux-gnu
39070 % sh config.sub hp9k700
39071 hppa1.1-hp-hpux
39072 % sh config.sub sun4
39073 sparc-sun-sunos4.1.1
39074 % sh config.sub sun3
39075 m68k-sun-sunos4.1.1
39076 % sh config.sub i986v
39077 Invalid configuration `i986v': machine `i986v' not recognized
39078 @end smallexample
39079
39080 @noindent
39081 @code{config.sub} is also distributed in the @value{GDBN} source
39082 directory (@file{gdb-@value{GDBVN}}, for version @value{GDBVN}).
39083
39084 @node Configure Options
39085 @section @file{configure} Options
39086
39087 Here is a summary of the @file{configure} options and arguments that
39088 are most often useful for building @value{GDBN}. @file{configure}
39089 also has several other options not listed here. @xref{Running
39090 configure Scripts,,,autoconf}, for a full
39091 explanation of @file{configure}.
39092
39093 @smallexample
39094 configure @r{[}--help@r{]}
39095 @r{[}--prefix=@var{dir}@r{]}
39096 @r{[}--exec-prefix=@var{dir}@r{]}
39097 @r{[}--srcdir=@var{dirname}@r{]}
39098 @r{[}--target=@var{target}@r{]}
39099 @end smallexample
39100
39101 @noindent
39102 You may introduce options with a single @samp{-} rather than
39103 @samp{--} if you prefer; but you may abbreviate option names if you use
39104 @samp{--}.
39105
39106 @table @code
39107 @item --help
39108 Display a quick summary of how to invoke @file{configure}.
39109
39110 @item --prefix=@var{dir}
39111 Configure the source to install programs and files under directory
39112 @file{@var{dir}}.
39113
39114 @item --exec-prefix=@var{dir}
39115 Configure the source to install programs under directory
39116 @file{@var{dir}}.
39117
39118 @c avoid splitting the warning from the explanation:
39119 @need 2000
39120 @item --srcdir=@var{dirname}
39121 Use this option to make configurations in directories separate from the
39122 @value{GDBN} source directories. Among other things, you can use this to
39123 build (or maintain) several configurations simultaneously, in separate
39124 directories. @file{configure} writes configuration-specific files in
39125 the current directory, but arranges for them to use the source in the
39126 directory @var{dirname}. @file{configure} creates directories under
39127 the working directory in parallel to the source directories below
39128 @var{dirname}.
39129
39130 @item --target=@var{target}
39131 Configure @value{GDBN} for cross-debugging programs running on the specified
39132 @var{target}. Without this option, @value{GDBN} is configured to debug
39133 programs that run on the same machine (@var{host}) as @value{GDBN} itself.
39134
39135 There is no convenient way to generate a list of all available
39136 targets. Also see the @code{--enable-targets} option, below.
39137 @end table
39138
39139 There are many other options that are specific to @value{GDBN}. This
39140 lists just the most common ones; there are some very specialized
39141 options not described here.
39142
39143 @table @code
39144 @item --enable-targets=@r{[}@var{target}@r{]}@dots{}
39145 @itemx --enable-targets=all
39146 Configure @value{GDBN} for cross-debugging programs running on the
39147 specified list of targets. The special value @samp{all} configures
39148 @value{GDBN} for debugging programs running on any target it supports.
39149
39150 @item --with-gdb-datadir=@var{path}
39151 Set the @value{GDBN}-specific data directory. @value{GDBN} will look
39152 here for certain supporting files or scripts. This defaults to the
39153 @file{gdb} subdirectory of @samp{datadir} (which can be set using
39154 @code{--datadir}).
39155
39156 @item --with-relocated-sources=@var{dir}
39157 Sets up the default source path substitution rule so that directory
39158 names recorded in debug information will be automatically adjusted for
39159 any directory under @var{dir}. @var{dir} should be a subdirectory of
39160 @value{GDBN}'s configured prefix, the one mentioned in the
39161 @code{--prefix} or @code{--exec-prefix} options to configure. This
39162 option is useful if GDB is supposed to be moved to a different place
39163 after it is built.
39164
39165 @item --enable-64-bit-bfd
39166 Enable 64-bit support in BFD on 32-bit hosts.
39167
39168 @item --disable-gdbmi
39169 Build @value{GDBN} without the GDB/MI machine interface
39170 (@pxref{GDB/MI}).
39171
39172 @item --enable-tui
39173 Build @value{GDBN} with the text-mode full-screen user interface
39174 (TUI). Requires a curses library (ncurses and cursesX are also
39175 supported).
39176
39177 @item --with-curses
39178 Use the curses library instead of the termcap library, for text-mode
39179 terminal operations.
39180
39181 @item --with-debuginfod
39182 Build @value{GDBN} with @file{libdebuginfod}, the @code{debuginfod} client
39183 library. Used to automatically fetch ELF, DWARF and source files from
39184 @code{debuginfod} servers using build IDs associated with any missing
39185 files. Enabled by default if @file{libdebuginfod} is installed and found
39186 at configure time. For more information regarding @code{debuginfod} see
39187 @ref{Debuginfod}.
39188
39189 @item --with-libunwind-ia64
39190 Use the libunwind library for unwinding function call stack on ia64
39191 target platforms. See http://www.nongnu.org/libunwind/index.html for
39192 details.
39193
39194 @item --with-system-readline
39195 Use the readline library installed on the host, rather than the
39196 library supplied as part of @value{GDBN}. Readline 7 or newer is
39197 required; this is enforced by the build system.
39198
39199 @item --with-system-zlib
39200 Use the zlib library installed on the host, rather than the library
39201 supplied as part of @value{GDBN}.
39202
39203 @item --with-expat
39204 Build @value{GDBN} with Expat, a library for XML parsing. (Done by
39205 default if libexpat is installed and found at configure time.) This
39206 library is used to read XML files supplied with @value{GDBN}. If it
39207 is unavailable, some features, such as remote protocol memory maps,
39208 target descriptions, and shared library lists, that are based on XML
39209 files, will not be available in @value{GDBN}. If your host does not
39210 have libexpat installed, you can get the latest version from
39211 `http://expat.sourceforge.net'.
39212
39213 @item --with-libiconv-prefix@r{[}=@var{dir}@r{]}
39214
39215 Build @value{GDBN} with GNU libiconv, a character set encoding
39216 conversion library. This is not done by default, as on GNU systems
39217 the @code{iconv} that is built in to the C library is sufficient. If
39218 your host does not have a working @code{iconv}, you can get the latest
39219 version of GNU iconv from `https://www.gnu.org/software/libiconv/'.
39220
39221 @value{GDBN}'s build system also supports building GNU libiconv as
39222 part of the overall build. @xref{Requirements}.
39223
39224 @item --with-lzma
39225 Build @value{GDBN} with LZMA, a compression library. (Done by default
39226 if liblzma is installed and found at configure time.) LZMA is used by
39227 @value{GDBN}'s "mini debuginfo" feature, which is only useful on
39228 platforms using the ELF object file format. If your host does not
39229 have liblzma installed, you can get the latest version from
39230 `https://tukaani.org/xz/'.
39231
39232 @item --with-mpfr
39233 Build @value{GDBN} with GNU MPFR, a library for multiple-precision
39234 floating-point computation with correct rounding. (Done by default if
39235 GNU MPFR is installed and found at configure time.) This library is
39236 used to emulate target floating-point arithmetic during expression
39237 evaluation when the target uses different floating-point formats than
39238 the host. If GNU MPFR is not available, @value{GDBN} will fall back
39239 to using host floating-point arithmetic. If your host does not have
39240 GNU MPFR installed, you can get the latest version from
39241 `http://www.mpfr.org'.
39242
39243 @item --with-python@r{[}=@var{python}@r{]}
39244 Build @value{GDBN} with Python scripting support. (Done by default if
39245 libpython is present and found at configure time.) Python makes
39246 @value{GDBN} scripting much more powerful than the restricted CLI
39247 scripting language. If your host does not have Python installed, you
39248 can find it on `http://www.python.org/download/'. The oldest version
39249 of Python supported by GDB is 2.6. The optional argument @var{python}
39250 is used to find the Python headers and libraries. It can be either
39251 the name of a Python executable, or the name of the directory in which
39252 Python is installed.
39253
39254 @item --with-guile[=GUILE]'
39255 Build @value{GDBN} with GNU Guile scripting support. (Done by default
39256 if libguile is present and found at configure time.) If your host
39257 does not have Guile installed, you can find it at
39258 `https://www.gnu.org/software/guile/'. The optional argument GUILE
39259 can be a version number, which will cause @code{configure} to try to
39260 use that version of Guile; or the file name of a @code{pkg-config}
39261 executable, which will be queried to find the information needed to
39262 compile and link against Guile.
39263
39264 @item --without-included-regex
39265 Don't use the regex library included with @value{GDBN} (as part of the
39266 libiberty library). This is the default on hosts with version 2 of
39267 the GNU C library.
39268
39269 @item --with-sysroot=@var{dir}
39270 Use @var{dir} as the default system root directory for libraries whose
39271 file names begin with @file{/lib}' or @file{/usr/lib'}. (The value of
39272 @var{dir} can be modified at run time by using the @command{set
39273 sysroot} command.) If @var{dir} is under the @value{GDBN} configured
39274 prefix (set with @code{--prefix} or @code{--exec-prefix options}, the
39275 default system root will be automatically adjusted if and when
39276 @value{GDBN} is moved to a different location.
39277
39278 @item --with-system-gdbinit=@var{file}
39279 Configure @value{GDBN} to automatically load a system-wide init file.
39280 @var{file} should be an absolute file name. If @var{file} is in a
39281 directory under the configured prefix, and @value{GDBN} is moved to
39282 another location after being built, the location of the system-wide
39283 init file will be adjusted accordingly.
39284
39285 @item --with-system-gdbinit-dir=@var{directory}
39286 Configure @value{GDBN} to automatically load init files from a
39287 system-wide directory. @var{directory} should be an absolute directory
39288 name. If @var{directory} is in a directory under the configured
39289 prefix, and @value{GDBN} is moved to another location after being
39290 built, the location of the system-wide init directory will be
39291 adjusted accordingly.
39292
39293 @item --enable-build-warnings
39294 When building the @value{GDBN} sources, ask the compiler to warn about
39295 any code which looks even vaguely suspicious. It passes many
39296 different warning flags, depending on the exact version of the
39297 compiler you are using.
39298
39299 @item --enable-werror
39300 Treat compiler warnings as errors. It adds the @code{-Werror} flag
39301 to the compiler, which will fail the compilation if the compiler
39302 outputs any warning messages.
39303
39304 @item --enable-ubsan
39305 Enable the GCC undefined behavior sanitizer. This is disabled by
39306 default, but passing @code{--enable-ubsan=yes} or
39307 @code{--enable-ubsan=auto} to @code{configure} will enable it. The
39308 undefined behavior sanitizer checks for C@t{++} undefined behavior.
39309 It has a performance cost, so if you are looking at @value{GDBN}'s
39310 performance, you should disable it. The undefined behavior sanitizer
39311 was first introduced in GCC 4.9.
39312 @end table
39313
39314 @node System-wide configuration
39315 @section System-wide configuration and settings
39316 @cindex system-wide init file
39317
39318 @value{GDBN} can be configured to have a system-wide init file and a
39319 system-wide init file directory; this file and files in that directory
39320 (if they have a recognized file extension) will be read and executed at
39321 startup (@pxref{Startup, , What @value{GDBN} does during startup}).
39322
39323 Here are the corresponding configure options:
39324
39325 @table @code
39326 @item --with-system-gdbinit=@var{file}
39327 Specify that the default location of the system-wide init file is
39328 @var{file}.
39329 @item --with-system-gdbinit-dir=@var{directory}
39330 Specify that the default location of the system-wide init file directory
39331 is @var{directory}.
39332 @end table
39333
39334 If @value{GDBN} has been configured with the option @option{--prefix=$prefix},
39335 they may be subject to relocation. Two possible cases:
39336
39337 @itemize @bullet
39338 @item
39339 If the default location of this init file/directory contains @file{$prefix},
39340 it will be subject to relocation. Suppose that the configure options
39341 are @option{--prefix=$prefix --with-system-gdbinit=$prefix/etc/gdbinit};
39342 if @value{GDBN} is moved from @file{$prefix} to @file{$install}, the system
39343 init file is looked for as @file{$install/etc/gdbinit} instead of
39344 @file{$prefix/etc/gdbinit}.
39345
39346 @item
39347 By contrast, if the default location does not contain the prefix,
39348 it will not be relocated. E.g.@: if @value{GDBN} has been configured with
39349 @option{--prefix=/usr/local --with-system-gdbinit=/usr/share/gdb/gdbinit},
39350 then @value{GDBN} will always look for @file{/usr/share/gdb/gdbinit},
39351 wherever @value{GDBN} is installed.
39352 @end itemize
39353
39354 If the configured location of the system-wide init file (as given by the
39355 @option{--with-system-gdbinit} option at configure time) is in the
39356 data-directory (as specified by @option{--with-gdb-datadir} at configure
39357 time) or in one of its subdirectories, then @value{GDBN} will look for the
39358 system-wide init file in the directory specified by the
39359 @option{--data-directory} command-line option.
39360 Note that the system-wide init file is only read once, during @value{GDBN}
39361 initialization. If the data-directory is changed after @value{GDBN} has
39362 started with the @code{set data-directory} command, the file will not be
39363 reread.
39364
39365 This applies similarly to the system-wide directory specified in
39366 @option{--with-system-gdbinit-dir}.
39367
39368 Any supported scripting language can be used for these init files, as long
39369 as the file extension matches the scripting language. To be interpreted
39370 as regular @value{GDBN} commands, the files needs to have a @file{.gdb}
39371 extension.
39372
39373 @menu
39374 * System-wide Configuration Scripts:: Installed System-wide Configuration Scripts
39375 @end menu
39376
39377 @node System-wide Configuration Scripts
39378 @subsection Installed System-wide Configuration Scripts
39379 @cindex system-wide configuration scripts
39380
39381 The @file{system-gdbinit} directory, located inside the data-directory
39382 (as specified by @option{--with-gdb-datadir} at configure time) contains
39383 a number of scripts which can be used as system-wide init files. To
39384 automatically source those scripts at startup, @value{GDBN} should be
39385 configured with @option{--with-system-gdbinit}. Otherwise, any user
39386 should be able to source them by hand as needed.
39387
39388 The following scripts are currently available:
39389 @itemize @bullet
39390
39391 @item @file{elinos.py}
39392 @pindex elinos.py
39393 @cindex ELinOS system-wide configuration script
39394 This script is useful when debugging a program on an ELinOS target.
39395 It takes advantage of the environment variables defined in a standard
39396 ELinOS environment in order to determine the location of the system
39397 shared libraries, and then sets the @samp{solib-absolute-prefix}
39398 and @samp{solib-search-path} variables appropriately.
39399
39400 @item @file{wrs-linux.py}
39401 @pindex wrs-linux.py
39402 @cindex Wind River Linux system-wide configuration script
39403 This script is useful when debugging a program on a target running
39404 Wind River Linux. It expects the @env{ENV_PREFIX} to be set to
39405 the host-side sysroot used by the target system.
39406
39407 @end itemize
39408
39409 @node Maintenance Commands
39410 @appendix Maintenance Commands
39411 @cindex maintenance commands
39412 @cindex internal commands
39413
39414 In addition to commands intended for @value{GDBN} users, @value{GDBN}
39415 includes a number of commands intended for @value{GDBN} developers,
39416 that are not documented elsewhere in this manual. These commands are
39417 provided here for reference. (For commands that turn on debugging
39418 messages, see @ref{Debugging Output}.)
39419
39420 @table @code
39421 @kindex maint agent
39422 @kindex maint agent-eval
39423 @item maint agent @r{[}-at @var{location}@r{,}@r{]} @var{expression}
39424 @itemx maint agent-eval @r{[}-at @var{location}@r{,}@r{]} @var{expression}
39425 Translate the given @var{expression} into remote agent bytecodes.
39426 This command is useful for debugging the Agent Expression mechanism
39427 (@pxref{Agent Expressions}). The @samp{agent} version produces an
39428 expression useful for data collection, such as by tracepoints, while
39429 @samp{maint agent-eval} produces an expression that evaluates directly
39430 to a result. For instance, a collection expression for @code{globa +
39431 globb} will include bytecodes to record four bytes of memory at each
39432 of the addresses of @code{globa} and @code{globb}, while discarding
39433 the result of the addition, while an evaluation expression will do the
39434 addition and return the sum.
39435 If @code{-at} is given, generate remote agent bytecode for @var{location}.
39436 If not, generate remote agent bytecode for current frame PC address.
39437
39438 @kindex maint agent-printf
39439 @item maint agent-printf @var{format},@var{expr},...
39440 Translate the given format string and list of argument expressions
39441 into remote agent bytecodes and display them as a disassembled list.
39442 This command is useful for debugging the agent version of dynamic
39443 printf (@pxref{Dynamic Printf}).
39444
39445 @kindex maint info breakpoints
39446 @item @anchor{maint info breakpoints}maint info breakpoints
39447 Using the same format as @samp{info breakpoints}, display both the
39448 breakpoints you've set explicitly, and those @value{GDBN} is using for
39449 internal purposes. Internal breakpoints are shown with negative
39450 breakpoint numbers. The type column identifies what kind of breakpoint
39451 is shown:
39452
39453 @table @code
39454 @item breakpoint
39455 Normal, explicitly set breakpoint.
39456
39457 @item watchpoint
39458 Normal, explicitly set watchpoint.
39459
39460 @item longjmp
39461 Internal breakpoint, used to handle correctly stepping through
39462 @code{longjmp} calls.
39463
39464 @item longjmp resume
39465 Internal breakpoint at the target of a @code{longjmp}.
39466
39467 @item until
39468 Temporary internal breakpoint used by the @value{GDBN} @code{until} command.
39469
39470 @item finish
39471 Temporary internal breakpoint used by the @value{GDBN} @code{finish} command.
39472
39473 @item shlib events
39474 Shared library events.
39475
39476 @end table
39477
39478 @kindex maint info btrace
39479 @item maint info btrace
39480 Pint information about raw branch tracing data.
39481
39482 @kindex maint btrace packet-history
39483 @item maint btrace packet-history
39484 Print the raw branch trace packets that are used to compute the
39485 execution history for the @samp{record btrace} command. Both the
39486 information and the format in which it is printed depend on the btrace
39487 recording format.
39488
39489 @table @code
39490 @item bts
39491 For the BTS recording format, print a list of blocks of sequential
39492 code. For each block, the following information is printed:
39493
39494 @table @asis
39495 @item Block number
39496 Newer blocks have higher numbers. The oldest block has number zero.
39497 @item Lowest @samp{PC}
39498 @item Highest @samp{PC}
39499 @end table
39500
39501 @item pt
39502 For the Intel Processor Trace recording format, print a list of
39503 Intel Processor Trace packets. For each packet, the following
39504 information is printed:
39505
39506 @table @asis
39507 @item Packet number
39508 Newer packets have higher numbers. The oldest packet has number zero.
39509 @item Trace offset
39510 The packet's offset in the trace stream.
39511 @item Packet opcode and payload
39512 @end table
39513 @end table
39514
39515 @kindex maint btrace clear-packet-history
39516 @item maint btrace clear-packet-history
39517 Discards the cached packet history printed by the @samp{maint btrace
39518 packet-history} command. The history will be computed again when
39519 needed.
39520
39521 @kindex maint btrace clear
39522 @item maint btrace clear
39523 Discard the branch trace data. The data will be fetched anew and the
39524 branch trace will be recomputed when needed.
39525
39526 This implicitly truncates the branch trace to a single branch trace
39527 buffer. When updating branch trace incrementally, the branch trace
39528 available to @value{GDBN} may be bigger than a single branch trace
39529 buffer.
39530
39531 @kindex maint set btrace pt skip-pad
39532 @item maint set btrace pt skip-pad
39533 @kindex maint show btrace pt skip-pad
39534 @item maint show btrace pt skip-pad
39535 Control whether @value{GDBN} will skip PAD packets when computing the
39536 packet history.
39537
39538 @kindex maint info jit
39539 @item maint info jit
39540 Print information about JIT code objects loaded in the current inferior.
39541
39542 @kindex set displaced-stepping
39543 @kindex show displaced-stepping
39544 @cindex displaced stepping support
39545 @cindex out-of-line single-stepping
39546 @item set displaced-stepping
39547 @itemx show displaced-stepping
39548 Control whether or not @value{GDBN} will do @dfn{displaced stepping}
39549 if the target supports it. Displaced stepping is a way to single-step
39550 over breakpoints without removing them from the inferior, by executing
39551 an out-of-line copy of the instruction that was originally at the
39552 breakpoint location. It is also known as out-of-line single-stepping.
39553
39554 @table @code
39555 @item set displaced-stepping on
39556 If the target architecture supports it, @value{GDBN} will use
39557 displaced stepping to step over breakpoints.
39558
39559 @item set displaced-stepping off
39560 @value{GDBN} will not use displaced stepping to step over breakpoints,
39561 even if such is supported by the target architecture.
39562
39563 @cindex non-stop mode, and @samp{set displaced-stepping}
39564 @item set displaced-stepping auto
39565 This is the default mode. @value{GDBN} will use displaced stepping
39566 only if non-stop mode is active (@pxref{Non-Stop Mode}) and the target
39567 architecture supports displaced stepping.
39568 @end table
39569
39570 @kindex maint check-psymtabs
39571 @item maint check-psymtabs
39572 Check the consistency of currently expanded psymtabs versus symtabs.
39573 Use this to check, for example, whether a symbol is in one but not the other.
39574
39575 @kindex maint check-symtabs
39576 @item maint check-symtabs
39577 Check the consistency of currently expanded symtabs.
39578
39579 @kindex maint expand-symtabs
39580 @item maint expand-symtabs [@var{regexp}]
39581 Expand symbol tables.
39582 If @var{regexp} is specified, only expand symbol tables for file
39583 names matching @var{regexp}.
39584
39585 @kindex maint set catch-demangler-crashes
39586 @kindex maint show catch-demangler-crashes
39587 @cindex demangler crashes
39588 @item maint set catch-demangler-crashes [on|off]
39589 @itemx maint show catch-demangler-crashes
39590 Control whether @value{GDBN} should attempt to catch crashes in the
39591 symbol name demangler. The default is to attempt to catch crashes.
39592 If enabled, the first time a crash is caught, a core file is created,
39593 the offending symbol is displayed and the user is presented with the
39594 option to terminate the current session.
39595
39596 @kindex maint cplus first_component
39597 @item maint cplus first_component @var{name}
39598 Print the first C@t{++} class/namespace component of @var{name}.
39599
39600 @kindex maint cplus namespace
39601 @item maint cplus namespace
39602 Print the list of possible C@t{++} namespaces.
39603
39604 @kindex maint deprecate
39605 @kindex maint undeprecate
39606 @cindex deprecated commands
39607 @item maint deprecate @var{command} @r{[}@var{replacement}@r{]}
39608 @itemx maint undeprecate @var{command}
39609 Deprecate or undeprecate the named @var{command}. Deprecated commands
39610 cause @value{GDBN} to issue a warning when you use them. The optional
39611 argument @var{replacement} says which newer command should be used in
39612 favor of the deprecated one; if it is given, @value{GDBN} will mention
39613 the replacement as part of the warning.
39614
39615 @kindex maint dump-me
39616 @item maint dump-me
39617 @cindex @code{SIGQUIT} signal, dump core of @value{GDBN}
39618 Cause a fatal signal in the debugger and force it to dump its core.
39619 This is supported only on systems which support aborting a program
39620 with the @code{SIGQUIT} signal.
39621
39622 @kindex maint internal-error
39623 @kindex maint internal-warning
39624 @kindex maint demangler-warning
39625 @cindex demangler crashes
39626 @item maint internal-error @r{[}@var{message-text}@r{]}
39627 @itemx maint internal-warning @r{[}@var{message-text}@r{]}
39628 @itemx maint demangler-warning @r{[}@var{message-text}@r{]}
39629
39630 Cause @value{GDBN} to call the internal function @code{internal_error},
39631 @code{internal_warning} or @code{demangler_warning} and hence behave
39632 as though an internal problem has been detected. In addition to
39633 reporting the internal problem, these functions give the user the
39634 opportunity to either quit @value{GDBN} or (for @code{internal_error}
39635 and @code{internal_warning}) create a core file of the current
39636 @value{GDBN} session.
39637
39638 These commands take an optional parameter @var{message-text} that is
39639 used as the text of the error or warning message.
39640
39641 Here's an example of using @code{internal-error}:
39642
39643 @smallexample
39644 (@value{GDBP}) @kbd{maint internal-error testing, 1, 2}
39645 @dots{}/maint.c:121: internal-error: testing, 1, 2
39646 A problem internal to GDB has been detected. Further
39647 debugging may prove unreliable.
39648 Quit this debugging session? (y or n) @kbd{n}
39649 Create a core file? (y or n) @kbd{n}
39650 (@value{GDBP})
39651 @end smallexample
39652
39653 @cindex @value{GDBN} internal error
39654 @cindex internal errors, control of @value{GDBN} behavior
39655 @cindex demangler crashes
39656
39657 @kindex maint set internal-error
39658 @kindex maint show internal-error
39659 @kindex maint set internal-warning
39660 @kindex maint show internal-warning
39661 @kindex maint set demangler-warning
39662 @kindex maint show demangler-warning
39663 @item maint set internal-error @var{action} [ask|yes|no]
39664 @itemx maint show internal-error @var{action}
39665 @itemx maint set internal-warning @var{action} [ask|yes|no]
39666 @itemx maint show internal-warning @var{action}
39667 @itemx maint set demangler-warning @var{action} [ask|yes|no]
39668 @itemx maint show demangler-warning @var{action}
39669 When @value{GDBN} reports an internal problem (error or warning) it
39670 gives the user the opportunity to both quit @value{GDBN} and create a
39671 core file of the current @value{GDBN} session. These commands let you
39672 override the default behaviour for each particular @var{action},
39673 described in the table below.
39674
39675 @table @samp
39676 @item quit
39677 You can specify that @value{GDBN} should always (yes) or never (no)
39678 quit. The default is to ask the user what to do.
39679
39680 @item corefile
39681 You can specify that @value{GDBN} should always (yes) or never (no)
39682 create a core file. The default is to ask the user what to do. Note
39683 that there is no @code{corefile} option for @code{demangler-warning}:
39684 demangler warnings always create a core file and this cannot be
39685 disabled.
39686 @end table
39687
39688 @kindex maint set internal-error
39689 @kindex maint show internal-error
39690 @kindex maint set internal-warning
39691 @kindex maint show internal-warning
39692 @item maint set internal-error backtrace @r{[}on|off@r{]}
39693 @itemx maint show internal-error backtrace
39694 @itemx maint set internal-warning backtrace @r{[}on|off@r{]}
39695 @itemx maint show internal-warning backtrace
39696 When @value{GDBN} reports an internal problem (error or warning) it is
39697 possible to have a backtrace of @value{GDBN} printed to the standard
39698 error stream. This is @samp{on} by default for @code{internal-error}
39699 and @samp{off} by default for @code{internal-warning}.
39700
39701 @anchor{maint packet}
39702 @kindex maint packet
39703 @item maint packet @var{text}
39704 If @value{GDBN} is talking to an inferior via the serial protocol,
39705 then this command sends the string @var{text} to the inferior, and
39706 displays the response packet. @value{GDBN} supplies the initial
39707 @samp{$} character, the terminating @samp{#} character, and the
39708 checksum.
39709
39710 Any non-printable characters in the reply are printed as escaped hex,
39711 e.g. @samp{\x00}, @samp{\x01}, etc.
39712
39713 @kindex maint print architecture
39714 @item maint print architecture @r{[}@var{file}@r{]}
39715 Print the entire architecture configuration. The optional argument
39716 @var{file} names the file where the output goes.
39717
39718 @kindex maint print c-tdesc
39719 @item maint print c-tdesc @r{[}-single-feature@r{]} @r{[}@var{file}@r{]}
39720 Print the target description (@pxref{Target Descriptions}) as
39721 a C source file. By default, the target description is for the current
39722 target, but if the optional argument @var{file} is provided, that file
39723 is used to produce the description. The @var{file} should be an XML
39724 document, of the form described in @ref{Target Description Format}.
39725 The created source file is built into @value{GDBN} when @value{GDBN} is
39726 built again. This command is used by developers after they add or
39727 modify XML target descriptions.
39728
39729 When the optional flag @samp{-single-feature} is provided then the
39730 target description being processed (either the default, or from
39731 @var{file}) must only contain a single feature. The source file
39732 produced is different in this case.
39733
39734 @kindex maint print xml-tdesc
39735 @item maint print xml-tdesc @r{[}@var{file}@r{]}
39736 Print the target description (@pxref{Target Descriptions}) as an XML
39737 file. By default print the target description for the current target,
39738 but if the optional argument @var{file} is provided, then that file is
39739 read in by GDB and then used to produce the description. The
39740 @var{file} should be an XML document, of the form described in
39741 @ref{Target Description Format}.
39742
39743 @kindex maint check xml-descriptions
39744 @item maint check xml-descriptions @var{dir}
39745 Check that the target descriptions dynamically created by @value{GDBN}
39746 equal the descriptions created from XML files found in @var{dir}.
39747
39748 @anchor{maint check libthread-db}
39749 @kindex maint check libthread-db
39750 @item maint check libthread-db
39751 Run integrity checks on the current inferior's thread debugging
39752 library. This exercises all @code{libthread_db} functionality used by
39753 @value{GDBN} on GNU/Linux systems, and by extension also exercises the
39754 @code{proc_service} functions provided by @value{GDBN} that
39755 @code{libthread_db} uses. Note that parts of the test may be skipped
39756 on some platforms when debugging core files.
39757
39758 @kindex maint print core-file-backed-mappings
39759 @cindex memory address space mappings
39760 @item maint print core-file-backed-mappings
39761 Print the file-backed mappings which were loaded from a core file note.
39762 This output represents state internal to @value{GDBN} and should be
39763 similar to the mappings displayed by the @code{info proc mappings}
39764 command.
39765
39766 @kindex maint print dummy-frames
39767 @item maint print dummy-frames
39768 Prints the contents of @value{GDBN}'s internal dummy-frame stack.
39769
39770 @smallexample
39771 (@value{GDBP}) @kbd{b add}
39772 @dots{}
39773 (@value{GDBP}) @kbd{print add(2,3)}
39774 Breakpoint 2, add (a=2, b=3) at @dots{}
39775 58 return (a + b);
39776 The program being debugged stopped while in a function called from GDB.
39777 @dots{}
39778 (@value{GDBP}) @kbd{maint print dummy-frames}
39779 0xa8206d8: id=@{stack=0xbfffe734,code=0xbfffe73f,!special@}, ptid=process 9353
39780 (@value{GDBP})
39781 @end smallexample
39782
39783 Takes an optional file parameter.
39784
39785 @kindex maint print registers
39786 @kindex maint print raw-registers
39787 @kindex maint print cooked-registers
39788 @kindex maint print register-groups
39789 @kindex maint print remote-registers
39790 @item maint print registers @r{[}@var{file}@r{]}
39791 @itemx maint print raw-registers @r{[}@var{file}@r{]}
39792 @itemx maint print cooked-registers @r{[}@var{file}@r{]}
39793 @itemx maint print register-groups @r{[}@var{file}@r{]}
39794 @itemx maint print remote-registers @r{[}@var{file}@r{]}
39795 Print @value{GDBN}'s internal register data structures.
39796
39797 The command @code{maint print raw-registers} includes the contents of
39798 the raw register cache; the command @code{maint print
39799 cooked-registers} includes the (cooked) value of all registers,
39800 including registers which aren't available on the target nor visible
39801 to user; the command @code{maint print register-groups} includes the
39802 groups that each register is a member of; and the command @code{maint
39803 print remote-registers} includes the remote target's register numbers
39804 and offsets in the `G' packets.
39805
39806 These commands take an optional parameter, a file name to which to
39807 write the information.
39808
39809 @kindex maint print reggroups
39810 @item maint print reggroups @r{[}@var{file}@r{]}
39811 Print @value{GDBN}'s internal register group data structures. The
39812 optional argument @var{file} tells to what file to write the
39813 information.
39814
39815 The register groups info looks like this:
39816
39817 @smallexample
39818 (@value{GDBP}) @kbd{maint print reggroups}
39819 Group Type
39820 general user
39821 float user
39822 all user
39823 vector user
39824 system user
39825 save internal
39826 restore internal
39827 @end smallexample
39828
39829 @kindex maint flush register-cache
39830 @kindex flushregs
39831 @cindex register cache, flushing
39832 @item maint flush register-cache
39833 @itemx flushregs
39834 Flush the contents of the register cache and as a consequence the
39835 frame cache. This command is useful when debugging issues related to
39836 register fetching, or frame unwinding. The command @code{flushregs}
39837 is deprecated in favor of @code{maint flush register-cache}.
39838
39839 @kindex maint flush source-cache
39840 @cindex source code, caching
39841 @item maint flush source-cache
39842 Flush @value{GDBN}'s cache of source code file contents. After
39843 @value{GDBN} reads a source file, and optionally applies styling
39844 (@pxref{Output Styling}), the file contents are cached. This command
39845 clears that cache. The next time @value{GDBN} wants to show lines
39846 from a source file, the content will be re-read.
39847
39848 This command is useful when debugging issues related to source code
39849 styling. After flushing the cache any source code displayed by
39850 @value{GDBN} will be re-read and re-styled.
39851
39852 @kindex maint print objfiles
39853 @cindex info for known object files
39854 @item maint print objfiles @r{[}@var{regexp}@r{]}
39855 Print a dump of all known object files.
39856 If @var{regexp} is specified, only print object files whose names
39857 match @var{regexp}. For each object file, this command prints its name,
39858 address in memory, and all of its psymtabs and symtabs.
39859
39860 @kindex maint print user-registers
39861 @cindex user registers
39862 @item maint print user-registers
39863 List all currently available @dfn{user registers}. User registers
39864 typically provide alternate names for actual hardware registers. They
39865 include the four ``standard'' registers @code{$fp}, @code{$pc},
39866 @code{$sp}, and @code{$ps}. @xref{standard registers}. User
39867 registers can be used in expressions in the same way as the canonical
39868 register names, but only the latter are listed by the @code{info
39869 registers} and @code{maint print registers} commands.
39870
39871 @kindex maint print section-scripts
39872 @cindex info for known .debug_gdb_scripts-loaded scripts
39873 @item maint print section-scripts [@var{regexp}]
39874 Print a dump of scripts specified in the @code{.debug_gdb_section} section.
39875 If @var{regexp} is specified, only print scripts loaded by object files
39876 matching @var{regexp}.
39877 For each script, this command prints its name as specified in the objfile,
39878 and the full path if known.
39879 @xref{dotdebug_gdb_scripts section}.
39880
39881 @kindex maint print statistics
39882 @cindex bcache statistics
39883 @item maint print statistics
39884 This command prints, for each object file in the program, various data
39885 about that object file followed by the byte cache (@dfn{bcache})
39886 statistics for the object file. The objfile data includes the number
39887 of minimal, partial, full, and stabs symbols, the number of types
39888 defined by the objfile, the number of as yet unexpanded psym tables,
39889 the number of line tables and string tables, and the amount of memory
39890 used by the various tables. The bcache statistics include the counts,
39891 sizes, and counts of duplicates of all and unique objects, max,
39892 average, and median entry size, total memory used and its overhead and
39893 savings, and various measures of the hash table size and chain
39894 lengths.
39895
39896 @kindex maint print target-stack
39897 @cindex target stack description
39898 @item maint print target-stack
39899 A @dfn{target} is an interface between the debugger and a particular
39900 kind of file or process. Targets can be stacked in @dfn{strata},
39901 so that more than one target can potentially respond to a request.
39902 In particular, memory accesses will walk down the stack of targets
39903 until they find a target that is interested in handling that particular
39904 address.
39905
39906 This command prints a short description of each layer that was pushed on
39907 the @dfn{target stack}, starting from the top layer down to the bottom one.
39908
39909 @kindex maint print type
39910 @cindex type chain of a data type
39911 @item maint print type @var{expr}
39912 Print the type chain for a type specified by @var{expr}. The argument
39913 can be either a type name or a symbol. If it is a symbol, the type of
39914 that symbol is described. The type chain produced by this command is
39915 a recursive definition of the data type as stored in @value{GDBN}'s
39916 data structures, including its flags and contained types.
39917
39918 @kindex maint selftest
39919 @cindex self tests
39920 @item maint selftest @r{[}-verbose@r{]} @r{[}@var{filter}@r{]}
39921 Run any self tests that were compiled in to @value{GDBN}. This will
39922 print a message showing how many tests were run, and how many failed.
39923 If a @var{filter} is passed, only the tests with @var{filter} in their
39924 name will be ran. If @code{-verbose} is passed, the self tests can be
39925 more verbose.
39926
39927 @kindex maint set selftest verbose
39928 @kindex maint show selftest verbose
39929 @cindex self tests
39930 @item maint set selftest verbose
39931 @item maint show selftest verbose
39932 Control whether self tests are run verbosely or not.
39933
39934 @kindex maint info selftests
39935 @cindex self tests
39936 @item maint info selftests
39937 List the selftests compiled in to @value{GDBN}.
39938
39939 @kindex maint set dwarf always-disassemble
39940 @kindex maint show dwarf always-disassemble
39941 @item maint set dwarf always-disassemble
39942 @item maint show dwarf always-disassemble
39943 Control the behavior of @code{info address} when using DWARF debugging
39944 information.
39945
39946 The default is @code{off}, which means that @value{GDBN} should try to
39947 describe a variable's location in an easily readable format. When
39948 @code{on}, @value{GDBN} will instead display the DWARF location
39949 expression in an assembly-like format. Note that some locations are
39950 too complex for @value{GDBN} to describe simply; in this case you will
39951 always see the disassembly form.
39952
39953 Here is an example of the resulting disassembly:
39954
39955 @smallexample
39956 (gdb) info addr argc
39957 Symbol "argc" is a complex DWARF expression:
39958 1: DW_OP_fbreg 0
39959 @end smallexample
39960
39961 For more information on these expressions, see
39962 @uref{http://www.dwarfstd.org/, the DWARF standard}.
39963
39964 @kindex maint set dwarf max-cache-age
39965 @kindex maint show dwarf max-cache-age
39966 @item maint set dwarf max-cache-age
39967 @itemx maint show dwarf max-cache-age
39968 Control the DWARF compilation unit cache.
39969
39970 @cindex DWARF compilation units cache
39971 In object files with inter-compilation-unit references, such as those
39972 produced by the GCC option @samp{-feliminate-dwarf2-dups}, the DWARF
39973 reader needs to frequently refer to previously read compilation units.
39974 This setting controls how long a compilation unit will remain in the
39975 cache if it is not referenced. A higher limit means that cached
39976 compilation units will be stored in memory longer, and more total
39977 memory will be used. Setting it to zero disables caching, which will
39978 slow down @value{GDBN} startup, but reduce memory consumption.
39979
39980 @kindex maint set dwarf unwinders
39981 @kindex maint show dwarf unwinders
39982 @item maint set dwarf unwinders
39983 @itemx maint show dwarf unwinders
39984 Control use of the DWARF frame unwinders.
39985
39986 @cindex DWARF frame unwinders
39987 Many targets that support DWARF debugging use @value{GDBN}'s DWARF
39988 frame unwinders to build the backtrace. Many of these targets will
39989 also have a second mechanism for building the backtrace for use in
39990 cases where DWARF information is not available, this second mechanism
39991 is often an analysis of a function's prologue.
39992
39993 In order to extend testing coverage of the second level stack
39994 unwinding mechanisms it is helpful to be able to disable the DWARF
39995 stack unwinders, this can be done with this switch.
39996
39997 In normal use of @value{GDBN} disabling the DWARF unwinders is not
39998 advisable, there are cases that are better handled through DWARF than
39999 prologue analysis, and the debug experience is likely to be better
40000 with the DWARF frame unwinders enabled.
40001
40002 If DWARF frame unwinders are not supported for a particular target
40003 architecture, then enabling this flag does not cause them to be used.
40004
40005 @kindex maint set worker-threads
40006 @kindex maint show worker-threads
40007 @item maint set worker-threads
40008 @item maint show worker-threads
40009 Control the number of worker threads that may be used by @value{GDBN}.
40010 On capable hosts, @value{GDBN} may use multiple threads to speed up
40011 certain CPU-intensive operations, such as demangling symbol names.
40012 While the number of threads used by @value{GDBN} may vary, this
40013 command can be used to set an upper bound on this number. The default
40014 is @code{unlimited}, which lets @value{GDBN} choose a reasonable
40015 number. Note that this only controls worker threads started by
40016 @value{GDBN} itself; libraries used by @value{GDBN} may start threads
40017 of their own.
40018
40019 @kindex maint set profile
40020 @kindex maint show profile
40021 @cindex profiling GDB
40022 @item maint set profile
40023 @itemx maint show profile
40024 Control profiling of @value{GDBN}.
40025
40026 Profiling will be disabled until you use the @samp{maint set profile}
40027 command to enable it. When you enable profiling, the system will begin
40028 collecting timing and execution count data; when you disable profiling or
40029 exit @value{GDBN}, the results will be written to a log file. Remember that
40030 if you use profiling, @value{GDBN} will overwrite the profiling log file
40031 (often called @file{gmon.out}). If you have a record of important profiling
40032 data in a @file{gmon.out} file, be sure to move it to a safe location.
40033
40034 Configuring with @samp{--enable-profiling} arranges for @value{GDBN} to be
40035 compiled with the @samp{-pg} compiler option.
40036
40037 @kindex maint set show-debug-regs
40038 @kindex maint show show-debug-regs
40039 @cindex hardware debug registers
40040 @item maint set show-debug-regs
40041 @itemx maint show show-debug-regs
40042 Control whether to show variables that mirror the hardware debug
40043 registers. Use @code{on} to enable, @code{off} to disable. If
40044 enabled, the debug registers values are shown when @value{GDBN} inserts or
40045 removes a hardware breakpoint or watchpoint, and when the inferior
40046 triggers a hardware-assisted breakpoint or watchpoint.
40047
40048 @kindex maint set show-all-tib
40049 @kindex maint show show-all-tib
40050 @item maint set show-all-tib
40051 @itemx maint show show-all-tib
40052 Control whether to show all non zero areas within a 1k block starting
40053 at thread local base, when using the @samp{info w32 thread-information-block}
40054 command.
40055
40056 @kindex maint set target-async
40057 @kindex maint show target-async
40058 @item maint set target-async
40059 @itemx maint show target-async
40060 This controls whether @value{GDBN} targets operate in synchronous or
40061 asynchronous mode (@pxref{Background Execution}). Normally the
40062 default is asynchronous, if it is available; but this can be changed
40063 to more easily debug problems occurring only in synchronous mode.
40064
40065 @kindex maint set target-non-stop @var{mode} [on|off|auto]
40066 @kindex maint show target-non-stop
40067 @item maint set target-non-stop
40068 @itemx maint show target-non-stop
40069
40070 This controls whether @value{GDBN} targets always operate in non-stop
40071 mode even if @code{set non-stop} is @code{off} (@pxref{Non-Stop
40072 Mode}). The default is @code{auto}, meaning non-stop mode is enabled
40073 if supported by the target.
40074
40075 @table @code
40076 @item maint set target-non-stop auto
40077 This is the default mode. @value{GDBN} controls the target in
40078 non-stop mode if the target supports it.
40079
40080 @item maint set target-non-stop on
40081 @value{GDBN} controls the target in non-stop mode even if the target
40082 does not indicate support.
40083
40084 @item maint set target-non-stop off
40085 @value{GDBN} does not control the target in non-stop mode even if the
40086 target supports it.
40087 @end table
40088
40089 @kindex maint set tui-resize-message
40090 @kindex maint show tui-resize-message
40091 @item maint set tui-resize-message
40092 @item maint show tui-resize-message
40093 Control whether @value{GDBN} displays a message each time the terminal
40094 is resized when in TUI mode. The default is @code{off}, which means
40095 that @value{GDBN} is silent during resizes. When @code{on},
40096 @value{GDBN} will display a message after a resize is completed; the
40097 message will include a number indicating how many times the terminal
40098 has been resized. This setting is intended for use by the test suite,
40099 where it would otherwise be difficult to determine when a resize and
40100 refresh has been completed.
40101
40102 @kindex maint set per-command
40103 @kindex maint show per-command
40104 @item maint set per-command
40105 @itemx maint show per-command
40106 @cindex resources used by commands
40107
40108 @value{GDBN} can display the resources used by each command.
40109 This is useful in debugging performance problems.
40110
40111 @table @code
40112 @item maint set per-command space [on|off]
40113 @itemx maint show per-command space
40114 Enable or disable the printing of the memory used by GDB for each command.
40115 If enabled, @value{GDBN} will display how much memory each command
40116 took, following the command's own output.
40117 This can also be requested by invoking @value{GDBN} with the
40118 @option{--statistics} command-line switch (@pxref{Mode Options}).
40119
40120 @item maint set per-command time [on|off]
40121 @itemx maint show per-command time
40122 Enable or disable the printing of the execution time of @value{GDBN}
40123 for each command.
40124 If enabled, @value{GDBN} will display how much time it
40125 took to execute each command, following the command's own output.
40126 Both CPU time and wallclock time are printed.
40127 Printing both is useful when trying to determine whether the cost is
40128 CPU or, e.g., disk/network latency.
40129 Note that the CPU time printed is for @value{GDBN} only, it does not include
40130 the execution time of the inferior because there's no mechanism currently
40131 to compute how much time was spent by @value{GDBN} and how much time was
40132 spent by the program been debugged.
40133 This can also be requested by invoking @value{GDBN} with the
40134 @option{--statistics} command-line switch (@pxref{Mode Options}).
40135
40136 @item maint set per-command symtab [on|off]
40137 @itemx maint show per-command symtab
40138 Enable or disable the printing of basic symbol table statistics
40139 for each command.
40140 If enabled, @value{GDBN} will display the following information:
40141
40142 @enumerate a
40143 @item
40144 number of symbol tables
40145 @item
40146 number of primary symbol tables
40147 @item
40148 number of blocks in the blockvector
40149 @end enumerate
40150 @end table
40151
40152 @kindex maint set check-libthread-db
40153 @kindex maint show check-libthread-db
40154 @item maint set check-libthread-db [on|off]
40155 @itemx maint show check-libthread-db
40156 Control whether @value{GDBN} should run integrity checks on inferior
40157 specific thread debugging libraries as they are loaded. The default
40158 is not to perform such checks. If any check fails @value{GDBN} will
40159 unload the library and continue searching for a suitable candidate as
40160 described in @ref{set libthread-db-search-path}. For more information
40161 about the tests, see @ref{maint check libthread-db}.
40162
40163 @kindex maint set gnu-source-highlight enabled
40164 @kindex maint show gnu-source-highlight enabled
40165 @item maint set gnu-source-highlight enabled @r{[}on|off@r{]}
40166 @itemx maint show gnu-source-highlight enabled
40167 Control whether @value{GDBN} should use the GNU Source Highlight
40168 library for applying styling to source code (@pxref{Output Styling}).
40169 This will be @samp{on} by default if the GNU Source Highlight library
40170 is available. If the GNU Source Highlight library is not available,
40171 then this will be @samp{off} by default, and attempting to change this
40172 value to @samp{on} will give an error.
40173
40174 If the GNU Source Highlight library is not being used, then
40175 @value{GDBN} will use the Python Pygments package for source code
40176 styling, if it is available.
40177
40178 This option is useful for debugging @value{GDBN}'s use of the Pygments
40179 library when @value{GDBN} is linked against the GNU Source Highlight
40180 library.
40181
40182 @kindex maint space
40183 @cindex memory used by commands
40184 @item maint space @var{value}
40185 An alias for @code{maint set per-command space}.
40186 A non-zero value enables it, zero disables it.
40187
40188 @kindex maint time
40189 @cindex time of command execution
40190 @item maint time @var{value}
40191 An alias for @code{maint set per-command time}.
40192 A non-zero value enables it, zero disables it.
40193
40194 @kindex maint translate-address
40195 @item maint translate-address @r{[}@var{section}@r{]} @var{addr}
40196 Find the symbol stored at the location specified by the address
40197 @var{addr} and an optional section name @var{section}. If found,
40198 @value{GDBN} prints the name of the closest symbol and an offset from
40199 the symbol's location to the specified address. This is similar to
40200 the @code{info address} command (@pxref{Symbols}), except that this
40201 command also allows to find symbols in other sections.
40202
40203 If section was not specified, the section in which the symbol was found
40204 is also printed. For dynamically linked executables, the name of
40205 executable or shared library containing the symbol is printed as well.
40206
40207 @kindex maint test-options
40208 @item maint test-options require-delimiter
40209 @itemx maint test-options unknown-is-error
40210 @itemx maint test-options unknown-is-operand
40211 These commands are used by the testsuite to validate the command
40212 options framework. The @code{require-delimiter} variant requires a
40213 double-dash delimiter to indicate end of options. The
40214 @code{unknown-is-error} and @code{unknown-is-operand} do not. The
40215 @code{unknown-is-error} variant throws an error on unknown option,
40216 while @code{unknown-is-operand} treats unknown options as the start of
40217 the command's operands. When run, the commands output the result of
40218 the processed options. When completed, the commands store the
40219 internal result of completion in a variable exposed by the @code{maint
40220 show test-options-completion-result} command.
40221
40222 @kindex maint show test-options-completion-result
40223 @item maint show test-options-completion-result
40224 Shows the result of completing the @code{maint test-options}
40225 subcommands. This is used by the testsuite to validate completion
40226 support in the command options framework.
40227
40228 @kindex maint set test-settings
40229 @kindex maint show test-settings
40230 @item maint set test-settings @var{kind}
40231 @itemx maint show test-settings @var{kind}
40232 These are representative commands for each @var{kind} of setting type
40233 @value{GDBN} supports. They are used by the testsuite for exercising
40234 the settings infrastructure.
40235
40236 @kindex maint set backtrace-on-fatal-signal
40237 @kindex maint show backtrace-on-fatal-signal
40238 @item maint set backtrace-on-fatal-signal [on|off]
40239 @itemx maint show backtrace-on-fatal-signal
40240 When this setting is @code{on}, if @value{GDBN} itself terminates with
40241 a fatal signal (e.g.@: SIGSEGV), then a limited backtrace will be
40242 printed to the standard error stream. This backtrace can be used to
40243 help diagnose crashes within @value{GDBN} in situations where a user
40244 is unable to share a corefile with the @value{GDBN} developers.
40245
40246 If the functionality to provide this backtrace is not available for
40247 the platform on which GDB is running then this feature will be
40248 @code{off} by default, and attempting to turn this feature on will
40249 give an error.
40250
40251 For platforms that do support creating the backtrace this feature is
40252 @code{on} by default.
40253
40254 @kindex maint with
40255 @item maint with @var{setting} [@var{value}] [-- @var{command}]
40256 Like the @code{with} command, but works with @code{maintenance set}
40257 variables. This is used by the testsuite to exercise the @code{with}
40258 command's infrastructure.
40259
40260 @end table
40261
40262 The following command is useful for non-interactive invocations of
40263 @value{GDBN}, such as in the test suite.
40264
40265 @table @code
40266 @item set watchdog @var{nsec}
40267 @kindex set watchdog
40268 @cindex watchdog timer
40269 @cindex timeout for commands
40270 Set the maximum number of seconds @value{GDBN} will wait for the
40271 target operation to finish. If this time expires, @value{GDBN}
40272 reports and error and the command is aborted.
40273
40274 @item show watchdog
40275 Show the current setting of the target wait timeout.
40276 @end table
40277
40278 @node Remote Protocol
40279 @appendix @value{GDBN} Remote Serial Protocol
40280
40281 @menu
40282 * Overview::
40283 * Packets::
40284 * Stop Reply Packets::
40285 * General Query Packets::
40286 * Architecture-Specific Protocol Details::
40287 * Tracepoint Packets::
40288 * Host I/O Packets::
40289 * Interrupts::
40290 * Notification Packets::
40291 * Remote Non-Stop::
40292 * Packet Acknowledgment::
40293 * Examples::
40294 * File-I/O Remote Protocol Extension::
40295 * Library List Format::
40296 * Library List Format for SVR4 Targets::
40297 * Memory Map Format::
40298 * Thread List Format::
40299 * Traceframe Info Format::
40300 * Branch Trace Format::
40301 * Branch Trace Configuration Format::
40302 @end menu
40303
40304 @node Overview
40305 @section Overview
40306
40307 There may be occasions when you need to know something about the
40308 protocol---for example, if there is only one serial port to your target
40309 machine, you might want your program to do something special if it
40310 recognizes a packet meant for @value{GDBN}.
40311
40312 In the examples below, @samp{->} and @samp{<-} are used to indicate
40313 transmitted and received data, respectively.
40314
40315 @cindex protocol, @value{GDBN} remote serial
40316 @cindex serial protocol, @value{GDBN} remote
40317 @cindex remote serial protocol
40318 All @value{GDBN} commands and responses (other than acknowledgments
40319 and notifications, see @ref{Notification Packets}) are sent as a
40320 @var{packet}. A @var{packet} is introduced with the character
40321 @samp{$}, the actual @var{packet-data}, and the terminating character
40322 @samp{#} followed by a two-digit @var{checksum}:
40323
40324 @smallexample
40325 @code{$}@var{packet-data}@code{#}@var{checksum}
40326 @end smallexample
40327 @noindent
40328
40329 @cindex checksum, for @value{GDBN} remote
40330 @noindent
40331 The two-digit @var{checksum} is computed as the modulo 256 sum of all
40332 characters between the leading @samp{$} and the trailing @samp{#} (an
40333 eight bit unsigned checksum).
40334
40335 Implementors should note that prior to @value{GDBN} 5.0 the protocol
40336 specification also included an optional two-digit @var{sequence-id}:
40337
40338 @smallexample
40339 @code{$}@var{sequence-id}@code{:}@var{packet-data}@code{#}@var{checksum}
40340 @end smallexample
40341
40342 @cindex sequence-id, for @value{GDBN} remote
40343 @noindent
40344 That @var{sequence-id} was appended to the acknowledgment. @value{GDBN}
40345 has never output @var{sequence-id}s. Stubs that handle packets added
40346 since @value{GDBN} 5.0 must not accept @var{sequence-id}.
40347
40348 When either the host or the target machine receives a packet, the first
40349 response expected is an acknowledgment: either @samp{+} (to indicate
40350 the package was received correctly) or @samp{-} (to request
40351 retransmission):
40352
40353 @smallexample
40354 -> @code{$}@var{packet-data}@code{#}@var{checksum}
40355 <- @code{+}
40356 @end smallexample
40357 @noindent
40358
40359 The @samp{+}/@samp{-} acknowledgments can be disabled
40360 once a connection is established.
40361 @xref{Packet Acknowledgment}, for details.
40362
40363 The host (@value{GDBN}) sends @var{command}s, and the target (the
40364 debugging stub incorporated in your program) sends a @var{response}. In
40365 the case of step and continue @var{command}s, the response is only sent
40366 when the operation has completed, and the target has again stopped all
40367 threads in all attached processes. This is the default all-stop mode
40368 behavior, but the remote protocol also supports @value{GDBN}'s non-stop
40369 execution mode; see @ref{Remote Non-Stop}, for details.
40370
40371 @var{packet-data} consists of a sequence of characters with the
40372 exception of @samp{#} and @samp{$} (see @samp{X} packet for additional
40373 exceptions).
40374
40375 @cindex remote protocol, field separator
40376 Fields within the packet should be separated using @samp{,} @samp{;} or
40377 @samp{:}. Except where otherwise noted all numbers are represented in
40378 @sc{hex} with leading zeros suppressed.
40379
40380 Implementors should note that prior to @value{GDBN} 5.0, the character
40381 @samp{:} could not appear as the third character in a packet (as it
40382 would potentially conflict with the @var{sequence-id}).
40383
40384 @cindex remote protocol, binary data
40385 @anchor{Binary Data}
40386 Binary data in most packets is encoded either as two hexadecimal
40387 digits per byte of binary data. This allowed the traditional remote
40388 protocol to work over connections which were only seven-bit clean.
40389 Some packets designed more recently assume an eight-bit clean
40390 connection, and use a more efficient encoding to send and receive
40391 binary data.
40392
40393 The binary data representation uses @code{7d} (@sc{ascii} @samp{@}})
40394 as an escape character. Any escaped byte is transmitted as the escape
40395 character followed by the original character XORed with @code{0x20}.
40396 For example, the byte @code{0x7d} would be transmitted as the two
40397 bytes @code{0x7d 0x5d}. The bytes @code{0x23} (@sc{ascii} @samp{#}),
40398 @code{0x24} (@sc{ascii} @samp{$}), and @code{0x7d} (@sc{ascii}
40399 @samp{@}}) must always be escaped. Responses sent by the stub
40400 must also escape @code{0x2a} (@sc{ascii} @samp{*}), so that it
40401 is not interpreted as the start of a run-length encoded sequence
40402 (described next).
40403
40404 Response @var{data} can be run-length encoded to save space.
40405 Run-length encoding replaces runs of identical characters with one
40406 instance of the repeated character, followed by a @samp{*} and a
40407 repeat count. The repeat count is itself sent encoded, to avoid
40408 binary characters in @var{data}: a value of @var{n} is sent as
40409 @code{@var{n}+29}. For a repeat count greater or equal to 3, this
40410 produces a printable @sc{ascii} character, e.g.@: a space (@sc{ascii}
40411 code 32) for a repeat count of 3. (This is because run-length
40412 encoding starts to win for counts 3 or more.) Thus, for example,
40413 @samp{0* } is a run-length encoding of ``0000'': the space character
40414 after @samp{*} means repeat the leading @code{0} @w{@code{32 - 29 =
40415 3}} more times.
40416
40417 The printable characters @samp{#} and @samp{$} or with a numeric value
40418 greater than 126 must not be used. Runs of six repeats (@samp{#}) or
40419 seven repeats (@samp{$}) can be expanded using a repeat count of only
40420 five (@samp{"}). For example, @samp{00000000} can be encoded as
40421 @samp{0*"00}.
40422
40423 The error response returned for some packets includes a two character
40424 error number. That number is not well defined.
40425
40426 @cindex empty response, for unsupported packets
40427 For any @var{command} not supported by the stub, an empty response
40428 (@samp{$#00}) should be returned. That way it is possible to extend the
40429 protocol. A newer @value{GDBN} can tell if a packet is supported based
40430 on that response.
40431
40432 At a minimum, a stub is required to support the @samp{?} command to
40433 tell @value{GDBN} the reason for halting, @samp{g} and @samp{G}
40434 commands for register access, and the @samp{m} and @samp{M} commands
40435 for memory access. Stubs that only control single-threaded targets
40436 can implement run control with the @samp{c} (continue) command, and if
40437 the target architecture supports hardware-assisted single-stepping,
40438 the @samp{s} (step) command. Stubs that support multi-threading
40439 targets should support the @samp{vCont} command. All other commands
40440 are optional.
40441
40442 @node Packets
40443 @section Packets
40444
40445 The following table provides a complete list of all currently defined
40446 @var{command}s and their corresponding response @var{data}.
40447 @xref{File-I/O Remote Protocol Extension}, for details about the File
40448 I/O extension of the remote protocol.
40449
40450 Each packet's description has a template showing the packet's overall
40451 syntax, followed by an explanation of the packet's meaning. We
40452 include spaces in some of the templates for clarity; these are not
40453 part of the packet's syntax. No @value{GDBN} packet uses spaces to
40454 separate its components. For example, a template like @samp{foo
40455 @var{bar} @var{baz}} describes a packet beginning with the three ASCII
40456 bytes @samp{foo}, followed by a @var{bar}, followed directly by a
40457 @var{baz}. @value{GDBN} does not transmit a space character between the
40458 @samp{foo} and the @var{bar}, or between the @var{bar} and the
40459 @var{baz}.
40460
40461 @cindex @var{thread-id}, in remote protocol
40462 @anchor{thread-id syntax}
40463 Several packets and replies include a @var{thread-id} field to identify
40464 a thread. Normally these are positive numbers with a target-specific
40465 interpretation, formatted as big-endian hex strings. A @var{thread-id}
40466 can also be a literal @samp{-1} to indicate all threads, or @samp{0} to
40467 pick any thread.
40468
40469 In addition, the remote protocol supports a multiprocess feature in
40470 which the @var{thread-id} syntax is extended to optionally include both
40471 process and thread ID fields, as @samp{p@var{pid}.@var{tid}}.
40472 The @var{pid} (process) and @var{tid} (thread) components each have the
40473 format described above: a positive number with target-specific
40474 interpretation formatted as a big-endian hex string, literal @samp{-1}
40475 to indicate all processes or threads (respectively), or @samp{0} to
40476 indicate an arbitrary process or thread. Specifying just a process, as
40477 @samp{p@var{pid}}, is equivalent to @samp{p@var{pid}.-1}. It is an
40478 error to specify all processes but a specific thread, such as
40479 @samp{p-1.@var{tid}}. Note that the @samp{p} prefix is @emph{not} used
40480 for those packets and replies explicitly documented to include a process
40481 ID, rather than a @var{thread-id}.
40482
40483 The multiprocess @var{thread-id} syntax extensions are only used if both
40484 @value{GDBN} and the stub report support for the @samp{multiprocess}
40485 feature using @samp{qSupported}. @xref{multiprocess extensions}, for
40486 more information.
40487
40488 Note that all packet forms beginning with an upper- or lower-case
40489 letter, other than those described here, are reserved for future use.
40490
40491 Here are the packet descriptions.
40492
40493 @table @samp
40494
40495 @item !
40496 @cindex @samp{!} packet
40497 @anchor{extended mode}
40498 Enable extended mode. In extended mode, the remote server is made
40499 persistent. The @samp{R} packet is used to restart the program being
40500 debugged.
40501
40502 Reply:
40503 @table @samp
40504 @item OK
40505 The remote target both supports and has enabled extended mode.
40506 @end table
40507
40508 @item ?
40509 @cindex @samp{?} packet
40510 @anchor{? packet}
40511 This is sent when connection is first established to query the reason
40512 the target halted. The reply is the same as for step and continue.
40513 This packet has a special interpretation when the target is in
40514 non-stop mode; see @ref{Remote Non-Stop}.
40515
40516 Reply:
40517 @xref{Stop Reply Packets}, for the reply specifications.
40518
40519 @item A @var{arglen},@var{argnum},@var{arg},@dots{}
40520 @cindex @samp{A} packet
40521 Initialized @code{argv[]} array passed into program. @var{arglen}
40522 specifies the number of bytes in the hex encoded byte stream
40523 @var{arg}. See @code{gdbserver} for more details.
40524
40525 Reply:
40526 @table @samp
40527 @item OK
40528 The arguments were set.
40529 @item E @var{NN}
40530 An error occurred.
40531 @end table
40532
40533 @item b @var{baud}
40534 @cindex @samp{b} packet
40535 (Don't use this packet; its behavior is not well-defined.)
40536 Change the serial line speed to @var{baud}.
40537
40538 JTC: @emph{When does the transport layer state change? When it's
40539 received, or after the ACK is transmitted. In either case, there are
40540 problems if the command or the acknowledgment packet is dropped.}
40541
40542 Stan: @emph{If people really wanted to add something like this, and get
40543 it working for the first time, they ought to modify ser-unix.c to send
40544 some kind of out-of-band message to a specially-setup stub and have the
40545 switch happen "in between" packets, so that from remote protocol's point
40546 of view, nothing actually happened.}
40547
40548 @item B @var{addr},@var{mode}
40549 @cindex @samp{B} packet
40550 Set (@var{mode} is @samp{S}) or clear (@var{mode} is @samp{C}) a
40551 breakpoint at @var{addr}.
40552
40553 Don't use this packet. Use the @samp{Z} and @samp{z} packets instead
40554 (@pxref{insert breakpoint or watchpoint packet}).
40555
40556 @cindex @samp{bc} packet
40557 @anchor{bc}
40558 @item bc
40559 Backward continue. Execute the target system in reverse. No parameter.
40560 @xref{Reverse Execution}, for more information.
40561
40562 Reply:
40563 @xref{Stop Reply Packets}, for the reply specifications.
40564
40565 @cindex @samp{bs} packet
40566 @anchor{bs}
40567 @item bs
40568 Backward single step. Execute one instruction in reverse. No parameter.
40569 @xref{Reverse Execution}, for more information.
40570
40571 Reply:
40572 @xref{Stop Reply Packets}, for the reply specifications.
40573
40574 @item c @r{[}@var{addr}@r{]}
40575 @cindex @samp{c} packet
40576 Continue at @var{addr}, which is the address to resume. If @var{addr}
40577 is omitted, resume at current address.
40578
40579 This packet is deprecated for multi-threading support. @xref{vCont
40580 packet}.
40581
40582 Reply:
40583 @xref{Stop Reply Packets}, for the reply specifications.
40584
40585 @item C @var{sig}@r{[};@var{addr}@r{]}
40586 @cindex @samp{C} packet
40587 Continue with signal @var{sig} (hex signal number). If
40588 @samp{;@var{addr}} is omitted, resume at same address.
40589
40590 This packet is deprecated for multi-threading support. @xref{vCont
40591 packet}.
40592
40593 Reply:
40594 @xref{Stop Reply Packets}, for the reply specifications.
40595
40596 @item d
40597 @cindex @samp{d} packet
40598 Toggle debug flag.
40599
40600 Don't use this packet; instead, define a general set packet
40601 (@pxref{General Query Packets}).
40602
40603 @item D
40604 @itemx D;@var{pid}
40605 @cindex @samp{D} packet
40606 The first form of the packet is used to detach @value{GDBN} from the
40607 remote system. It is sent to the remote target
40608 before @value{GDBN} disconnects via the @code{detach} command.
40609
40610 The second form, including a process ID, is used when multiprocess
40611 protocol extensions are enabled (@pxref{multiprocess extensions}), to
40612 detach only a specific process. The @var{pid} is specified as a
40613 big-endian hex string.
40614
40615 Reply:
40616 @table @samp
40617 @item OK
40618 for success
40619 @item E @var{NN}
40620 for an error
40621 @end table
40622
40623 @item F @var{RC},@var{EE},@var{CF};@var{XX}
40624 @cindex @samp{F} packet
40625 A reply from @value{GDBN} to an @samp{F} packet sent by the target.
40626 This is part of the File-I/O protocol extension. @xref{File-I/O
40627 Remote Protocol Extension}, for the specification.
40628
40629 @item g
40630 @anchor{read registers packet}
40631 @cindex @samp{g} packet
40632 Read general registers.
40633
40634 Reply:
40635 @table @samp
40636 @item @var{XX@dots{}}
40637 Each byte of register data is described by two hex digits. The bytes
40638 with the register are transmitted in target byte order. The size of
40639 each register and their position within the @samp{g} packet are
40640 determined by the @value{GDBN} internal gdbarch functions
40641 @code{DEPRECATED_REGISTER_RAW_SIZE} and @code{gdbarch_register_name}.
40642
40643 When reading registers from a trace frame (@pxref{Analyze Collected
40644 Data,,Using the Collected Data}), the stub may also return a string of
40645 literal @samp{x}'s in place of the register data digits, to indicate
40646 that the corresponding register has not been collected, thus its value
40647 is unavailable. For example, for an architecture with 4 registers of
40648 4 bytes each, the following reply indicates to @value{GDBN} that
40649 registers 0 and 2 have not been collected, while registers 1 and 3
40650 have been collected, and both have zero value:
40651
40652 @smallexample
40653 -> @code{g}
40654 <- @code{xxxxxxxx00000000xxxxxxxx00000000}
40655 @end smallexample
40656
40657 @item E @var{NN}
40658 for an error.
40659 @end table
40660
40661 @item G @var{XX@dots{}}
40662 @cindex @samp{G} packet
40663 Write general registers. @xref{read registers packet}, for a
40664 description of the @var{XX@dots{}} data.
40665
40666 Reply:
40667 @table @samp
40668 @item OK
40669 for success
40670 @item E @var{NN}
40671 for an error
40672 @end table
40673
40674 @item H @var{op} @var{thread-id}
40675 @cindex @samp{H} packet
40676 Set thread for subsequent operations (@samp{m}, @samp{M}, @samp{g},
40677 @samp{G}, et.al.). Depending on the operation to be performed, @var{op}
40678 should be @samp{c} for step and continue operations (note that this
40679 is deprecated, supporting the @samp{vCont} command is a better
40680 option), and @samp{g} for other operations. The thread designator
40681 @var{thread-id} has the format and interpretation described in
40682 @ref{thread-id syntax}.
40683
40684 Reply:
40685 @table @samp
40686 @item OK
40687 for success
40688 @item E @var{NN}
40689 for an error
40690 @end table
40691
40692 @c FIXME: JTC:
40693 @c 'H': How restrictive (or permissive) is the thread model. If a
40694 @c thread is selected and stopped, are other threads allowed
40695 @c to continue to execute? As I mentioned above, I think the
40696 @c semantics of each command when a thread is selected must be
40697 @c described. For example:
40698 @c
40699 @c 'g': If the stub supports threads and a specific thread is
40700 @c selected, returns the register block from that thread;
40701 @c otherwise returns current registers.
40702 @c
40703 @c 'G' If the stub supports threads and a specific thread is
40704 @c selected, sets the registers of the register block of
40705 @c that thread; otherwise sets current registers.
40706
40707 @item i @r{[}@var{addr}@r{[},@var{nnn}@r{]]}
40708 @anchor{cycle step packet}
40709 @cindex @samp{i} packet
40710 Step the remote target by a single clock cycle. If @samp{,@var{nnn}} is
40711 present, cycle step @var{nnn} cycles. If @var{addr} is present, cycle
40712 step starting at that address.
40713
40714 @item I
40715 @cindex @samp{I} packet
40716 Signal, then cycle step. @xref{step with signal packet}. @xref{cycle
40717 step packet}.
40718
40719 @item k
40720 @cindex @samp{k} packet
40721 Kill request.
40722
40723 The exact effect of this packet is not specified.
40724
40725 For a bare-metal target, it may power cycle or reset the target
40726 system. For that reason, the @samp{k} packet has no reply.
40727
40728 For a single-process target, it may kill that process if possible.
40729
40730 A multiple-process target may choose to kill just one process, or all
40731 that are under @value{GDBN}'s control. For more precise control, use
40732 the vKill packet (@pxref{vKill packet}).
40733
40734 If the target system immediately closes the connection in response to
40735 @samp{k}, @value{GDBN} does not consider the lack of packet
40736 acknowledgment to be an error, and assumes the kill was successful.
40737
40738 If connected using @kbd{target extended-remote}, and the target does
40739 not close the connection in response to a kill request, @value{GDBN}
40740 probes the target state as if a new connection was opened
40741 (@pxref{? packet}).
40742
40743 @item m @var{addr},@var{length}
40744 @cindex @samp{m} packet
40745 Read @var{length} addressable memory units starting at address @var{addr}
40746 (@pxref{addressable memory unit}). Note that @var{addr} may not be aligned to
40747 any particular boundary.
40748
40749 The stub need not use any particular size or alignment when gathering
40750 data from memory for the response; even if @var{addr} is word-aligned
40751 and @var{length} is a multiple of the word size, the stub is free to
40752 use byte accesses, or not. For this reason, this packet may not be
40753 suitable for accessing memory-mapped I/O devices.
40754 @cindex alignment of remote memory accesses
40755 @cindex size of remote memory accesses
40756 @cindex memory, alignment and size of remote accesses
40757
40758 Reply:
40759 @table @samp
40760 @item @var{XX@dots{}}
40761 Memory contents; each byte is transmitted as a two-digit hexadecimal number.
40762 The reply may contain fewer addressable memory units than requested if the
40763 server was able to read only part of the region of memory.
40764 @item E @var{NN}
40765 @var{NN} is errno
40766 @end table
40767
40768 @item M @var{addr},@var{length}:@var{XX@dots{}}
40769 @cindex @samp{M} packet
40770 Write @var{length} addressable memory units starting at address @var{addr}
40771 (@pxref{addressable memory unit}). The data is given by @var{XX@dots{}}; each
40772 byte is transmitted as a two-digit hexadecimal number.
40773
40774 Reply:
40775 @table @samp
40776 @item OK
40777 for success
40778 @item E @var{NN}
40779 for an error (this includes the case where only part of the data was
40780 written).
40781 @end table
40782
40783 @item p @var{n}
40784 @cindex @samp{p} packet
40785 Read the value of register @var{n}; @var{n} is in hex.
40786 @xref{read registers packet}, for a description of how the returned
40787 register value is encoded.
40788
40789 Reply:
40790 @table @samp
40791 @item @var{XX@dots{}}
40792 the register's value
40793 @item E @var{NN}
40794 for an error
40795 @item @w{}
40796 Indicating an unrecognized @var{query}.
40797 @end table
40798
40799 @item P @var{n@dots{}}=@var{r@dots{}}
40800 @anchor{write register packet}
40801 @cindex @samp{P} packet
40802 Write register @var{n@dots{}} with value @var{r@dots{}}. The register
40803 number @var{n} is in hexadecimal, and @var{r@dots{}} contains two hex
40804 digits for each byte in the register (target byte order).
40805
40806 Reply:
40807 @table @samp
40808 @item OK
40809 for success
40810 @item E @var{NN}
40811 for an error
40812 @end table
40813
40814 @item q @var{name} @var{params}@dots{}
40815 @itemx Q @var{name} @var{params}@dots{}
40816 @cindex @samp{q} packet
40817 @cindex @samp{Q} packet
40818 General query (@samp{q}) and set (@samp{Q}). These packets are
40819 described fully in @ref{General Query Packets}.
40820
40821 @item r
40822 @cindex @samp{r} packet
40823 Reset the entire system.
40824
40825 Don't use this packet; use the @samp{R} packet instead.
40826
40827 @item R @var{XX}
40828 @cindex @samp{R} packet
40829 Restart the program being debugged. The @var{XX}, while needed, is ignored.
40830 This packet is only available in extended mode (@pxref{extended mode}).
40831
40832 The @samp{R} packet has no reply.
40833
40834 @item s @r{[}@var{addr}@r{]}
40835 @cindex @samp{s} packet
40836 Single step, resuming at @var{addr}. If
40837 @var{addr} is omitted, resume at same address.
40838
40839 This packet is deprecated for multi-threading support. @xref{vCont
40840 packet}.
40841
40842 Reply:
40843 @xref{Stop Reply Packets}, for the reply specifications.
40844
40845 @item S @var{sig}@r{[};@var{addr}@r{]}
40846 @anchor{step with signal packet}
40847 @cindex @samp{S} packet
40848 Step with signal. This is analogous to the @samp{C} packet, but
40849 requests a single-step, rather than a normal resumption of execution.
40850
40851 This packet is deprecated for multi-threading support. @xref{vCont
40852 packet}.
40853
40854 Reply:
40855 @xref{Stop Reply Packets}, for the reply specifications.
40856
40857 @item t @var{addr}:@var{PP},@var{MM}
40858 @cindex @samp{t} packet
40859 Search backwards starting at address @var{addr} for a match with pattern
40860 @var{PP} and mask @var{MM}, both of which are are 4 byte long.
40861 There must be at least 3 digits in @var{addr}.
40862
40863 @item T @var{thread-id}
40864 @cindex @samp{T} packet
40865 Find out if the thread @var{thread-id} is alive. @xref{thread-id syntax}.
40866
40867 Reply:
40868 @table @samp
40869 @item OK
40870 thread is still alive
40871 @item E @var{NN}
40872 thread is dead
40873 @end table
40874
40875 @item v
40876 Packets starting with @samp{v} are identified by a multi-letter name,
40877 up to the first @samp{;} or @samp{?} (or the end of the packet).
40878
40879 @item vAttach;@var{pid}
40880 @cindex @samp{vAttach} packet
40881 Attach to a new process with the specified process ID @var{pid}.
40882 The process ID is a
40883 hexadecimal integer identifying the process. In all-stop mode, all
40884 threads in the attached process are stopped; in non-stop mode, it may be
40885 attached without being stopped if that is supported by the target.
40886
40887 @c In non-stop mode, on a successful vAttach, the stub should set the
40888 @c current thread to a thread of the newly-attached process. After
40889 @c attaching, GDB queries for the attached process's thread ID with qC.
40890 @c Also note that, from a user perspective, whether or not the
40891 @c target is stopped on attach in non-stop mode depends on whether you
40892 @c use the foreground or background version of the attach command, not
40893 @c on what vAttach does; GDB does the right thing with respect to either
40894 @c stopping or restarting threads.
40895
40896 This packet is only available in extended mode (@pxref{extended mode}).
40897
40898 Reply:
40899 @table @samp
40900 @item E @var{nn}
40901 for an error
40902 @item @r{Any stop packet}
40903 for success in all-stop mode (@pxref{Stop Reply Packets})
40904 @item OK
40905 for success in non-stop mode (@pxref{Remote Non-Stop})
40906 @end table
40907
40908 @item vCont@r{[};@var{action}@r{[}:@var{thread-id}@r{]]}@dots{}
40909 @cindex @samp{vCont} packet
40910 @anchor{vCont packet}
40911 Resume the inferior, specifying different actions for each thread.
40912
40913 For each inferior thread, the leftmost action with a matching
40914 @var{thread-id} is applied. Threads that don't match any action
40915 remain in their current state. Thread IDs are specified using the
40916 syntax described in @ref{thread-id syntax}. If multiprocess
40917 extensions (@pxref{multiprocess extensions}) are supported, actions
40918 can be specified to match all threads in a process by using the
40919 @samp{p@var{pid}.-1} form of the @var{thread-id}. An action with no
40920 @var{thread-id} matches all threads. Specifying no actions is an
40921 error.
40922
40923 Currently supported actions are:
40924
40925 @table @samp
40926 @item c
40927 Continue.
40928 @item C @var{sig}
40929 Continue with signal @var{sig}. The signal @var{sig} should be two hex digits.
40930 @item s
40931 Step.
40932 @item S @var{sig}
40933 Step with signal @var{sig}. The signal @var{sig} should be two hex digits.
40934 @item t
40935 Stop.
40936 @item r @var{start},@var{end}
40937 Step once, and then keep stepping as long as the thread stops at
40938 addresses between @var{start} (inclusive) and @var{end} (exclusive).
40939 The remote stub reports a stop reply when either the thread goes out
40940 of the range or is stopped due to an unrelated reason, such as hitting
40941 a breakpoint. @xref{range stepping}.
40942
40943 If the range is empty (@var{start} == @var{end}), then the action
40944 becomes equivalent to the @samp{s} action. In other words,
40945 single-step once, and report the stop (even if the stepped instruction
40946 jumps to @var{start}).
40947
40948 (A stop reply may be sent at any point even if the PC is still within
40949 the stepping range; for example, it is valid to implement this packet
40950 in a degenerate way as a single instruction step operation.)
40951
40952 @end table
40953
40954 The optional argument @var{addr} normally associated with the
40955 @samp{c}, @samp{C}, @samp{s}, and @samp{S} packets is
40956 not supported in @samp{vCont}.
40957
40958 The @samp{t} action is only relevant in non-stop mode
40959 (@pxref{Remote Non-Stop}) and may be ignored by the stub otherwise.
40960 A stop reply should be generated for any affected thread not already stopped.
40961 When a thread is stopped by means of a @samp{t} action,
40962 the corresponding stop reply should indicate that the thread has stopped with
40963 signal @samp{0}, regardless of whether the target uses some other signal
40964 as an implementation detail.
40965
40966 The server must ignore @samp{c}, @samp{C}, @samp{s}, @samp{S}, and
40967 @samp{r} actions for threads that are already running. Conversely,
40968 the server must ignore @samp{t} actions for threads that are already
40969 stopped.
40970
40971 @emph{Note:} In non-stop mode, a thread is considered running until
40972 @value{GDBN} acknowledges an asynchronous stop notification for it with
40973 the @samp{vStopped} packet (@pxref{Remote Non-Stop}).
40974
40975 The stub must support @samp{vCont} if it reports support for
40976 multiprocess extensions (@pxref{multiprocess extensions}).
40977
40978 Reply:
40979 @xref{Stop Reply Packets}, for the reply specifications.
40980
40981 @item vCont?
40982 @cindex @samp{vCont?} packet
40983 Request a list of actions supported by the @samp{vCont} packet.
40984
40985 Reply:
40986 @table @samp
40987 @item vCont@r{[};@var{action}@dots{}@r{]}
40988 The @samp{vCont} packet is supported. Each @var{action} is a supported
40989 command in the @samp{vCont} packet.
40990 @item @w{}
40991 The @samp{vCont} packet is not supported.
40992 @end table
40993
40994 @anchor{vCtrlC packet}
40995 @item vCtrlC
40996 @cindex @samp{vCtrlC} packet
40997 Interrupt remote target as if a control-C was pressed on the remote
40998 terminal. This is the equivalent to reacting to the @code{^C}
40999 (@samp{\003}, the control-C character) character in all-stop mode
41000 while the target is running, except this works in non-stop mode.
41001 @xref{interrupting remote targets}, for more info on the all-stop
41002 variant.
41003
41004 Reply:
41005 @table @samp
41006 @item E @var{nn}
41007 for an error
41008 @item OK
41009 for success
41010 @end table
41011
41012 @item vFile:@var{operation}:@var{parameter}@dots{}
41013 @cindex @samp{vFile} packet
41014 Perform a file operation on the target system. For details,
41015 see @ref{Host I/O Packets}.
41016
41017 @item vFlashErase:@var{addr},@var{length}
41018 @cindex @samp{vFlashErase} packet
41019 Direct the stub to erase @var{length} bytes of flash starting at
41020 @var{addr}. The region may enclose any number of flash blocks, but
41021 its start and end must fall on block boundaries, as indicated by the
41022 flash block size appearing in the memory map (@pxref{Memory Map
41023 Format}). @value{GDBN} groups flash memory programming operations
41024 together, and sends a @samp{vFlashDone} request after each group; the
41025 stub is allowed to delay erase operation until the @samp{vFlashDone}
41026 packet is received.
41027
41028 Reply:
41029 @table @samp
41030 @item OK
41031 for success
41032 @item E @var{NN}
41033 for an error
41034 @end table
41035
41036 @item vFlashWrite:@var{addr}:@var{XX@dots{}}
41037 @cindex @samp{vFlashWrite} packet
41038 Direct the stub to write data to flash address @var{addr}. The data
41039 is passed in binary form using the same encoding as for the @samp{X}
41040 packet (@pxref{Binary Data}). The memory ranges specified by
41041 @samp{vFlashWrite} packets preceding a @samp{vFlashDone} packet must
41042 not overlap, and must appear in order of increasing addresses
41043 (although @samp{vFlashErase} packets for higher addresses may already
41044 have been received; the ordering is guaranteed only between
41045 @samp{vFlashWrite} packets). If a packet writes to an address that was
41046 neither erased by a preceding @samp{vFlashErase} packet nor by some other
41047 target-specific method, the results are unpredictable.
41048
41049
41050 Reply:
41051 @table @samp
41052 @item OK
41053 for success
41054 @item E.memtype
41055 for vFlashWrite addressing non-flash memory
41056 @item E @var{NN}
41057 for an error
41058 @end table
41059
41060 @item vFlashDone
41061 @cindex @samp{vFlashDone} packet
41062 Indicate to the stub that flash programming operation is finished.
41063 The stub is permitted to delay or batch the effects of a group of
41064 @samp{vFlashErase} and @samp{vFlashWrite} packets until a
41065 @samp{vFlashDone} packet is received. The contents of the affected
41066 regions of flash memory are unpredictable until the @samp{vFlashDone}
41067 request is completed.
41068
41069 @item vKill;@var{pid}
41070 @cindex @samp{vKill} packet
41071 @anchor{vKill packet}
41072 Kill the process with the specified process ID @var{pid}, which is a
41073 hexadecimal integer identifying the process. This packet is used in
41074 preference to @samp{k} when multiprocess protocol extensions are
41075 supported; see @ref{multiprocess extensions}.
41076
41077 Reply:
41078 @table @samp
41079 @item E @var{nn}
41080 for an error
41081 @item OK
41082 for success
41083 @end table
41084
41085 @item vMustReplyEmpty
41086 @cindex @samp{vMustReplyEmpty} packet
41087 The correct reply to an unknown @samp{v} packet is to return the empty
41088 string, however, some older versions of @command{gdbserver} would
41089 incorrectly return @samp{OK} for unknown @samp{v} packets.
41090
41091 The @samp{vMustReplyEmpty} is used as a feature test to check how
41092 @command{gdbserver} handles unknown packets, it is important that this
41093 packet be handled in the same way as other unknown @samp{v} packets.
41094 If this packet is handled differently to other unknown @samp{v}
41095 packets then it is possible that @value{GDBN} may run into problems in
41096 other areas, specifically around use of @samp{vFile:setfs:}.
41097
41098 @item vRun;@var{filename}@r{[};@var{argument}@r{]}@dots{}
41099 @cindex @samp{vRun} packet
41100 Run the program @var{filename}, passing it each @var{argument} on its
41101 command line. The file and arguments are hex-encoded strings. If
41102 @var{filename} is an empty string, the stub may use a default program
41103 (e.g.@: the last program run). The program is created in the stopped
41104 state.
41105
41106 @c FIXME: What about non-stop mode?
41107
41108 This packet is only available in extended mode (@pxref{extended mode}).
41109
41110 Reply:
41111 @table @samp
41112 @item E @var{nn}
41113 for an error
41114 @item @r{Any stop packet}
41115 for success (@pxref{Stop Reply Packets})
41116 @end table
41117
41118 @item vStopped
41119 @cindex @samp{vStopped} packet
41120 @xref{Notification Packets}.
41121
41122 @item X @var{addr},@var{length}:@var{XX@dots{}}
41123 @anchor{X packet}
41124 @cindex @samp{X} packet
41125 Write data to memory, where the data is transmitted in binary.
41126 Memory is specified by its address @var{addr} and number of addressable memory
41127 units @var{length} (@pxref{addressable memory unit});
41128 @samp{@var{XX}@dots{}} is binary data (@pxref{Binary Data}).
41129
41130 Reply:
41131 @table @samp
41132 @item OK
41133 for success
41134 @item E @var{NN}
41135 for an error
41136 @end table
41137
41138 @item z @var{type},@var{addr},@var{kind}
41139 @itemx Z @var{type},@var{addr},@var{kind}
41140 @anchor{insert breakpoint or watchpoint packet}
41141 @cindex @samp{z} packet
41142 @cindex @samp{Z} packets
41143 Insert (@samp{Z}) or remove (@samp{z}) a @var{type} breakpoint or
41144 watchpoint starting at address @var{address} of kind @var{kind}.
41145
41146 Each breakpoint and watchpoint packet @var{type} is documented
41147 separately.
41148
41149 @emph{Implementation notes: A remote target shall return an empty string
41150 for an unrecognized breakpoint or watchpoint packet @var{type}. A
41151 remote target shall support either both or neither of a given
41152 @samp{Z@var{type}@dots{}} and @samp{z@var{type}@dots{}} packet pair. To
41153 avoid potential problems with duplicate packets, the operations should
41154 be implemented in an idempotent way.}
41155
41156 @item z0,@var{addr},@var{kind}
41157 @itemx Z0,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
41158 @cindex @samp{z0} packet
41159 @cindex @samp{Z0} packet
41160 Insert (@samp{Z0}) or remove (@samp{z0}) a software breakpoint at address
41161 @var{addr} of type @var{kind}.
41162
41163 A software breakpoint is implemented by replacing the instruction at
41164 @var{addr} with a software breakpoint or trap instruction. The
41165 @var{kind} is target-specific and typically indicates the size of the
41166 breakpoint in bytes that should be inserted. E.g., the @sc{arm} and
41167 @sc{mips} can insert either a 2 or 4 byte breakpoint. Some
41168 architectures have additional meanings for @var{kind}
41169 (@pxref{Architecture-Specific Protocol Details}); if no
41170 architecture-specific value is being used, it should be @samp{0}.
41171 @var{kind} is hex-encoded. @var{cond_list} is an optional list of
41172 conditional expressions in bytecode form that should be evaluated on
41173 the target's side. These are the conditions that should be taken into
41174 consideration when deciding if the breakpoint trigger should be
41175 reported back to @value{GDBN}.
41176
41177 See also the @samp{swbreak} stop reason (@pxref{swbreak stop reason})
41178 for how to best report a software breakpoint event to @value{GDBN}.
41179
41180 The @var{cond_list} parameter is comprised of a series of expressions,
41181 concatenated without separators. Each expression has the following form:
41182
41183 @table @samp
41184
41185 @item X @var{len},@var{expr}
41186 @var{len} is the length of the bytecode expression and @var{expr} is the
41187 actual conditional expression in bytecode form.
41188
41189 @end table
41190
41191 The optional @var{cmd_list} parameter introduces commands that may be
41192 run on the target, rather than being reported back to @value{GDBN}.
41193 The parameter starts with a numeric flag @var{persist}; if the flag is
41194 nonzero, then the breakpoint may remain active and the commands
41195 continue to be run even when @value{GDBN} disconnects from the target.
41196 Following this flag is a series of expressions concatenated with no
41197 separators. Each expression has the following form:
41198
41199 @table @samp
41200
41201 @item X @var{len},@var{expr}
41202 @var{len} is the length of the bytecode expression and @var{expr} is the
41203 actual commands expression in bytecode form.
41204
41205 @end table
41206
41207 @emph{Implementation note: It is possible for a target to copy or move
41208 code that contains software breakpoints (e.g., when implementing
41209 overlays). The behavior of this packet, in the presence of such a
41210 target, is not defined.}
41211
41212 Reply:
41213 @table @samp
41214 @item OK
41215 success
41216 @item @w{}
41217 not supported
41218 @item E @var{NN}
41219 for an error
41220 @end table
41221
41222 @item z1,@var{addr},@var{kind}
41223 @itemx Z1,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
41224 @cindex @samp{z1} packet
41225 @cindex @samp{Z1} packet
41226 Insert (@samp{Z1}) or remove (@samp{z1}) a hardware breakpoint at
41227 address @var{addr}.
41228
41229 A hardware breakpoint is implemented using a mechanism that is not
41230 dependent on being able to modify the target's memory. The
41231 @var{kind}, @var{cond_list}, and @var{cmd_list} arguments have the
41232 same meaning as in @samp{Z0} packets.
41233
41234 @emph{Implementation note: A hardware breakpoint is not affected by code
41235 movement.}
41236
41237 Reply:
41238 @table @samp
41239 @item OK
41240 success
41241 @item @w{}
41242 not supported
41243 @item E @var{NN}
41244 for an error
41245 @end table
41246
41247 @item z2,@var{addr},@var{kind}
41248 @itemx Z2,@var{addr},@var{kind}
41249 @cindex @samp{z2} packet
41250 @cindex @samp{Z2} packet
41251 Insert (@samp{Z2}) or remove (@samp{z2}) a write watchpoint at @var{addr}.
41252 The number of bytes to watch is specified by @var{kind}.
41253
41254 Reply:
41255 @table @samp
41256 @item OK
41257 success
41258 @item @w{}
41259 not supported
41260 @item E @var{NN}
41261 for an error
41262 @end table
41263
41264 @item z3,@var{addr},@var{kind}
41265 @itemx Z3,@var{addr},@var{kind}
41266 @cindex @samp{z3} packet
41267 @cindex @samp{Z3} packet
41268 Insert (@samp{Z3}) or remove (@samp{z3}) a read watchpoint at @var{addr}.
41269 The number of bytes to watch is specified by @var{kind}.
41270
41271 Reply:
41272 @table @samp
41273 @item OK
41274 success
41275 @item @w{}
41276 not supported
41277 @item E @var{NN}
41278 for an error
41279 @end table
41280
41281 @item z4,@var{addr},@var{kind}
41282 @itemx Z4,@var{addr},@var{kind}
41283 @cindex @samp{z4} packet
41284 @cindex @samp{Z4} packet
41285 Insert (@samp{Z4}) or remove (@samp{z4}) an access watchpoint at @var{addr}.
41286 The number of bytes to watch is specified by @var{kind}.
41287
41288 Reply:
41289 @table @samp
41290 @item OK
41291 success
41292 @item @w{}
41293 not supported
41294 @item E @var{NN}
41295 for an error
41296 @end table
41297
41298 @end table
41299
41300 @node Stop Reply Packets
41301 @section Stop Reply Packets
41302 @cindex stop reply packets
41303
41304 The @samp{C}, @samp{c}, @samp{S}, @samp{s}, @samp{vCont},
41305 @samp{vAttach}, @samp{vRun}, @samp{vStopped}, and @samp{?} packets can
41306 receive any of the below as a reply. Except for @samp{?}
41307 and @samp{vStopped}, that reply is only returned
41308 when the target halts. In the below the exact meaning of @dfn{signal
41309 number} is defined by the header @file{include/gdb/signals.h} in the
41310 @value{GDBN} source code.
41311
41312 In non-stop mode, the server will simply reply @samp{OK} to commands
41313 such as @samp{vCont}; any stop will be the subject of a future
41314 notification. @xref{Remote Non-Stop}.
41315
41316 As in the description of request packets, we include spaces in the
41317 reply templates for clarity; these are not part of the reply packet's
41318 syntax. No @value{GDBN} stop reply packet uses spaces to separate its
41319 components.
41320
41321 @table @samp
41322
41323 @item S @var{AA}
41324 The program received signal number @var{AA} (a two-digit hexadecimal
41325 number). This is equivalent to a @samp{T} response with no
41326 @var{n}:@var{r} pairs.
41327
41328 @item T @var{AA} @var{n1}:@var{r1};@var{n2}:@var{r2};@dots{}
41329 @cindex @samp{T} packet reply
41330 The program received signal number @var{AA} (a two-digit hexadecimal
41331 number). This is equivalent to an @samp{S} response, except that the
41332 @samp{@var{n}:@var{r}} pairs can carry values of important registers
41333 and other information directly in the stop reply packet, reducing
41334 round-trip latency. Single-step and breakpoint traps are reported
41335 this way. Each @samp{@var{n}:@var{r}} pair is interpreted as follows:
41336
41337 @itemize @bullet
41338 @item
41339 If @var{n} is a hexadecimal number, it is a register number, and the
41340 corresponding @var{r} gives that register's value. The data @var{r} is a
41341 series of bytes in target byte order, with each byte given by a
41342 two-digit hex number.
41343
41344 @item
41345 If @var{n} is @samp{thread}, then @var{r} is the @var{thread-id} of
41346 the stopped thread, as specified in @ref{thread-id syntax}.
41347
41348 @item
41349 If @var{n} is @samp{core}, then @var{r} is the hexadecimal number of
41350 the core on which the stop event was detected.
41351
41352 @item
41353 If @var{n} is a recognized @dfn{stop reason}, it describes a more
41354 specific event that stopped the target. The currently defined stop
41355 reasons are listed below. The @var{aa} should be @samp{05}, the trap
41356 signal. At most one stop reason should be present.
41357
41358 @item
41359 Otherwise, @value{GDBN} should ignore this @samp{@var{n}:@var{r}} pair
41360 and go on to the next; this allows us to extend the protocol in the
41361 future.
41362 @end itemize
41363
41364 The currently defined stop reasons are:
41365
41366 @table @samp
41367 @item watch
41368 @itemx rwatch
41369 @itemx awatch
41370 The packet indicates a watchpoint hit, and @var{r} is the data address, in
41371 hex.
41372
41373 @item syscall_entry
41374 @itemx syscall_return
41375 The packet indicates a syscall entry or return, and @var{r} is the
41376 syscall number, in hex.
41377
41378 @cindex shared library events, remote reply
41379 @item library
41380 The packet indicates that the loaded libraries have changed.
41381 @value{GDBN} should use @samp{qXfer:libraries:read} to fetch a new
41382 list of loaded libraries. The @var{r} part is ignored.
41383
41384 @cindex replay log events, remote reply
41385 @item replaylog
41386 The packet indicates that the target cannot continue replaying
41387 logged execution events, because it has reached the end (or the
41388 beginning when executing backward) of the log. The value of @var{r}
41389 will be either @samp{begin} or @samp{end}. @xref{Reverse Execution},
41390 for more information.
41391
41392 @item swbreak
41393 @anchor{swbreak stop reason}
41394 The packet indicates a software breakpoint instruction was executed,
41395 irrespective of whether it was @value{GDBN} that planted the
41396 breakpoint or the breakpoint is hardcoded in the program. The @var{r}
41397 part must be left empty.
41398
41399 On some architectures, such as x86, at the architecture level, when a
41400 breakpoint instruction executes the program counter points at the
41401 breakpoint address plus an offset. On such targets, the stub is
41402 responsible for adjusting the PC to point back at the breakpoint
41403 address.
41404
41405 This packet should not be sent by default; older @value{GDBN} versions
41406 did not support it. @value{GDBN} requests it, by supplying an
41407 appropriate @samp{qSupported} feature (@pxref{qSupported}). The
41408 remote stub must also supply the appropriate @samp{qSupported} feature
41409 indicating support.
41410
41411 This packet is required for correct non-stop mode operation.
41412
41413 @item hwbreak
41414 The packet indicates the target stopped for a hardware breakpoint.
41415 The @var{r} part must be left empty.
41416
41417 The same remarks about @samp{qSupported} and non-stop mode above
41418 apply.
41419
41420 @cindex fork events, remote reply
41421 @item fork
41422 The packet indicates that @code{fork} was called, and @var{r}
41423 is the thread ID of the new child process. Refer to
41424 @ref{thread-id syntax} for the format of the @var{thread-id}
41425 field. This packet is only applicable to targets that support
41426 fork events.
41427
41428 This packet should not be sent by default; older @value{GDBN} versions
41429 did not support it. @value{GDBN} requests it, by supplying an
41430 appropriate @samp{qSupported} feature (@pxref{qSupported}). The
41431 remote stub must also supply the appropriate @samp{qSupported} feature
41432 indicating support.
41433
41434 @cindex vfork events, remote reply
41435 @item vfork
41436 The packet indicates that @code{vfork} was called, and @var{r}
41437 is the thread ID of the new child process. Refer to
41438 @ref{thread-id syntax} for the format of the @var{thread-id}
41439 field. This packet is only applicable to targets that support
41440 vfork events.
41441
41442 This packet should not be sent by default; older @value{GDBN} versions
41443 did not support it. @value{GDBN} requests it, by supplying an
41444 appropriate @samp{qSupported} feature (@pxref{qSupported}). The
41445 remote stub must also supply the appropriate @samp{qSupported} feature
41446 indicating support.
41447
41448 @cindex vforkdone events, remote reply
41449 @item vforkdone
41450 The packet indicates that a child process created by a vfork
41451 has either called @code{exec} or terminated, so that the
41452 address spaces of the parent and child process are no longer
41453 shared. The @var{r} part is ignored. This packet is only
41454 applicable to targets that support vforkdone events.
41455
41456 This packet should not be sent by default; older @value{GDBN} versions
41457 did not support it. @value{GDBN} requests it, by supplying an
41458 appropriate @samp{qSupported} feature (@pxref{qSupported}). The
41459 remote stub must also supply the appropriate @samp{qSupported} feature
41460 indicating support.
41461
41462 @cindex exec events, remote reply
41463 @item exec
41464 The packet indicates that @code{execve} was called, and @var{r}
41465 is the absolute pathname of the file that was executed, in hex.
41466 This packet is only applicable to targets that support exec events.
41467
41468 This packet should not be sent by default; older @value{GDBN} versions
41469 did not support it. @value{GDBN} requests it, by supplying an
41470 appropriate @samp{qSupported} feature (@pxref{qSupported}). The
41471 remote stub must also supply the appropriate @samp{qSupported} feature
41472 indicating support.
41473
41474 @cindex thread create event, remote reply
41475 @anchor{thread create event}
41476 @item create
41477 The packet indicates that the thread was just created. The new thread
41478 is stopped until @value{GDBN} sets it running with a resumption packet
41479 (@pxref{vCont packet}). This packet should not be sent by default;
41480 @value{GDBN} requests it with the @ref{QThreadEvents} packet. See
41481 also the @samp{w} (@pxref{thread exit event}) remote reply below. The
41482 @var{r} part is ignored.
41483
41484 @end table
41485
41486 @item W @var{AA}
41487 @itemx W @var{AA} ; process:@var{pid}
41488 The process exited, and @var{AA} is the exit status. This is only
41489 applicable to certain targets.
41490
41491 The second form of the response, including the process ID of the
41492 exited process, can be used only when @value{GDBN} has reported
41493 support for multiprocess protocol extensions; see @ref{multiprocess
41494 extensions}. Both @var{AA} and @var{pid} are formatted as big-endian
41495 hex strings.
41496
41497 @item X @var{AA}
41498 @itemx X @var{AA} ; process:@var{pid}
41499 The process terminated with signal @var{AA}.
41500
41501 The second form of the response, including the process ID of the
41502 terminated process, can be used only when @value{GDBN} has reported
41503 support for multiprocess protocol extensions; see @ref{multiprocess
41504 extensions}. Both @var{AA} and @var{pid} are formatted as big-endian
41505 hex strings.
41506
41507 @anchor{thread exit event}
41508 @cindex thread exit event, remote reply
41509 @item w @var{AA} ; @var{tid}
41510
41511 The thread exited, and @var{AA} is the exit status. This response
41512 should not be sent by default; @value{GDBN} requests it with the
41513 @ref{QThreadEvents} packet. See also @ref{thread create event} above.
41514 @var{AA} is formatted as a big-endian hex string.
41515
41516 @item N
41517 There are no resumed threads left in the target. In other words, even
41518 though the process is alive, the last resumed thread has exited. For
41519 example, say the target process has two threads: thread 1 and thread
41520 2. The client leaves thread 1 stopped, and resumes thread 2, which
41521 subsequently exits. At this point, even though the process is still
41522 alive, and thus no @samp{W} stop reply is sent, no thread is actually
41523 executing either. The @samp{N} stop reply thus informs the client
41524 that it can stop waiting for stop replies. This packet should not be
41525 sent by default; older @value{GDBN} versions did not support it.
41526 @value{GDBN} requests it, by supplying an appropriate
41527 @samp{qSupported} feature (@pxref{qSupported}). The remote stub must
41528 also supply the appropriate @samp{qSupported} feature indicating
41529 support.
41530
41531 @item O @var{XX}@dots{}
41532 @samp{@var{XX}@dots{}} is hex encoding of @sc{ascii} data, to be
41533 written as the program's console output. This can happen at any time
41534 while the program is running and the debugger should continue to wait
41535 for @samp{W}, @samp{T}, etc. This reply is not permitted in non-stop mode.
41536
41537 @item F @var{call-id},@var{parameter}@dots{}
41538 @var{call-id} is the identifier which says which host system call should
41539 be called. This is just the name of the function. Translation into the
41540 correct system call is only applicable as it's defined in @value{GDBN}.
41541 @xref{File-I/O Remote Protocol Extension}, for a list of implemented
41542 system calls.
41543
41544 @samp{@var{parameter}@dots{}} is a list of parameters as defined for
41545 this very system call.
41546
41547 The target replies with this packet when it expects @value{GDBN} to
41548 call a host system call on behalf of the target. @value{GDBN} replies
41549 with an appropriate @samp{F} packet and keeps up waiting for the next
41550 reply packet from the target. The latest @samp{C}, @samp{c}, @samp{S}
41551 or @samp{s} action is expected to be continued. @xref{File-I/O Remote
41552 Protocol Extension}, for more details.
41553
41554 @end table
41555
41556 @node General Query Packets
41557 @section General Query Packets
41558 @cindex remote query requests
41559
41560 Packets starting with @samp{q} are @dfn{general query packets};
41561 packets starting with @samp{Q} are @dfn{general set packets}. General
41562 query and set packets are a semi-unified form for retrieving and
41563 sending information to and from the stub.
41564
41565 The initial letter of a query or set packet is followed by a name
41566 indicating what sort of thing the packet applies to. For example,
41567 @value{GDBN} may use a @samp{qSymbol} packet to exchange symbol
41568 definitions with the stub. These packet names follow some
41569 conventions:
41570
41571 @itemize @bullet
41572 @item
41573 The name must not contain commas, colons or semicolons.
41574 @item
41575 Most @value{GDBN} query and set packets have a leading upper case
41576 letter.
41577 @item
41578 The names of custom vendor packets should use a company prefix, in
41579 lower case, followed by a period. For example, packets designed at
41580 the Acme Corporation might begin with @samp{qacme.foo} (for querying
41581 foos) or @samp{Qacme.bar} (for setting bars).
41582 @end itemize
41583
41584 The name of a query or set packet should be separated from any
41585 parameters by a @samp{:}; the parameters themselves should be
41586 separated by @samp{,} or @samp{;}. Stubs must be careful to match the
41587 full packet name, and check for a separator or the end of the packet,
41588 in case two packet names share a common prefix. New packets should not begin
41589 with @samp{qC}, @samp{qP}, or @samp{qL}@footnote{The @samp{qP} and @samp{qL}
41590 packets predate these conventions, and have arguments without any terminator
41591 for the packet name; we suspect they are in widespread use in places that
41592 are difficult to upgrade. The @samp{qC} packet has no arguments, but some
41593 existing stubs (e.g.@: RedBoot) are known to not check for the end of the
41594 packet.}.
41595
41596 Like the descriptions of the other packets, each description here
41597 has a template showing the packet's overall syntax, followed by an
41598 explanation of the packet's meaning. We include spaces in some of the
41599 templates for clarity; these are not part of the packet's syntax. No
41600 @value{GDBN} packet uses spaces to separate its components.
41601
41602 Here are the currently defined query and set packets:
41603
41604 @table @samp
41605
41606 @item QAgent:1
41607 @itemx QAgent:0
41608 Turn on or off the agent as a helper to perform some debugging operations
41609 delegated from @value{GDBN} (@pxref{Control Agent}).
41610
41611 @item QAllow:@var{op}:@var{val}@dots{}
41612 @cindex @samp{QAllow} packet
41613 Specify which operations @value{GDBN} expects to request of the
41614 target, as a semicolon-separated list of operation name and value
41615 pairs. Possible values for @var{op} include @samp{WriteReg},
41616 @samp{WriteMem}, @samp{InsertBreak}, @samp{InsertTrace},
41617 @samp{InsertFastTrace}, and @samp{Stop}. @var{val} is either 0,
41618 indicating that @value{GDBN} will not request the operation, or 1,
41619 indicating that it may. (The target can then use this to set up its
41620 own internals optimally, for instance if the debugger never expects to
41621 insert breakpoints, it may not need to install its own trap handler.)
41622
41623 @item qC
41624 @cindex current thread, remote request
41625 @cindex @samp{qC} packet
41626 Return the current thread ID.
41627
41628 Reply:
41629 @table @samp
41630 @item QC @var{thread-id}
41631 Where @var{thread-id} is a thread ID as documented in
41632 @ref{thread-id syntax}.
41633 @item @r{(anything else)}
41634 Any other reply implies the old thread ID.
41635 @end table
41636
41637 @item qCRC:@var{addr},@var{length}
41638 @cindex CRC of memory block, remote request
41639 @cindex @samp{qCRC} packet
41640 @anchor{qCRC packet}
41641 Compute the CRC checksum of a block of memory using CRC-32 defined in
41642 IEEE 802.3. The CRC is computed byte at a time, taking the most
41643 significant bit of each byte first. The initial pattern code
41644 @code{0xffffffff} is used to ensure leading zeros affect the CRC.
41645
41646 @emph{Note:} This is the same CRC used in validating separate debug
41647 files (@pxref{Separate Debug Files, , Debugging Information in Separate
41648 Files}). However the algorithm is slightly different. When validating
41649 separate debug files, the CRC is computed taking the @emph{least}
41650 significant bit of each byte first, and the final result is inverted to
41651 detect trailing zeros.
41652
41653 Reply:
41654 @table @samp
41655 @item E @var{NN}
41656 An error (such as memory fault)
41657 @item C @var{crc32}
41658 The specified memory region's checksum is @var{crc32}.
41659 @end table
41660
41661 @item QDisableRandomization:@var{value}
41662 @cindex disable address space randomization, remote request
41663 @cindex @samp{QDisableRandomization} packet
41664 Some target operating systems will randomize the virtual address space
41665 of the inferior process as a security feature, but provide a feature
41666 to disable such randomization, e.g.@: to allow for a more deterministic
41667 debugging experience. On such systems, this packet with a @var{value}
41668 of 1 directs the target to disable address space randomization for
41669 processes subsequently started via @samp{vRun} packets, while a packet
41670 with a @var{value} of 0 tells the target to enable address space
41671 randomization.
41672
41673 This packet is only available in extended mode (@pxref{extended mode}).
41674
41675 Reply:
41676 @table @samp
41677 @item OK
41678 The request succeeded.
41679
41680 @item E @var{nn}
41681 An error occurred. The error number @var{nn} is given as hex digits.
41682
41683 @item @w{}
41684 An empty reply indicates that @samp{QDisableRandomization} is not supported
41685 by the stub.
41686 @end table
41687
41688 This packet is not probed by default; the remote stub must request it,
41689 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41690 This should only be done on targets that actually support disabling
41691 address space randomization.
41692
41693 @item QStartupWithShell:@var{value}
41694 @cindex startup with shell, remote request
41695 @cindex @samp{QStartupWithShell} packet
41696 On UNIX-like targets, it is possible to start the inferior using a
41697 shell program. This is the default behavior on both @value{GDBN} and
41698 @command{gdbserver} (@pxref{set startup-with-shell}). This packet is
41699 used to inform @command{gdbserver} whether it should start the
41700 inferior using a shell or not.
41701
41702 If @var{value} is @samp{0}, @command{gdbserver} will not use a shell
41703 to start the inferior. If @var{value} is @samp{1},
41704 @command{gdbserver} will use a shell to start the inferior. All other
41705 values are considered an error.
41706
41707 This packet is only available in extended mode (@pxref{extended
41708 mode}).
41709
41710 Reply:
41711 @table @samp
41712 @item OK
41713 The request succeeded.
41714
41715 @item E @var{nn}
41716 An error occurred. The error number @var{nn} is given as hex digits.
41717 @end table
41718
41719 This packet is not probed by default; the remote stub must request it,
41720 by supplying an appropriate @samp{qSupported} response
41721 (@pxref{qSupported}). This should only be done on targets that
41722 actually support starting the inferior using a shell.
41723
41724 Use of this packet is controlled by the @code{set startup-with-shell}
41725 command; @pxref{set startup-with-shell}.
41726
41727 @item QEnvironmentHexEncoded:@var{hex-value}
41728 @anchor{QEnvironmentHexEncoded}
41729 @cindex set environment variable, remote request
41730 @cindex @samp{QEnvironmentHexEncoded} packet
41731 On UNIX-like targets, it is possible to set environment variables that
41732 will be passed to the inferior during the startup process. This
41733 packet is used to inform @command{gdbserver} of an environment
41734 variable that has been defined by the user on @value{GDBN} (@pxref{set
41735 environment}).
41736
41737 The packet is composed by @var{hex-value}, an hex encoded
41738 representation of the @var{name=value} format representing an
41739 environment variable. The name of the environment variable is
41740 represented by @var{name}, and the value to be assigned to the
41741 environment variable is represented by @var{value}. If the variable
41742 has no value (i.e., the value is @code{null}), then @var{value} will
41743 not be present.
41744
41745 This packet is only available in extended mode (@pxref{extended
41746 mode}).
41747
41748 Reply:
41749 @table @samp
41750 @item OK
41751 The request succeeded.
41752 @end table
41753
41754 This packet is not probed by default; the remote stub must request it,
41755 by supplying an appropriate @samp{qSupported} response
41756 (@pxref{qSupported}). This should only be done on targets that
41757 actually support passing environment variables to the starting
41758 inferior.
41759
41760 This packet is related to the @code{set environment} command;
41761 @pxref{set environment}.
41762
41763 @item QEnvironmentUnset:@var{hex-value}
41764 @anchor{QEnvironmentUnset}
41765 @cindex unset environment variable, remote request
41766 @cindex @samp{QEnvironmentUnset} packet
41767 On UNIX-like targets, it is possible to unset environment variables
41768 before starting the inferior in the remote target. This packet is
41769 used to inform @command{gdbserver} of an environment variable that has
41770 been unset by the user on @value{GDBN} (@pxref{unset environment}).
41771
41772 The packet is composed by @var{hex-value}, an hex encoded
41773 representation of the name of the environment variable to be unset.
41774
41775 This packet is only available in extended mode (@pxref{extended
41776 mode}).
41777
41778 Reply:
41779 @table @samp
41780 @item OK
41781 The request succeeded.
41782 @end table
41783
41784 This packet is not probed by default; the remote stub must request it,
41785 by supplying an appropriate @samp{qSupported} response
41786 (@pxref{qSupported}). This should only be done on targets that
41787 actually support passing environment variables to the starting
41788 inferior.
41789
41790 This packet is related to the @code{unset environment} command;
41791 @pxref{unset environment}.
41792
41793 @item QEnvironmentReset
41794 @anchor{QEnvironmentReset}
41795 @cindex reset environment, remote request
41796 @cindex @samp{QEnvironmentReset} packet
41797 On UNIX-like targets, this packet is used to reset the state of
41798 environment variables in the remote target before starting the
41799 inferior. In this context, reset means unsetting all environment
41800 variables that were previously set by the user (i.e., were not
41801 initially present in the environment). It is sent to
41802 @command{gdbserver} before the @samp{QEnvironmentHexEncoded}
41803 (@pxref{QEnvironmentHexEncoded}) and the @samp{QEnvironmentUnset}
41804 (@pxref{QEnvironmentUnset}) packets.
41805
41806 This packet is only available in extended mode (@pxref{extended
41807 mode}).
41808
41809 Reply:
41810 @table @samp
41811 @item OK
41812 The request succeeded.
41813 @end table
41814
41815 This packet is not probed by default; the remote stub must request it,
41816 by supplying an appropriate @samp{qSupported} response
41817 (@pxref{qSupported}). This should only be done on targets that
41818 actually support passing environment variables to the starting
41819 inferior.
41820
41821 @item QSetWorkingDir:@r{[}@var{directory}@r{]}
41822 @anchor{QSetWorkingDir packet}
41823 @cindex set working directory, remote request
41824 @cindex @samp{QSetWorkingDir} packet
41825 This packet is used to inform the remote server of the intended
41826 current working directory for programs that are going to be executed.
41827
41828 The packet is composed by @var{directory}, an hex encoded
41829 representation of the directory that the remote inferior will use as
41830 its current working directory. If @var{directory} is an empty string,
41831 the remote server should reset the inferior's current working
41832 directory to its original, empty value.
41833
41834 This packet is only available in extended mode (@pxref{extended
41835 mode}).
41836
41837 Reply:
41838 @table @samp
41839 @item OK
41840 The request succeeded.
41841 @end table
41842
41843 @item qfThreadInfo
41844 @itemx qsThreadInfo
41845 @cindex list active threads, remote request
41846 @cindex @samp{qfThreadInfo} packet
41847 @cindex @samp{qsThreadInfo} packet
41848 Obtain a list of all active thread IDs from the target (OS). Since there
41849 may be too many active threads to fit into one reply packet, this query
41850 works iteratively: it may require more than one query/reply sequence to
41851 obtain the entire list of threads. The first query of the sequence will
41852 be the @samp{qfThreadInfo} query; subsequent queries in the
41853 sequence will be the @samp{qsThreadInfo} query.
41854
41855 NOTE: This packet replaces the @samp{qL} query (see below).
41856
41857 Reply:
41858 @table @samp
41859 @item m @var{thread-id}
41860 A single thread ID
41861 @item m @var{thread-id},@var{thread-id}@dots{}
41862 a comma-separated list of thread IDs
41863 @item l
41864 (lower case letter @samp{L}) denotes end of list.
41865 @end table
41866
41867 In response to each query, the target will reply with a list of one or
41868 more thread IDs, separated by commas.
41869 @value{GDBN} will respond to each reply with a request for more thread
41870 ids (using the @samp{qs} form of the query), until the target responds
41871 with @samp{l} (lower-case ell, for @dfn{last}).
41872 Refer to @ref{thread-id syntax}, for the format of the @var{thread-id}
41873 fields.
41874
41875 @emph{Note: @value{GDBN} will send the @code{qfThreadInfo} query during the
41876 initial connection with the remote target, and the very first thread ID
41877 mentioned in the reply will be stopped by @value{GDBN} in a subsequent
41878 message. Therefore, the stub should ensure that the first thread ID in
41879 the @code{qfThreadInfo} reply is suitable for being stopped by @value{GDBN}.}
41880
41881 @item qGetTLSAddr:@var{thread-id},@var{offset},@var{lm}
41882 @cindex get thread-local storage address, remote request
41883 @cindex @samp{qGetTLSAddr} packet
41884 Fetch the address associated with thread local storage specified
41885 by @var{thread-id}, @var{offset}, and @var{lm}.
41886
41887 @var{thread-id} is the thread ID associated with the
41888 thread for which to fetch the TLS address. @xref{thread-id syntax}.
41889
41890 @var{offset} is the (big endian, hex encoded) offset associated with the
41891 thread local variable. (This offset is obtained from the debug
41892 information associated with the variable.)
41893
41894 @var{lm} is the (big endian, hex encoded) OS/ABI-specific encoding of the
41895 load module associated with the thread local storage. For example,
41896 a @sc{gnu}/Linux system will pass the link map address of the shared
41897 object associated with the thread local storage under consideration.
41898 Other operating environments may choose to represent the load module
41899 differently, so the precise meaning of this parameter will vary.
41900
41901 Reply:
41902 @table @samp
41903 @item @var{XX}@dots{}
41904 Hex encoded (big endian) bytes representing the address of the thread
41905 local storage requested.
41906
41907 @item E @var{nn}
41908 An error occurred. The error number @var{nn} is given as hex digits.
41909
41910 @item @w{}
41911 An empty reply indicates that @samp{qGetTLSAddr} is not supported by the stub.
41912 @end table
41913
41914 @item qGetTIBAddr:@var{thread-id}
41915 @cindex get thread information block address
41916 @cindex @samp{qGetTIBAddr} packet
41917 Fetch address of the Windows OS specific Thread Information Block.
41918
41919 @var{thread-id} is the thread ID associated with the thread.
41920
41921 Reply:
41922 @table @samp
41923 @item @var{XX}@dots{}
41924 Hex encoded (big endian) bytes representing the linear address of the
41925 thread information block.
41926
41927 @item E @var{nn}
41928 An error occured. This means that either the thread was not found, or the
41929 address could not be retrieved.
41930
41931 @item @w{}
41932 An empty reply indicates that @samp{qGetTIBAddr} is not supported by the stub.
41933 @end table
41934
41935 @item qL @var{startflag} @var{threadcount} @var{nextthread}
41936 Obtain thread information from RTOS. Where: @var{startflag} (one hex
41937 digit) is one to indicate the first query and zero to indicate a
41938 subsequent query; @var{threadcount} (two hex digits) is the maximum
41939 number of threads the response packet can contain; and @var{nextthread}
41940 (eight hex digits), for subsequent queries (@var{startflag} is zero), is
41941 returned in the response as @var{argthread}.
41942
41943 Don't use this packet; use the @samp{qfThreadInfo} query instead (see above).
41944
41945 Reply:
41946 @table @samp
41947 @item qM @var{count} @var{done} @var{argthread} @var{thread}@dots{}
41948 Where: @var{count} (two hex digits) is the number of threads being
41949 returned; @var{done} (one hex digit) is zero to indicate more threads
41950 and one indicates no further threads; @var{argthreadid} (eight hex
41951 digits) is @var{nextthread} from the request packet; @var{thread}@dots{}
41952 is a sequence of thread IDs, @var{threadid} (eight hex
41953 digits), from the target. See @code{remote.c:parse_threadlist_response()}.
41954 @end table
41955
41956 @item qMemTags:@var{start address},@var{length}:@var{type}
41957 @anchor{qMemTags}
41958 @cindex fetch memory tags
41959 @cindex @samp{qMemTags} packet
41960 Fetch memory tags of type @var{type} from the address range
41961 @w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}. The
41962 target is responsible for calculating how many tags will be returned, as this
41963 is architecture-specific.
41964
41965 @var{start address} is the starting address of the memory range.
41966
41967 @var{length} is the length, in bytes, of the memory range.
41968
41969 @var{type} is the type of tag the request wants to fetch. The type is a signed
41970 integer.
41971
41972 Reply:
41973 @table @samp
41974 @item @var{mxx}@dots{}
41975 Hex encoded sequence of uninterpreted bytes, @var{xx}@dots{}, representing the
41976 tags found in the requested memory range.
41977
41978 @item E @var{nn}
41979 An error occured. This means that fetching of memory tags failed for some
41980 reason.
41981
41982 @item @w{}
41983 An empty reply indicates that @samp{qMemTags} is not supported by the stub,
41984 although this should not happen given @value{GDBN} will only send this packet
41985 if the stub has advertised support for memory tagging via @samp{qSupported}.
41986 @end table
41987
41988 @item QMemTags:@var{start address},@var{length}:@var{type}:@var{tag bytes}
41989 @anchor{QMemTags}
41990 @cindex store memory tags
41991 @cindex @samp{QMemTags} packet
41992 Store memory tags of type @var{type} to the address range
41993 @w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}. The
41994 target is responsible for interpreting the type, the tag bytes and modifying
41995 the memory tag granules accordingly, given this is architecture-specific.
41996
41997 The interpretation of how many tags (@var{nt}) should be written to how many
41998 memory tag granules (@var{ng}) is also architecture-specific. The behavior is
41999 implementation-specific, but the following is suggested.
42000
42001 If the number of memory tags, @var{nt}, is greater than or equal to the
42002 number of memory tag granules, @var{ng}, only @var{ng} tags will be
42003 stored.
42004
42005 If @var{nt} is less than @var{ng}, the behavior is that of a fill operation,
42006 and the tag bytes will be used as a pattern that will get repeated until
42007 @var{ng} tags are stored.
42008
42009 @var{start address} is the starting address of the memory range. The address
42010 does not have any restriction on alignment or size.
42011
42012 @var{length} is the length, in bytes, of the memory range.
42013
42014 @var{type} is the type of tag the request wants to fetch. The type is a signed
42015 integer.
42016
42017 @var{tag bytes} is a sequence of hex encoded uninterpreted bytes which will be
42018 interpreted by the target. Each pair of hex digits is interpreted as a
42019 single byte.
42020
42021 Reply:
42022 @table @samp
42023 @item OK
42024 The request was successful and the memory tag granules were modified
42025 accordingly.
42026
42027 @item E @var{nn}
42028 An error occured. This means that modifying the memory tag granules failed
42029 for some reason.
42030
42031 @item @w{}
42032 An empty reply indicates that @samp{QMemTags} is not supported by the stub,
42033 although this should not happen given @value{GDBN} will only send this packet
42034 if the stub has advertised support for memory tagging via @samp{qSupported}.
42035 @end table
42036
42037 @item qOffsets
42038 @cindex section offsets, remote request
42039 @cindex @samp{qOffsets} packet
42040 Get section offsets that the target used when relocating the downloaded
42041 image.
42042
42043 Reply:
42044 @table @samp
42045 @item Text=@var{xxx};Data=@var{yyy}@r{[};Bss=@var{zzz}@r{]}
42046 Relocate the @code{Text} section by @var{xxx} from its original address.
42047 Relocate the @code{Data} section by @var{yyy} from its original address.
42048 If the object file format provides segment information (e.g.@: @sc{elf}
42049 @samp{PT_LOAD} program headers), @value{GDBN} will relocate entire
42050 segments by the supplied offsets.
42051
42052 @emph{Note: while a @code{Bss} offset may be included in the response,
42053 @value{GDBN} ignores this and instead applies the @code{Data} offset
42054 to the @code{Bss} section.}
42055
42056 @item TextSeg=@var{xxx}@r{[};DataSeg=@var{yyy}@r{]}
42057 Relocate the first segment of the object file, which conventionally
42058 contains program code, to a starting address of @var{xxx}. If
42059 @samp{DataSeg} is specified, relocate the second segment, which
42060 conventionally contains modifiable data, to a starting address of
42061 @var{yyy}. @value{GDBN} will report an error if the object file
42062 does not contain segment information, or does not contain at least
42063 as many segments as mentioned in the reply. Extra segments are
42064 kept at fixed offsets relative to the last relocated segment.
42065 @end table
42066
42067 @item qP @var{mode} @var{thread-id}
42068 @cindex thread information, remote request
42069 @cindex @samp{qP} packet
42070 Returns information on @var{thread-id}. Where: @var{mode} is a hex
42071 encoded 32 bit mode; @var{thread-id} is a thread ID
42072 (@pxref{thread-id syntax}).
42073
42074 Don't use this packet; use the @samp{qThreadExtraInfo} query instead
42075 (see below).
42076
42077 Reply: see @code{remote.c:remote_unpack_thread_info_response()}.
42078
42079 @item QNonStop:1
42080 @itemx QNonStop:0
42081 @cindex non-stop mode, remote request
42082 @cindex @samp{QNonStop} packet
42083 @anchor{QNonStop}
42084 Enter non-stop (@samp{QNonStop:1}) or all-stop (@samp{QNonStop:0}) mode.
42085 @xref{Remote Non-Stop}, for more information.
42086
42087 Reply:
42088 @table @samp
42089 @item OK
42090 The request succeeded.
42091
42092 @item E @var{nn}
42093 An error occurred. The error number @var{nn} is given as hex digits.
42094
42095 @item @w{}
42096 An empty reply indicates that @samp{QNonStop} is not supported by
42097 the stub.
42098 @end table
42099
42100 This packet is not probed by default; the remote stub must request it,
42101 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42102 Use of this packet is controlled by the @code{set non-stop} command;
42103 @pxref{Non-Stop Mode}.
42104
42105 @item QCatchSyscalls:1 @r{[};@var{sysno}@r{]}@dots{}
42106 @itemx QCatchSyscalls:0
42107 @cindex catch syscalls from inferior, remote request
42108 @cindex @samp{QCatchSyscalls} packet
42109 @anchor{QCatchSyscalls}
42110 Enable (@samp{QCatchSyscalls:1}) or disable (@samp{QCatchSyscalls:0})
42111 catching syscalls from the inferior process.
42112
42113 For @samp{QCatchSyscalls:1}, each listed syscall @var{sysno} (encoded
42114 in hex) should be reported to @value{GDBN}. If no syscall @var{sysno}
42115 is listed, every system call should be reported.
42116
42117 Note that if a syscall not in the list is reported, @value{GDBN} will
42118 still filter the event according to its own list from all corresponding
42119 @code{catch syscall} commands. However, it is more efficient to only
42120 report the requested syscalls.
42121
42122 Multiple @samp{QCatchSyscalls:1} packets do not combine; any earlier
42123 @samp{QCatchSyscalls:1} list is completely replaced by the new list.
42124
42125 If the inferior process execs, the state of @samp{QCatchSyscalls} is
42126 kept for the new process too. On targets where exec may affect syscall
42127 numbers, for example with exec between 32 and 64-bit processes, the
42128 client should send a new packet with the new syscall list.
42129
42130 Reply:
42131 @table @samp
42132 @item OK
42133 The request succeeded.
42134
42135 @item E @var{nn}
42136 An error occurred. @var{nn} are hex digits.
42137
42138 @item @w{}
42139 An empty reply indicates that @samp{QCatchSyscalls} is not supported by
42140 the stub.
42141 @end table
42142
42143 Use of this packet is controlled by the @code{set remote catch-syscalls}
42144 command (@pxref{Remote Configuration, set remote catch-syscalls}).
42145 This packet is not probed by default; the remote stub must request it,
42146 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42147
42148 @item QPassSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
42149 @cindex pass signals to inferior, remote request
42150 @cindex @samp{QPassSignals} packet
42151 @anchor{QPassSignals}
42152 Each listed @var{signal} should be passed directly to the inferior process.
42153 Signals are numbered identically to continue packets and stop replies
42154 (@pxref{Stop Reply Packets}). Each @var{signal} list item should be
42155 strictly greater than the previous item. These signals do not need to stop
42156 the inferior, or be reported to @value{GDBN}. All other signals should be
42157 reported to @value{GDBN}. Multiple @samp{QPassSignals} packets do not
42158 combine; any earlier @samp{QPassSignals} list is completely replaced by the
42159 new list. This packet improves performance when using @samp{handle
42160 @var{signal} nostop noprint pass}.
42161
42162 Reply:
42163 @table @samp
42164 @item OK
42165 The request succeeded.
42166
42167 @item E @var{nn}
42168 An error occurred. The error number @var{nn} is given as hex digits.
42169
42170 @item @w{}
42171 An empty reply indicates that @samp{QPassSignals} is not supported by
42172 the stub.
42173 @end table
42174
42175 Use of this packet is controlled by the @code{set remote pass-signals}
42176 command (@pxref{Remote Configuration, set remote pass-signals}).
42177 This packet is not probed by default; the remote stub must request it,
42178 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42179
42180 @item QProgramSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
42181 @cindex signals the inferior may see, remote request
42182 @cindex @samp{QProgramSignals} packet
42183 @anchor{QProgramSignals}
42184 Each listed @var{signal} may be delivered to the inferior process.
42185 Others should be silently discarded.
42186
42187 In some cases, the remote stub may need to decide whether to deliver a
42188 signal to the program or not without @value{GDBN} involvement. One
42189 example of that is while detaching --- the program's threads may have
42190 stopped for signals that haven't yet had a chance of being reported to
42191 @value{GDBN}, and so the remote stub can use the signal list specified
42192 by this packet to know whether to deliver or ignore those pending
42193 signals.
42194
42195 This does not influence whether to deliver a signal as requested by a
42196 resumption packet (@pxref{vCont packet}).
42197
42198 Signals are numbered identically to continue packets and stop replies
42199 (@pxref{Stop Reply Packets}). Each @var{signal} list item should be
42200 strictly greater than the previous item. Multiple
42201 @samp{QProgramSignals} packets do not combine; any earlier
42202 @samp{QProgramSignals} list is completely replaced by the new list.
42203
42204 Reply:
42205 @table @samp
42206 @item OK
42207 The request succeeded.
42208
42209 @item E @var{nn}
42210 An error occurred. The error number @var{nn} is given as hex digits.
42211
42212 @item @w{}
42213 An empty reply indicates that @samp{QProgramSignals} is not supported
42214 by the stub.
42215 @end table
42216
42217 Use of this packet is controlled by the @code{set remote program-signals}
42218 command (@pxref{Remote Configuration, set remote program-signals}).
42219 This packet is not probed by default; the remote stub must request it,
42220 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42221
42222 @anchor{QThreadEvents}
42223 @item QThreadEvents:1
42224 @itemx QThreadEvents:0
42225 @cindex thread create/exit events, remote request
42226 @cindex @samp{QThreadEvents} packet
42227
42228 Enable (@samp{QThreadEvents:1}) or disable (@samp{QThreadEvents:0})
42229 reporting of thread create and exit events. @xref{thread create
42230 event}, for the reply specifications. For example, this is used in
42231 non-stop mode when @value{GDBN} stops a set of threads and
42232 synchronously waits for the their corresponding stop replies. Without
42233 exit events, if one of the threads exits, @value{GDBN} would hang
42234 forever not knowing that it should no longer expect a stop for that
42235 same thread. @value{GDBN} does not enable this feature unless the
42236 stub reports that it supports it by including @samp{QThreadEvents+} in
42237 its @samp{qSupported} reply.
42238
42239 Reply:
42240 @table @samp
42241 @item OK
42242 The request succeeded.
42243
42244 @item E @var{nn}
42245 An error occurred. The error number @var{nn} is given as hex digits.
42246
42247 @item @w{}
42248 An empty reply indicates that @samp{QThreadEvents} is not supported by
42249 the stub.
42250 @end table
42251
42252 Use of this packet is controlled by the @code{set remote thread-events}
42253 command (@pxref{Remote Configuration, set remote thread-events}).
42254
42255 @item qRcmd,@var{command}
42256 @cindex execute remote command, remote request
42257 @cindex @samp{qRcmd} packet
42258 @var{command} (hex encoded) is passed to the local interpreter for
42259 execution. Invalid commands should be reported using the output
42260 string. Before the final result packet, the target may also respond
42261 with a number of intermediate @samp{O@var{output}} console output
42262 packets. @emph{Implementors should note that providing access to a
42263 stubs's interpreter may have security implications}.
42264
42265 Reply:
42266 @table @samp
42267 @item OK
42268 A command response with no output.
42269 @item @var{OUTPUT}
42270 A command response with the hex encoded output string @var{OUTPUT}.
42271 @item E @var{NN}
42272 Indicate a badly formed request. The error number @var{NN} is given as
42273 hex digits.
42274 @item @w{}
42275 An empty reply indicates that @samp{qRcmd} is not recognized.
42276 @end table
42277
42278 (Note that the @code{qRcmd} packet's name is separated from the
42279 command by a @samp{,}, not a @samp{:}, contrary to the naming
42280 conventions above. Please don't use this packet as a model for new
42281 packets.)
42282
42283 @item qSearch:memory:@var{address};@var{length};@var{search-pattern}
42284 @cindex searching memory, in remote debugging
42285 @ifnotinfo
42286 @cindex @samp{qSearch:memory} packet
42287 @end ifnotinfo
42288 @cindex @samp{qSearch memory} packet
42289 @anchor{qSearch memory}
42290 Search @var{length} bytes at @var{address} for @var{search-pattern}.
42291 Both @var{address} and @var{length} are encoded in hex;
42292 @var{search-pattern} is a sequence of bytes, also hex encoded.
42293
42294 Reply:
42295 @table @samp
42296 @item 0
42297 The pattern was not found.
42298 @item 1,address
42299 The pattern was found at @var{address}.
42300 @item E @var{NN}
42301 A badly formed request or an error was encountered while searching memory.
42302 @item @w{}
42303 An empty reply indicates that @samp{qSearch:memory} is not recognized.
42304 @end table
42305
42306 @item QStartNoAckMode
42307 @cindex @samp{QStartNoAckMode} packet
42308 @anchor{QStartNoAckMode}
42309 Request that the remote stub disable the normal @samp{+}/@samp{-}
42310 protocol acknowledgments (@pxref{Packet Acknowledgment}).
42311
42312 Reply:
42313 @table @samp
42314 @item OK
42315 The stub has switched to no-acknowledgment mode.
42316 @value{GDBN} acknowledges this response,
42317 but neither the stub nor @value{GDBN} shall send or expect further
42318 @samp{+}/@samp{-} acknowledgments in the current connection.
42319 @item @w{}
42320 An empty reply indicates that the stub does not support no-acknowledgment mode.
42321 @end table
42322
42323 @item qSupported @r{[}:@var{gdbfeature} @r{[};@var{gdbfeature}@r{]}@dots{} @r{]}
42324 @cindex supported packets, remote query
42325 @cindex features of the remote protocol
42326 @cindex @samp{qSupported} packet
42327 @anchor{qSupported}
42328 Tell the remote stub about features supported by @value{GDBN}, and
42329 query the stub for features it supports. This packet allows
42330 @value{GDBN} and the remote stub to take advantage of each others'
42331 features. @samp{qSupported} also consolidates multiple feature probes
42332 at startup, to improve @value{GDBN} performance---a single larger
42333 packet performs better than multiple smaller probe packets on
42334 high-latency links. Some features may enable behavior which must not
42335 be on by default, e.g.@: because it would confuse older clients or
42336 stubs. Other features may describe packets which could be
42337 automatically probed for, but are not. These features must be
42338 reported before @value{GDBN} will use them. This ``default
42339 unsupported'' behavior is not appropriate for all packets, but it
42340 helps to keep the initial connection time under control with new
42341 versions of @value{GDBN} which support increasing numbers of packets.
42342
42343 Reply:
42344 @table @samp
42345 @item @var{stubfeature} @r{[};@var{stubfeature}@r{]}@dots{}
42346 The stub supports or does not support each returned @var{stubfeature},
42347 depending on the form of each @var{stubfeature} (see below for the
42348 possible forms).
42349 @item @w{}
42350 An empty reply indicates that @samp{qSupported} is not recognized,
42351 or that no features needed to be reported to @value{GDBN}.
42352 @end table
42353
42354 The allowed forms for each feature (either a @var{gdbfeature} in the
42355 @samp{qSupported} packet, or a @var{stubfeature} in the response)
42356 are:
42357
42358 @table @samp
42359 @item @var{name}=@var{value}
42360 The remote protocol feature @var{name} is supported, and associated
42361 with the specified @var{value}. The format of @var{value} depends
42362 on the feature, but it must not include a semicolon.
42363 @item @var{name}+
42364 The remote protocol feature @var{name} is supported, and does not
42365 need an associated value.
42366 @item @var{name}-
42367 The remote protocol feature @var{name} is not supported.
42368 @item @var{name}?
42369 The remote protocol feature @var{name} may be supported, and
42370 @value{GDBN} should auto-detect support in some other way when it is
42371 needed. This form will not be used for @var{gdbfeature} notifications,
42372 but may be used for @var{stubfeature} responses.
42373 @end table
42374
42375 Whenever the stub receives a @samp{qSupported} request, the
42376 supplied set of @value{GDBN} features should override any previous
42377 request. This allows @value{GDBN} to put the stub in a known
42378 state, even if the stub had previously been communicating with
42379 a different version of @value{GDBN}.
42380
42381 The following values of @var{gdbfeature} (for the packet sent by @value{GDBN})
42382 are defined:
42383
42384 @table @samp
42385 @item multiprocess
42386 This feature indicates whether @value{GDBN} supports multiprocess
42387 extensions to the remote protocol. @value{GDBN} does not use such
42388 extensions unless the stub also reports that it supports them by
42389 including @samp{multiprocess+} in its @samp{qSupported} reply.
42390 @xref{multiprocess extensions}, for details.
42391
42392 @item xmlRegisters
42393 This feature indicates that @value{GDBN} supports the XML target
42394 description. If the stub sees @samp{xmlRegisters=} with target
42395 specific strings separated by a comma, it will report register
42396 description.
42397
42398 @item qRelocInsn
42399 This feature indicates whether @value{GDBN} supports the
42400 @samp{qRelocInsn} packet (@pxref{Tracepoint Packets,,Relocate
42401 instruction reply packet}).
42402
42403 @item swbreak
42404 This feature indicates whether @value{GDBN} supports the swbreak stop
42405 reason in stop replies. @xref{swbreak stop reason}, for details.
42406
42407 @item hwbreak
42408 This feature indicates whether @value{GDBN} supports the hwbreak stop
42409 reason in stop replies. @xref{swbreak stop reason}, for details.
42410
42411 @item fork-events
42412 This feature indicates whether @value{GDBN} supports fork event
42413 extensions to the remote protocol. @value{GDBN} does not use such
42414 extensions unless the stub also reports that it supports them by
42415 including @samp{fork-events+} in its @samp{qSupported} reply.
42416
42417 @item vfork-events
42418 This feature indicates whether @value{GDBN} supports vfork event
42419 extensions to the remote protocol. @value{GDBN} does not use such
42420 extensions unless the stub also reports that it supports them by
42421 including @samp{vfork-events+} in its @samp{qSupported} reply.
42422
42423 @item exec-events
42424 This feature indicates whether @value{GDBN} supports exec event
42425 extensions to the remote protocol. @value{GDBN} does not use such
42426 extensions unless the stub also reports that it supports them by
42427 including @samp{exec-events+} in its @samp{qSupported} reply.
42428
42429 @item vContSupported
42430 This feature indicates whether @value{GDBN} wants to know the
42431 supported actions in the reply to @samp{vCont?} packet.
42432 @end table
42433
42434 Stubs should ignore any unknown values for
42435 @var{gdbfeature}. Any @value{GDBN} which sends a @samp{qSupported}
42436 packet supports receiving packets of unlimited length (earlier
42437 versions of @value{GDBN} may reject overly long responses). Additional values
42438 for @var{gdbfeature} may be defined in the future to let the stub take
42439 advantage of new features in @value{GDBN}, e.g.@: incompatible
42440 improvements in the remote protocol---the @samp{multiprocess} feature is
42441 an example of such a feature. The stub's reply should be independent
42442 of the @var{gdbfeature} entries sent by @value{GDBN}; first @value{GDBN}
42443 describes all the features it supports, and then the stub replies with
42444 all the features it supports.
42445
42446 Similarly, @value{GDBN} will silently ignore unrecognized stub feature
42447 responses, as long as each response uses one of the standard forms.
42448
42449 Some features are flags. A stub which supports a flag feature
42450 should respond with a @samp{+} form response. Other features
42451 require values, and the stub should respond with an @samp{=}
42452 form response.
42453
42454 Each feature has a default value, which @value{GDBN} will use if
42455 @samp{qSupported} is not available or if the feature is not mentioned
42456 in the @samp{qSupported} response. The default values are fixed; a
42457 stub is free to omit any feature responses that match the defaults.
42458
42459 Not all features can be probed, but for those which can, the probing
42460 mechanism is useful: in some cases, a stub's internal
42461 architecture may not allow the protocol layer to know some information
42462 about the underlying target in advance. This is especially common in
42463 stubs which may be configured for multiple targets.
42464
42465 These are the currently defined stub features and their properties:
42466
42467 @multitable @columnfractions 0.35 0.2 0.12 0.2
42468 @c NOTE: The first row should be @headitem, but we do not yet require
42469 @c a new enough version of Texinfo (4.7) to use @headitem.
42470 @item Feature Name
42471 @tab Value Required
42472 @tab Default
42473 @tab Probe Allowed
42474
42475 @item @samp{PacketSize}
42476 @tab Yes
42477 @tab @samp{-}
42478 @tab No
42479
42480 @item @samp{qXfer:auxv:read}
42481 @tab No
42482 @tab @samp{-}
42483 @tab Yes
42484
42485 @item @samp{qXfer:btrace:read}
42486 @tab No
42487 @tab @samp{-}
42488 @tab Yes
42489
42490 @item @samp{qXfer:btrace-conf:read}
42491 @tab No
42492 @tab @samp{-}
42493 @tab Yes
42494
42495 @item @samp{qXfer:exec-file:read}
42496 @tab No
42497 @tab @samp{-}
42498 @tab Yes
42499
42500 @item @samp{qXfer:features:read}
42501 @tab No
42502 @tab @samp{-}
42503 @tab Yes
42504
42505 @item @samp{qXfer:libraries:read}
42506 @tab No
42507 @tab @samp{-}
42508 @tab Yes
42509
42510 @item @samp{qXfer:libraries-svr4:read}
42511 @tab No
42512 @tab @samp{-}
42513 @tab Yes
42514
42515 @item @samp{augmented-libraries-svr4-read}
42516 @tab No
42517 @tab @samp{-}
42518 @tab No
42519
42520 @item @samp{qXfer:memory-map:read}
42521 @tab No
42522 @tab @samp{-}
42523 @tab Yes
42524
42525 @item @samp{qXfer:sdata:read}
42526 @tab No
42527 @tab @samp{-}
42528 @tab Yes
42529
42530 @item @samp{qXfer:siginfo:read}
42531 @tab No
42532 @tab @samp{-}
42533 @tab Yes
42534
42535 @item @samp{qXfer:siginfo:write}
42536 @tab No
42537 @tab @samp{-}
42538 @tab Yes
42539
42540 @item @samp{qXfer:threads:read}
42541 @tab No
42542 @tab @samp{-}
42543 @tab Yes
42544
42545 @item @samp{qXfer:traceframe-info:read}
42546 @tab No
42547 @tab @samp{-}
42548 @tab Yes
42549
42550 @item @samp{qXfer:uib:read}
42551 @tab No
42552 @tab @samp{-}
42553 @tab Yes
42554
42555 @item @samp{qXfer:fdpic:read}
42556 @tab No
42557 @tab @samp{-}
42558 @tab Yes
42559
42560 @item @samp{Qbtrace:off}
42561 @tab Yes
42562 @tab @samp{-}
42563 @tab Yes
42564
42565 @item @samp{Qbtrace:bts}
42566 @tab Yes
42567 @tab @samp{-}
42568 @tab Yes
42569
42570 @item @samp{Qbtrace:pt}
42571 @tab Yes
42572 @tab @samp{-}
42573 @tab Yes
42574
42575 @item @samp{Qbtrace-conf:bts:size}
42576 @tab Yes
42577 @tab @samp{-}
42578 @tab Yes
42579
42580 @item @samp{Qbtrace-conf:pt:size}
42581 @tab Yes
42582 @tab @samp{-}
42583 @tab Yes
42584
42585 @item @samp{QNonStop}
42586 @tab No
42587 @tab @samp{-}
42588 @tab Yes
42589
42590 @item @samp{QCatchSyscalls}
42591 @tab No
42592 @tab @samp{-}
42593 @tab Yes
42594
42595 @item @samp{QPassSignals}
42596 @tab No
42597 @tab @samp{-}
42598 @tab Yes
42599
42600 @item @samp{QStartNoAckMode}
42601 @tab No
42602 @tab @samp{-}
42603 @tab Yes
42604
42605 @item @samp{multiprocess}
42606 @tab No
42607 @tab @samp{-}
42608 @tab No
42609
42610 @item @samp{ConditionalBreakpoints}
42611 @tab No
42612 @tab @samp{-}
42613 @tab No
42614
42615 @item @samp{ConditionalTracepoints}
42616 @tab No
42617 @tab @samp{-}
42618 @tab No
42619
42620 @item @samp{ReverseContinue}
42621 @tab No
42622 @tab @samp{-}
42623 @tab No
42624
42625 @item @samp{ReverseStep}
42626 @tab No
42627 @tab @samp{-}
42628 @tab No
42629
42630 @item @samp{TracepointSource}
42631 @tab No
42632 @tab @samp{-}
42633 @tab No
42634
42635 @item @samp{QAgent}
42636 @tab No
42637 @tab @samp{-}
42638 @tab No
42639
42640 @item @samp{QAllow}
42641 @tab No
42642 @tab @samp{-}
42643 @tab No
42644
42645 @item @samp{QDisableRandomization}
42646 @tab No
42647 @tab @samp{-}
42648 @tab No
42649
42650 @item @samp{EnableDisableTracepoints}
42651 @tab No
42652 @tab @samp{-}
42653 @tab No
42654
42655 @item @samp{QTBuffer:size}
42656 @tab No
42657 @tab @samp{-}
42658 @tab No
42659
42660 @item @samp{tracenz}
42661 @tab No
42662 @tab @samp{-}
42663 @tab No
42664
42665 @item @samp{BreakpointCommands}
42666 @tab No
42667 @tab @samp{-}
42668 @tab No
42669
42670 @item @samp{swbreak}
42671 @tab No
42672 @tab @samp{-}
42673 @tab No
42674
42675 @item @samp{hwbreak}
42676 @tab No
42677 @tab @samp{-}
42678 @tab No
42679
42680 @item @samp{fork-events}
42681 @tab No
42682 @tab @samp{-}
42683 @tab No
42684
42685 @item @samp{vfork-events}
42686 @tab No
42687 @tab @samp{-}
42688 @tab No
42689
42690 @item @samp{exec-events}
42691 @tab No
42692 @tab @samp{-}
42693 @tab No
42694
42695 @item @samp{QThreadEvents}
42696 @tab No
42697 @tab @samp{-}
42698 @tab No
42699
42700 @item @samp{no-resumed}
42701 @tab No
42702 @tab @samp{-}
42703 @tab No
42704
42705 @item @samp{memory-tagging}
42706 @tab No
42707 @tab @samp{-}
42708 @tab No
42709
42710 @end multitable
42711
42712 These are the currently defined stub features, in more detail:
42713
42714 @table @samp
42715 @cindex packet size, remote protocol
42716 @item PacketSize=@var{bytes}
42717 The remote stub can accept packets up to at least @var{bytes} in
42718 length. @value{GDBN} will send packets up to this size for bulk
42719 transfers, and will never send larger packets. This is a limit on the
42720 data characters in the packet, including the frame and checksum.
42721 There is no trailing NUL byte in a remote protocol packet; if the stub
42722 stores packets in a NUL-terminated format, it should allow an extra
42723 byte in its buffer for the NUL. If this stub feature is not supported,
42724 @value{GDBN} guesses based on the size of the @samp{g} packet response.
42725
42726 @item qXfer:auxv:read
42727 The remote stub understands the @samp{qXfer:auxv:read} packet
42728 (@pxref{qXfer auxiliary vector read}).
42729
42730 @item qXfer:btrace:read
42731 The remote stub understands the @samp{qXfer:btrace:read}
42732 packet (@pxref{qXfer btrace read}).
42733
42734 @item qXfer:btrace-conf:read
42735 The remote stub understands the @samp{qXfer:btrace-conf:read}
42736 packet (@pxref{qXfer btrace-conf read}).
42737
42738 @item qXfer:exec-file:read
42739 The remote stub understands the @samp{qXfer:exec-file:read} packet
42740 (@pxref{qXfer executable filename read}).
42741
42742 @item qXfer:features:read
42743 The remote stub understands the @samp{qXfer:features:read} packet
42744 (@pxref{qXfer target description read}).
42745
42746 @item qXfer:libraries:read
42747 The remote stub understands the @samp{qXfer:libraries:read} packet
42748 (@pxref{qXfer library list read}).
42749
42750 @item qXfer:libraries-svr4:read
42751 The remote stub understands the @samp{qXfer:libraries-svr4:read} packet
42752 (@pxref{qXfer svr4 library list read}).
42753
42754 @item augmented-libraries-svr4-read
42755 The remote stub understands the augmented form of the
42756 @samp{qXfer:libraries-svr4:read} packet
42757 (@pxref{qXfer svr4 library list read}).
42758
42759 @item qXfer:memory-map:read
42760 The remote stub understands the @samp{qXfer:memory-map:read} packet
42761 (@pxref{qXfer memory map read}).
42762
42763 @item qXfer:sdata:read
42764 The remote stub understands the @samp{qXfer:sdata:read} packet
42765 (@pxref{qXfer sdata read}).
42766
42767 @item qXfer:siginfo:read
42768 The remote stub understands the @samp{qXfer:siginfo:read} packet
42769 (@pxref{qXfer siginfo read}).
42770
42771 @item qXfer:siginfo:write
42772 The remote stub understands the @samp{qXfer:siginfo:write} packet
42773 (@pxref{qXfer siginfo write}).
42774
42775 @item qXfer:threads:read
42776 The remote stub understands the @samp{qXfer:threads:read} packet
42777 (@pxref{qXfer threads read}).
42778
42779 @item qXfer:traceframe-info:read
42780 The remote stub understands the @samp{qXfer:traceframe-info:read}
42781 packet (@pxref{qXfer traceframe info read}).
42782
42783 @item qXfer:uib:read
42784 The remote stub understands the @samp{qXfer:uib:read}
42785 packet (@pxref{qXfer unwind info block}).
42786
42787 @item qXfer:fdpic:read
42788 The remote stub understands the @samp{qXfer:fdpic:read}
42789 packet (@pxref{qXfer fdpic loadmap read}).
42790
42791 @item QNonStop
42792 The remote stub understands the @samp{QNonStop} packet
42793 (@pxref{QNonStop}).
42794
42795 @item QCatchSyscalls
42796 The remote stub understands the @samp{QCatchSyscalls} packet
42797 (@pxref{QCatchSyscalls}).
42798
42799 @item QPassSignals
42800 The remote stub understands the @samp{QPassSignals} packet
42801 (@pxref{QPassSignals}).
42802
42803 @item QStartNoAckMode
42804 The remote stub understands the @samp{QStartNoAckMode} packet and
42805 prefers to operate in no-acknowledgment mode. @xref{Packet Acknowledgment}.
42806
42807 @item multiprocess
42808 @anchor{multiprocess extensions}
42809 @cindex multiprocess extensions, in remote protocol
42810 The remote stub understands the multiprocess extensions to the remote
42811 protocol syntax. The multiprocess extensions affect the syntax of
42812 thread IDs in both packets and replies (@pxref{thread-id syntax}), and
42813 add process IDs to the @samp{D} packet and @samp{W} and @samp{X}
42814 replies. Note that reporting this feature indicates support for the
42815 syntactic extensions only, not that the stub necessarily supports
42816 debugging of more than one process at a time. The stub must not use
42817 multiprocess extensions in packet replies unless @value{GDBN} has also
42818 indicated it supports them in its @samp{qSupported} request.
42819
42820 @item qXfer:osdata:read
42821 The remote stub understands the @samp{qXfer:osdata:read} packet
42822 ((@pxref{qXfer osdata read}).
42823
42824 @item ConditionalBreakpoints
42825 The target accepts and implements evaluation of conditional expressions
42826 defined for breakpoints. The target will only report breakpoint triggers
42827 when such conditions are true (@pxref{Conditions, ,Break Conditions}).
42828
42829 @item ConditionalTracepoints
42830 The remote stub accepts and implements conditional expressions defined
42831 for tracepoints (@pxref{Tracepoint Conditions}).
42832
42833 @item ReverseContinue
42834 The remote stub accepts and implements the reverse continue packet
42835 (@pxref{bc}).
42836
42837 @item ReverseStep
42838 The remote stub accepts and implements the reverse step packet
42839 (@pxref{bs}).
42840
42841 @item TracepointSource
42842 The remote stub understands the @samp{QTDPsrc} packet that supplies
42843 the source form of tracepoint definitions.
42844
42845 @item QAgent
42846 The remote stub understands the @samp{QAgent} packet.
42847
42848 @item QAllow
42849 The remote stub understands the @samp{QAllow} packet.
42850
42851 @item QDisableRandomization
42852 The remote stub understands the @samp{QDisableRandomization} packet.
42853
42854 @item StaticTracepoint
42855 @cindex static tracepoints, in remote protocol
42856 The remote stub supports static tracepoints.
42857
42858 @item InstallInTrace
42859 @anchor{install tracepoint in tracing}
42860 The remote stub supports installing tracepoint in tracing.
42861
42862 @item EnableDisableTracepoints
42863 The remote stub supports the @samp{QTEnable} (@pxref{QTEnable}) and
42864 @samp{QTDisable} (@pxref{QTDisable}) packets that allow tracepoints
42865 to be enabled and disabled while a trace experiment is running.
42866
42867 @item QTBuffer:size
42868 The remote stub supports the @samp{QTBuffer:size} (@pxref{QTBuffer-size})
42869 packet that allows to change the size of the trace buffer.
42870
42871 @item tracenz
42872 @cindex string tracing, in remote protocol
42873 The remote stub supports the @samp{tracenz} bytecode for collecting strings.
42874 See @ref{Bytecode Descriptions} for details about the bytecode.
42875
42876 @item BreakpointCommands
42877 @cindex breakpoint commands, in remote protocol
42878 The remote stub supports running a breakpoint's command list itself,
42879 rather than reporting the hit to @value{GDBN}.
42880
42881 @item Qbtrace:off
42882 The remote stub understands the @samp{Qbtrace:off} packet.
42883
42884 @item Qbtrace:bts
42885 The remote stub understands the @samp{Qbtrace:bts} packet.
42886
42887 @item Qbtrace:pt
42888 The remote stub understands the @samp{Qbtrace:pt} packet.
42889
42890 @item Qbtrace-conf:bts:size
42891 The remote stub understands the @samp{Qbtrace-conf:bts:size} packet.
42892
42893 @item Qbtrace-conf:pt:size
42894 The remote stub understands the @samp{Qbtrace-conf:pt:size} packet.
42895
42896 @item swbreak
42897 The remote stub reports the @samp{swbreak} stop reason for memory
42898 breakpoints.
42899
42900 @item hwbreak
42901 The remote stub reports the @samp{hwbreak} stop reason for hardware
42902 breakpoints.
42903
42904 @item fork-events
42905 The remote stub reports the @samp{fork} stop reason for fork events.
42906
42907 @item vfork-events
42908 The remote stub reports the @samp{vfork} stop reason for vfork events
42909 and vforkdone events.
42910
42911 @item exec-events
42912 The remote stub reports the @samp{exec} stop reason for exec events.
42913
42914 @item vContSupported
42915 The remote stub reports the supported actions in the reply to
42916 @samp{vCont?} packet.
42917
42918 @item QThreadEvents
42919 The remote stub understands the @samp{QThreadEvents} packet.
42920
42921 @item no-resumed
42922 The remote stub reports the @samp{N} stop reply.
42923
42924
42925 @item memory-tagging
42926 The remote stub supports and implements the required memory tagging
42927 functionality and understands the @samp{qMemTags} (@pxref{qMemTags}) and
42928 @samp{QMemTags} (@pxref{QMemTags}) packets.
42929
42930 For AArch64 GNU/Linux systems, this feature also requires access to the
42931 @file{/proc/@var{pid}/smaps} file so memory mapping page flags can be inspected.
42932 This is done via the @samp{vFile} requests.
42933
42934 @end table
42935
42936 @item qSymbol::
42937 @cindex symbol lookup, remote request
42938 @cindex @samp{qSymbol} packet
42939 Notify the target that @value{GDBN} is prepared to serve symbol lookup
42940 requests. Accept requests from the target for the values of symbols.
42941
42942 Reply:
42943 @table @samp
42944 @item OK
42945 The target does not need to look up any (more) symbols.
42946 @item qSymbol:@var{sym_name}
42947 The target requests the value of symbol @var{sym_name} (hex encoded).
42948 @value{GDBN} may provide the value by using the
42949 @samp{qSymbol:@var{sym_value}:@var{sym_name}} message, described
42950 below.
42951 @end table
42952
42953 @item qSymbol:@var{sym_value}:@var{sym_name}
42954 Set the value of @var{sym_name} to @var{sym_value}.
42955
42956 @var{sym_name} (hex encoded) is the name of a symbol whose value the
42957 target has previously requested.
42958
42959 @var{sym_value} (hex) is the value for symbol @var{sym_name}. If
42960 @value{GDBN} cannot supply a value for @var{sym_name}, then this field
42961 will be empty.
42962
42963 Reply:
42964 @table @samp
42965 @item OK
42966 The target does not need to look up any (more) symbols.
42967 @item qSymbol:@var{sym_name}
42968 The target requests the value of a new symbol @var{sym_name} (hex
42969 encoded). @value{GDBN} will continue to supply the values of symbols
42970 (if available), until the target ceases to request them.
42971 @end table
42972
42973 @item qTBuffer
42974 @itemx QTBuffer
42975 @itemx QTDisconnected
42976 @itemx QTDP
42977 @itemx QTDPsrc
42978 @itemx QTDV
42979 @itemx qTfP
42980 @itemx qTfV
42981 @itemx QTFrame
42982 @itemx qTMinFTPILen
42983
42984 @xref{Tracepoint Packets}.
42985
42986 @anchor{qThreadExtraInfo}
42987 @item qThreadExtraInfo,@var{thread-id}
42988 @cindex thread attributes info, remote request
42989 @cindex @samp{qThreadExtraInfo} packet
42990 Obtain from the target OS a printable string description of thread
42991 attributes for the thread @var{thread-id}; see @ref{thread-id syntax},
42992 for the forms of @var{thread-id}. This
42993 string may contain anything that the target OS thinks is interesting
42994 for @value{GDBN} to tell the user about the thread. The string is
42995 displayed in @value{GDBN}'s @code{info threads} display. Some
42996 examples of possible thread extra info strings are @samp{Runnable}, or
42997 @samp{Blocked on Mutex}.
42998
42999 Reply:
43000 @table @samp
43001 @item @var{XX}@dots{}
43002 Where @samp{@var{XX}@dots{}} is a hex encoding of @sc{ascii} data,
43003 comprising the printable string containing the extra information about
43004 the thread's attributes.
43005 @end table
43006
43007 (Note that the @code{qThreadExtraInfo} packet's name is separated from
43008 the command by a @samp{,}, not a @samp{:}, contrary to the naming
43009 conventions above. Please don't use this packet as a model for new
43010 packets.)
43011
43012 @item QTNotes
43013 @itemx qTP
43014 @itemx QTSave
43015 @itemx qTsP
43016 @itemx qTsV
43017 @itemx QTStart
43018 @itemx QTStop
43019 @itemx QTEnable
43020 @itemx QTDisable
43021 @itemx QTinit
43022 @itemx QTro
43023 @itemx qTStatus
43024 @itemx qTV
43025 @itemx qTfSTM
43026 @itemx qTsSTM
43027 @itemx qTSTMat
43028 @xref{Tracepoint Packets}.
43029
43030 @item qXfer:@var{object}:read:@var{annex}:@var{offset},@var{length}
43031 @cindex read special object, remote request
43032 @cindex @samp{qXfer} packet
43033 @anchor{qXfer read}
43034 Read uninterpreted bytes from the target's special data area
43035 identified by the keyword @var{object}. Request @var{length} bytes
43036 starting at @var{offset} bytes into the data. The content and
43037 encoding of @var{annex} is specific to @var{object}; it can supply
43038 additional details about what data to access.
43039
43040 Reply:
43041 @table @samp
43042 @item m @var{data}
43043 Data @var{data} (@pxref{Binary Data}) has been read from the
43044 target. There may be more data at a higher address (although
43045 it is permitted to return @samp{m} even for the last valid
43046 block of data, as long as at least one byte of data was read).
43047 It is possible for @var{data} to have fewer bytes than the @var{length} in the
43048 request.
43049
43050 @item l @var{data}
43051 Data @var{data} (@pxref{Binary Data}) has been read from the target.
43052 There is no more data to be read. It is possible for @var{data} to
43053 have fewer bytes than the @var{length} in the request.
43054
43055 @item l
43056 The @var{offset} in the request is at the end of the data.
43057 There is no more data to be read.
43058
43059 @item E00
43060 The request was malformed, or @var{annex} was invalid.
43061
43062 @item E @var{nn}
43063 The offset was invalid, or there was an error encountered reading the data.
43064 The @var{nn} part is a hex-encoded @code{errno} value.
43065
43066 @item @w{}
43067 An empty reply indicates the @var{object} string was not recognized by
43068 the stub, or that the object does not support reading.
43069 @end table
43070
43071 Here are the specific requests of this form defined so far. All the
43072 @samp{qXfer:@var{object}:read:@dots{}} requests use the same reply
43073 formats, listed above.
43074
43075 @table @samp
43076 @item qXfer:auxv:read::@var{offset},@var{length}
43077 @anchor{qXfer auxiliary vector read}
43078 Access the target's @dfn{auxiliary vector}. @xref{OS Information,
43079 auxiliary vector}. Note @var{annex} must be empty.
43080
43081 This packet is not probed by default; the remote stub must request it,
43082 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43083
43084 @item qXfer:btrace:read:@var{annex}:@var{offset},@var{length}
43085 @anchor{qXfer btrace read}
43086
43087 Return a description of the current branch trace.
43088 @xref{Branch Trace Format}. The annex part of the generic @samp{qXfer}
43089 packet may have one of the following values:
43090
43091 @table @code
43092 @item all
43093 Returns all available branch trace.
43094
43095 @item new
43096 Returns all available branch trace if the branch trace changed since
43097 the last read request.
43098
43099 @item delta
43100 Returns the new branch trace since the last read request. Adds a new
43101 block to the end of the trace that begins at zero and ends at the source
43102 location of the first branch in the trace buffer. This extra block is
43103 used to stitch traces together.
43104
43105 If the trace buffer overflowed, returns an error indicating the overflow.
43106 @end table
43107
43108 This packet is not probed by default; the remote stub must request it
43109 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43110
43111 @item qXfer:btrace-conf:read::@var{offset},@var{length}
43112 @anchor{qXfer btrace-conf read}
43113
43114 Return a description of the current branch trace configuration.
43115 @xref{Branch Trace Configuration Format}.
43116
43117 This packet is not probed by default; the remote stub must request it
43118 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43119
43120 @item qXfer:exec-file:read:@var{annex}:@var{offset},@var{length}
43121 @anchor{qXfer executable filename read}
43122 Return the full absolute name of the file that was executed to create
43123 a process running on the remote system. The annex specifies the
43124 numeric process ID of the process to query, encoded as a hexadecimal
43125 number. If the annex part is empty the remote stub should return the
43126 filename corresponding to the currently executing process.
43127
43128 This packet is not probed by default; the remote stub must request it,
43129 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43130
43131 @item qXfer:features:read:@var{annex}:@var{offset},@var{length}
43132 @anchor{qXfer target description read}
43133 Access the @dfn{target description}. @xref{Target Descriptions}. The
43134 annex specifies which XML document to access. The main description is
43135 always loaded from the @samp{target.xml} annex.
43136
43137 This packet is not probed by default; the remote stub must request it,
43138 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43139
43140 @item qXfer:libraries:read:@var{annex}:@var{offset},@var{length}
43141 @anchor{qXfer library list read}
43142 Access the target's list of loaded libraries. @xref{Library List Format}.
43143 The annex part of the generic @samp{qXfer} packet must be empty
43144 (@pxref{qXfer read}).
43145
43146 Targets which maintain a list of libraries in the program's memory do
43147 not need to implement this packet; it is designed for platforms where
43148 the operating system manages the list of loaded libraries.
43149
43150 This packet is not probed by default; the remote stub must request it,
43151 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43152
43153 @item qXfer:libraries-svr4:read:@var{annex}:@var{offset},@var{length}
43154 @anchor{qXfer svr4 library list read}
43155 Access the target's list of loaded libraries when the target is an SVR4
43156 platform. @xref{Library List Format for SVR4 Targets}. The annex part
43157 of the generic @samp{qXfer} packet must be empty unless the remote
43158 stub indicated it supports the augmented form of this packet
43159 by supplying an appropriate @samp{qSupported} response
43160 (@pxref{qXfer read}, @ref{qSupported}).
43161
43162 This packet is optional for better performance on SVR4 targets.
43163 @value{GDBN} uses memory read packets to read the SVR4 library list otherwise.
43164
43165 This packet is not probed by default; the remote stub must request it,
43166 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43167
43168 If the remote stub indicates it supports the augmented form of this
43169 packet then the annex part of the generic @samp{qXfer} packet may
43170 contain a semicolon-separated list of @samp{@var{name}=@var{value}}
43171 arguments. The currently supported arguments are:
43172
43173 @table @code
43174 @item start=@var{address}
43175 A hexadecimal number specifying the address of the @samp{struct
43176 link_map} to start reading the library list from. If unset or zero
43177 then the first @samp{struct link_map} in the library list will be
43178 chosen as the starting point.
43179
43180 @item prev=@var{address}
43181 A hexadecimal number specifying the address of the @samp{struct
43182 link_map} immediately preceding the @samp{struct link_map}
43183 specified by the @samp{start} argument. If unset or zero then
43184 the remote stub will expect that no @samp{struct link_map}
43185 exists prior to the starting point.
43186
43187 @end table
43188
43189 Arguments that are not understood by the remote stub will be silently
43190 ignored.
43191
43192 @item qXfer:memory-map:read::@var{offset},@var{length}
43193 @anchor{qXfer memory map read}
43194 Access the target's @dfn{memory-map}. @xref{Memory Map Format}. The
43195 annex part of the generic @samp{qXfer} packet must be empty
43196 (@pxref{qXfer read}).
43197
43198 This packet is not probed by default; the remote stub must request it,
43199 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43200
43201 @item qXfer:sdata:read::@var{offset},@var{length}
43202 @anchor{qXfer sdata read}
43203
43204 Read contents of the extra collected static tracepoint marker
43205 information. The annex part of the generic @samp{qXfer} packet must
43206 be empty (@pxref{qXfer read}). @xref{Tracepoint Actions,,Tracepoint
43207 Action Lists}.
43208
43209 This packet is not probed by default; the remote stub must request it,
43210 by supplying an appropriate @samp{qSupported} response
43211 (@pxref{qSupported}).
43212
43213 @item qXfer:siginfo:read::@var{offset},@var{length}
43214 @anchor{qXfer siginfo read}
43215 Read contents of the extra signal information on the target
43216 system. The annex part of the generic @samp{qXfer} packet must be
43217 empty (@pxref{qXfer read}).
43218
43219 This packet is not probed by default; the remote stub must request it,
43220 by supplying an appropriate @samp{qSupported} response
43221 (@pxref{qSupported}).
43222
43223 @item qXfer:threads:read::@var{offset},@var{length}
43224 @anchor{qXfer threads read}
43225 Access the list of threads on target. @xref{Thread List Format}. The
43226 annex part of the generic @samp{qXfer} packet must be empty
43227 (@pxref{qXfer read}).
43228
43229 This packet is not probed by default; the remote stub must request it,
43230 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43231
43232 @item qXfer:traceframe-info:read::@var{offset},@var{length}
43233 @anchor{qXfer traceframe info read}
43234
43235 Return a description of the current traceframe's contents.
43236 @xref{Traceframe Info Format}. The annex part of the generic
43237 @samp{qXfer} packet must be empty (@pxref{qXfer read}).
43238
43239 This packet is not probed by default; the remote stub must request it,
43240 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43241
43242 @item qXfer:uib:read:@var{pc}:@var{offset},@var{length}
43243 @anchor{qXfer unwind info block}
43244
43245 Return the unwind information block for @var{pc}. This packet is used
43246 on OpenVMS/ia64 to ask the kernel unwind information.
43247
43248 This packet is not probed by default.
43249
43250 @item qXfer:fdpic:read:@var{annex}:@var{offset},@var{length}
43251 @anchor{qXfer fdpic loadmap read}
43252 Read contents of @code{loadmap}s on the target system. The
43253 annex, either @samp{exec} or @samp{interp}, specifies which @code{loadmap},
43254 executable @code{loadmap} or interpreter @code{loadmap} to read.
43255
43256 This packet is not probed by default; the remote stub must request it,
43257 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
43258
43259 @item qXfer:osdata:read::@var{offset},@var{length}
43260 @anchor{qXfer osdata read}
43261 Access the target's @dfn{operating system information}.
43262 @xref{Operating System Information}.
43263
43264 @end table
43265
43266 @item qXfer:@var{object}:write:@var{annex}:@var{offset}:@var{data}@dots{}
43267 @cindex write data into object, remote request
43268 @anchor{qXfer write}
43269 Write uninterpreted bytes into the target's special data area
43270 identified by the keyword @var{object}, starting at @var{offset} bytes
43271 into the data. The binary-encoded data (@pxref{Binary Data}) to be
43272 written is given by @var{data}@dots{}. The content and encoding of @var{annex}
43273 is specific to @var{object}; it can supply additional details about what data
43274 to access.
43275
43276 Reply:
43277 @table @samp
43278 @item @var{nn}
43279 @var{nn} (hex encoded) is the number of bytes written.
43280 This may be fewer bytes than supplied in the request.
43281
43282 @item E00
43283 The request was malformed, or @var{annex} was invalid.
43284
43285 @item E @var{nn}
43286 The offset was invalid, or there was an error encountered writing the data.
43287 The @var{nn} part is a hex-encoded @code{errno} value.
43288
43289 @item @w{}
43290 An empty reply indicates the @var{object} string was not
43291 recognized by the stub, or that the object does not support writing.
43292 @end table
43293
43294 Here are the specific requests of this form defined so far. All the
43295 @samp{qXfer:@var{object}:write:@dots{}} requests use the same reply
43296 formats, listed above.
43297
43298 @table @samp
43299 @item qXfer:siginfo:write::@var{offset}:@var{data}@dots{}
43300 @anchor{qXfer siginfo write}
43301 Write @var{data} to the extra signal information on the target system.
43302 The annex part of the generic @samp{qXfer} packet must be
43303 empty (@pxref{qXfer write}).
43304
43305 This packet is not probed by default; the remote stub must request it,
43306 by supplying an appropriate @samp{qSupported} response
43307 (@pxref{qSupported}).
43308 @end table
43309
43310 @item qXfer:@var{object}:@var{operation}:@dots{}
43311 Requests of this form may be added in the future. When a stub does
43312 not recognize the @var{object} keyword, or its support for
43313 @var{object} does not recognize the @var{operation} keyword, the stub
43314 must respond with an empty packet.
43315
43316 @item qAttached:@var{pid}
43317 @cindex query attached, remote request
43318 @cindex @samp{qAttached} packet
43319 Return an indication of whether the remote server attached to an
43320 existing process or created a new process. When the multiprocess
43321 protocol extensions are supported (@pxref{multiprocess extensions}),
43322 @var{pid} is an integer in hexadecimal format identifying the target
43323 process. Otherwise, @value{GDBN} will omit the @var{pid} field and
43324 the query packet will be simplified as @samp{qAttached}.
43325
43326 This query is used, for example, to know whether the remote process
43327 should be detached or killed when a @value{GDBN} session is ended with
43328 the @code{quit} command.
43329
43330 Reply:
43331 @table @samp
43332 @item 1
43333 The remote server attached to an existing process.
43334 @item 0
43335 The remote server created a new process.
43336 @item E @var{NN}
43337 A badly formed request or an error was encountered.
43338 @end table
43339
43340 @item Qbtrace:bts
43341 Enable branch tracing for the current thread using Branch Trace Store.
43342
43343 Reply:
43344 @table @samp
43345 @item OK
43346 Branch tracing has been enabled.
43347 @item E.errtext
43348 A badly formed request or an error was encountered.
43349 @end table
43350
43351 @item Qbtrace:pt
43352 Enable branch tracing for the current thread using Intel Processor Trace.
43353
43354 Reply:
43355 @table @samp
43356 @item OK
43357 Branch tracing has been enabled.
43358 @item E.errtext
43359 A badly formed request or an error was encountered.
43360 @end table
43361
43362 @item Qbtrace:off
43363 Disable branch tracing for the current thread.
43364
43365 Reply:
43366 @table @samp
43367 @item OK
43368 Branch tracing has been disabled.
43369 @item E.errtext
43370 A badly formed request or an error was encountered.
43371 @end table
43372
43373 @item Qbtrace-conf:bts:size=@var{value}
43374 Set the requested ring buffer size for new threads that use the
43375 btrace recording method in bts format.
43376
43377 Reply:
43378 @table @samp
43379 @item OK
43380 The ring buffer size has been set.
43381 @item E.errtext
43382 A badly formed request or an error was encountered.
43383 @end table
43384
43385 @item Qbtrace-conf:pt:size=@var{value}
43386 Set the requested ring buffer size for new threads that use the
43387 btrace recording method in pt format.
43388
43389 Reply:
43390 @table @samp
43391 @item OK
43392 The ring buffer size has been set.
43393 @item E.errtext
43394 A badly formed request or an error was encountered.
43395 @end table
43396
43397 @end table
43398
43399 @node Architecture-Specific Protocol Details
43400 @section Architecture-Specific Protocol Details
43401
43402 This section describes how the remote protocol is applied to specific
43403 target architectures. Also see @ref{Standard Target Features}, for
43404 details of XML target descriptions for each architecture.
43405
43406 @menu
43407 * ARM-Specific Protocol Details::
43408 * MIPS-Specific Protocol Details::
43409 @end menu
43410
43411 @node ARM-Specific Protocol Details
43412 @subsection @acronym{ARM}-specific Protocol Details
43413
43414 @menu
43415 * ARM Breakpoint Kinds::
43416 * ARM Memory Tag Types::
43417 @end menu
43418
43419 @node ARM Breakpoint Kinds
43420 @subsubsection @acronym{ARM} Breakpoint Kinds
43421 @cindex breakpoint kinds, @acronym{ARM}
43422
43423 These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
43424
43425 @table @r
43426
43427 @item 2
43428 16-bit Thumb mode breakpoint.
43429
43430 @item 3
43431 32-bit Thumb mode (Thumb-2) breakpoint.
43432
43433 @item 4
43434 32-bit @acronym{ARM} mode breakpoint.
43435
43436 @end table
43437
43438 @node ARM Memory Tag Types
43439 @subsubsection @acronym{ARM} Memory Tag Types
43440 @cindex memory tag types, @acronym{ARM}
43441
43442 These memory tag types are defined for the @samp{qMemTag} and @samp{QMemTag}
43443 packets.
43444
43445 @table @r
43446
43447 @item 0
43448 MTE logical tag
43449
43450 @item 1
43451 MTE allocation tag
43452
43453 @end table
43454
43455 @node MIPS-Specific Protocol Details
43456 @subsection @acronym{MIPS}-specific Protocol Details
43457
43458 @menu
43459 * MIPS Register packet Format::
43460 * MIPS Breakpoint Kinds::
43461 @end menu
43462
43463 @node MIPS Register packet Format
43464 @subsubsection @acronym{MIPS} Register Packet Format
43465 @cindex register packet format, @acronym{MIPS}
43466
43467 The following @code{g}/@code{G} packets have previously been defined.
43468 In the below, some thirty-two bit registers are transferred as
43469 sixty-four bits. Those registers should be zero/sign extended (which?)
43470 to fill the space allocated. Register bytes are transferred in target
43471 byte order. The two nibbles within a register byte are transferred
43472 most-significant -- least-significant.
43473
43474 @table @r
43475
43476 @item MIPS32
43477 All registers are transferred as thirty-two bit quantities in the order:
43478 32 general-purpose; sr; lo; hi; bad; cause; pc; 32 floating-point
43479 registers; fsr; fir; fp.
43480
43481 @item MIPS64
43482 All registers are transferred as sixty-four bit quantities (including
43483 thirty-two bit registers such as @code{sr}). The ordering is the same
43484 as @code{MIPS32}.
43485
43486 @end table
43487
43488 @node MIPS Breakpoint Kinds
43489 @subsubsection @acronym{MIPS} Breakpoint Kinds
43490 @cindex breakpoint kinds, @acronym{MIPS}
43491
43492 These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
43493
43494 @table @r
43495
43496 @item 2
43497 16-bit @acronym{MIPS16} mode breakpoint.
43498
43499 @item 3
43500 16-bit @acronym{microMIPS} mode breakpoint.
43501
43502 @item 4
43503 32-bit standard @acronym{MIPS} mode breakpoint.
43504
43505 @item 5
43506 32-bit @acronym{microMIPS} mode breakpoint.
43507
43508 @end table
43509
43510 @node Tracepoint Packets
43511 @section Tracepoint Packets
43512 @cindex tracepoint packets
43513 @cindex packets, tracepoint
43514
43515 Here we describe the packets @value{GDBN} uses to implement
43516 tracepoints (@pxref{Tracepoints}).
43517
43518 @table @samp
43519
43520 @item QTDP:@var{n}:@var{addr}:@var{ena}:@var{step}:@var{pass}[:F@var{flen}][:X@var{len},@var{bytes}]@r{[}-@r{]}
43521 @cindex @samp{QTDP} packet
43522 Create a new tracepoint, number @var{n}, at @var{addr}. If @var{ena}
43523 is @samp{E}, then the tracepoint is enabled; if it is @samp{D}, then
43524 the tracepoint is disabled. The @var{step} gives the tracepoint's step
43525 count, and @var{pass} gives its pass count. If an @samp{F} is present,
43526 then the tracepoint is to be a fast tracepoint, and the @var{flen} is
43527 the number of bytes that the target should copy elsewhere to make room
43528 for the tracepoint. If an @samp{X} is present, it introduces a
43529 tracepoint condition, which consists of a hexadecimal length, followed
43530 by a comma and hex-encoded bytes, in a manner similar to action
43531 encodings as described below. If the trailing @samp{-} is present,
43532 further @samp{QTDP} packets will follow to specify this tracepoint's
43533 actions.
43534
43535 Replies:
43536 @table @samp
43537 @item OK
43538 The packet was understood and carried out.
43539 @item qRelocInsn
43540 @xref{Tracepoint Packets,,Relocate instruction reply packet}.
43541 @item @w{}
43542 The packet was not recognized.
43543 @end table
43544
43545 @item QTDP:-@var{n}:@var{addr}:@r{[}S@r{]}@var{action}@dots{}@r{[}-@r{]}
43546 Define actions to be taken when a tracepoint is hit. The @var{n} and
43547 @var{addr} must be the same as in the initial @samp{QTDP} packet for
43548 this tracepoint. This packet may only be sent immediately after
43549 another @samp{QTDP} packet that ended with a @samp{-}. If the
43550 trailing @samp{-} is present, further @samp{QTDP} packets will follow,
43551 specifying more actions for this tracepoint.
43552
43553 In the series of action packets for a given tracepoint, at most one
43554 can have an @samp{S} before its first @var{action}. If such a packet
43555 is sent, it and the following packets define ``while-stepping''
43556 actions. Any prior packets define ordinary actions --- that is, those
43557 taken when the tracepoint is first hit. If no action packet has an
43558 @samp{S}, then all the packets in the series specify ordinary
43559 tracepoint actions.
43560
43561 The @samp{@var{action}@dots{}} portion of the packet is a series of
43562 actions, concatenated without separators. Each action has one of the
43563 following forms:
43564
43565 @table @samp
43566
43567 @item R @var{mask}
43568 Collect the registers whose bits are set in @var{mask},
43569 a hexadecimal number whose @var{i}'th bit is set if register number
43570 @var{i} should be collected. (The least significant bit is numbered
43571 zero.) Note that @var{mask} may be any number of digits long; it may
43572 not fit in a 32-bit word.
43573
43574 @item M @var{basereg},@var{offset},@var{len}
43575 Collect @var{len} bytes of memory starting at the address in register
43576 number @var{basereg}, plus @var{offset}. If @var{basereg} is
43577 @samp{-1}, then the range has a fixed address: @var{offset} is the
43578 address of the lowest byte to collect. The @var{basereg},
43579 @var{offset}, and @var{len} parameters are all unsigned hexadecimal
43580 values (the @samp{-1} value for @var{basereg} is a special case).
43581
43582 @item X @var{len},@var{expr}
43583 Evaluate @var{expr}, whose length is @var{len}, and collect memory as
43584 it directs. The agent expression @var{expr} is as described in
43585 @ref{Agent Expressions}. Each byte of the expression is encoded as a
43586 two-digit hex number in the packet; @var{len} is the number of bytes
43587 in the expression (and thus one-half the number of hex digits in the
43588 packet).
43589
43590 @end table
43591
43592 Any number of actions may be packed together in a single @samp{QTDP}
43593 packet, as long as the packet does not exceed the maximum packet
43594 length (400 bytes, for many stubs). There may be only one @samp{R}
43595 action per tracepoint, and it must precede any @samp{M} or @samp{X}
43596 actions. Any registers referred to by @samp{M} and @samp{X} actions
43597 must be collected by a preceding @samp{R} action. (The
43598 ``while-stepping'' actions are treated as if they were attached to a
43599 separate tracepoint, as far as these restrictions are concerned.)
43600
43601 Replies:
43602 @table @samp
43603 @item OK
43604 The packet was understood and carried out.
43605 @item qRelocInsn
43606 @xref{Tracepoint Packets,,Relocate instruction reply packet}.
43607 @item @w{}
43608 The packet was not recognized.
43609 @end table
43610
43611 @item QTDPsrc:@var{n}:@var{addr}:@var{type}:@var{start}:@var{slen}:@var{bytes}
43612 @cindex @samp{QTDPsrc} packet
43613 Specify a source string of tracepoint @var{n} at address @var{addr}.
43614 This is useful to get accurate reproduction of the tracepoints
43615 originally downloaded at the beginning of the trace run. The @var{type}
43616 is the name of the tracepoint part, such as @samp{cond} for the
43617 tracepoint's conditional expression (see below for a list of types), while
43618 @var{bytes} is the string, encoded in hexadecimal.
43619
43620 @var{start} is the offset of the @var{bytes} within the overall source
43621 string, while @var{slen} is the total length of the source string.
43622 This is intended for handling source strings that are longer than will
43623 fit in a single packet.
43624 @c Add detailed example when this info is moved into a dedicated
43625 @c tracepoint descriptions section.
43626
43627 The available string types are @samp{at} for the location,
43628 @samp{cond} for the conditional, and @samp{cmd} for an action command.
43629 @value{GDBN} sends a separate packet for each command in the action
43630 list, in the same order in which the commands are stored in the list.
43631
43632 The target does not need to do anything with source strings except
43633 report them back as part of the replies to the @samp{qTfP}/@samp{qTsP}
43634 query packets.
43635
43636 Although this packet is optional, and @value{GDBN} will only send it
43637 if the target replies with @samp{TracepointSource} @xref{General
43638 Query Packets}, it makes both disconnected tracing and trace files
43639 much easier to use. Otherwise the user must be careful that the
43640 tracepoints in effect while looking at trace frames are identical to
43641 the ones in effect during the trace run; even a small discrepancy
43642 could cause @samp{tdump} not to work, or a particular trace frame not
43643 be found.
43644
43645 @item QTDV:@var{n}:@var{value}:@var{builtin}:@var{name}
43646 @cindex define trace state variable, remote request
43647 @cindex @samp{QTDV} packet
43648 Create a new trace state variable, number @var{n}, with an initial
43649 value of @var{value}, which is a 64-bit signed integer. Both @var{n}
43650 and @var{value} are encoded as hexadecimal values. @value{GDBN} has
43651 the option of not using this packet for initial values of zero; the
43652 target should simply create the trace state variables as they are
43653 mentioned in expressions. The value @var{builtin} should be 1 (one)
43654 if the trace state variable is builtin and 0 (zero) if it is not builtin.
43655 @value{GDBN} only sets @var{builtin} to 1 if a previous @samp{qTfV} or
43656 @samp{qTsV} packet had it set. The contents of @var{name} is the
43657 hex-encoded name (without the leading @samp{$}) of the trace state
43658 variable.
43659
43660 @item QTFrame:@var{n}
43661 @cindex @samp{QTFrame} packet
43662 Select the @var{n}'th tracepoint frame from the buffer, and use the
43663 register and memory contents recorded there to answer subsequent
43664 request packets from @value{GDBN}.
43665
43666 A successful reply from the stub indicates that the stub has found the
43667 requested frame. The response is a series of parts, concatenated
43668 without separators, describing the frame we selected. Each part has
43669 one of the following forms:
43670
43671 @table @samp
43672 @item F @var{f}
43673 The selected frame is number @var{n} in the trace frame buffer;
43674 @var{f} is a hexadecimal number. If @var{f} is @samp{-1}, then there
43675 was no frame matching the criteria in the request packet.
43676
43677 @item T @var{t}
43678 The selected trace frame records a hit of tracepoint number @var{t};
43679 @var{t} is a hexadecimal number.
43680
43681 @end table
43682
43683 @item QTFrame:pc:@var{addr}
43684 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43685 currently selected frame whose PC is @var{addr};
43686 @var{addr} is a hexadecimal number.
43687
43688 @item QTFrame:tdp:@var{t}
43689 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43690 currently selected frame that is a hit of tracepoint @var{t}; @var{t}
43691 is a hexadecimal number.
43692
43693 @item QTFrame:range:@var{start}:@var{end}
43694 Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43695 currently selected frame whose PC is between @var{start} (inclusive)
43696 and @var{end} (inclusive); @var{start} and @var{end} are hexadecimal
43697 numbers.
43698
43699 @item QTFrame:outside:@var{start}:@var{end}
43700 Like @samp{QTFrame:range:@var{start}:@var{end}}, but select the first
43701 frame @emph{outside} the given range of addresses (exclusive).
43702
43703 @item qTMinFTPILen
43704 @cindex @samp{qTMinFTPILen} packet
43705 This packet requests the minimum length of instruction at which a fast
43706 tracepoint (@pxref{Set Tracepoints}) may be placed. For instance, on
43707 the 32-bit x86 architecture, it is possible to use a 4-byte jump, but
43708 it depends on the target system being able to create trampolines in
43709 the first 64K of memory, which might or might not be possible for that
43710 system. So the reply to this packet will be 4 if it is able to
43711 arrange for that.
43712
43713 Replies:
43714
43715 @table @samp
43716 @item 0
43717 The minimum instruction length is currently unknown.
43718 @item @var{length}
43719 The minimum instruction length is @var{length}, where @var{length}
43720 is a hexadecimal number greater or equal to 1. A reply
43721 of 1 means that a fast tracepoint may be placed on any instruction
43722 regardless of size.
43723 @item E
43724 An error has occurred.
43725 @item @w{}
43726 An empty reply indicates that the request is not supported by the stub.
43727 @end table
43728
43729 @item QTStart
43730 @cindex @samp{QTStart} packet
43731 Begin the tracepoint experiment. Begin collecting data from
43732 tracepoint hits in the trace frame buffer. This packet supports the
43733 @samp{qRelocInsn} reply (@pxref{Tracepoint Packets,,Relocate
43734 instruction reply packet}).
43735
43736 @item QTStop
43737 @cindex @samp{QTStop} packet
43738 End the tracepoint experiment. Stop collecting trace frames.
43739
43740 @item QTEnable:@var{n}:@var{addr}
43741 @anchor{QTEnable}
43742 @cindex @samp{QTEnable} packet
43743 Enable tracepoint @var{n} at address @var{addr} in a started tracepoint
43744 experiment. If the tracepoint was previously disabled, then collection
43745 of data from it will resume.
43746
43747 @item QTDisable:@var{n}:@var{addr}
43748 @anchor{QTDisable}
43749 @cindex @samp{QTDisable} packet
43750 Disable tracepoint @var{n} at address @var{addr} in a started tracepoint
43751 experiment. No more data will be collected from the tracepoint unless
43752 @samp{QTEnable:@var{n}:@var{addr}} is subsequently issued.
43753
43754 @item QTinit
43755 @cindex @samp{QTinit} packet
43756 Clear the table of tracepoints, and empty the trace frame buffer.
43757
43758 @item QTro:@var{start1},@var{end1}:@var{start2},@var{end2}:@dots{}
43759 @cindex @samp{QTro} packet
43760 Establish the given ranges of memory as ``transparent''. The stub
43761 will answer requests for these ranges from memory's current contents,
43762 if they were not collected as part of the tracepoint hit.
43763
43764 @value{GDBN} uses this to mark read-only regions of memory, like those
43765 containing program code. Since these areas never change, they should
43766 still have the same contents they did when the tracepoint was hit, so
43767 there's no reason for the stub to refuse to provide their contents.
43768
43769 @item QTDisconnected:@var{value}
43770 @cindex @samp{QTDisconnected} packet
43771 Set the choice to what to do with the tracing run when @value{GDBN}
43772 disconnects from the target. A @var{value} of 1 directs the target to
43773 continue the tracing run, while 0 tells the target to stop tracing if
43774 @value{GDBN} is no longer in the picture.
43775
43776 @item qTStatus
43777 @cindex @samp{qTStatus} packet
43778 Ask the stub if there is a trace experiment running right now.
43779
43780 The reply has the form:
43781
43782 @table @samp
43783
43784 @item T@var{running}@r{[};@var{field}@r{]}@dots{}
43785 @var{running} is a single digit @code{1} if the trace is presently
43786 running, or @code{0} if not. It is followed by semicolon-separated
43787 optional fields that an agent may use to report additional status.
43788
43789 @end table
43790
43791 If the trace is not running, the agent may report any of several
43792 explanations as one of the optional fields:
43793
43794 @table @samp
43795
43796 @item tnotrun:0
43797 No trace has been run yet.
43798
43799 @item tstop[:@var{text}]:0
43800 The trace was stopped by a user-originated stop command. The optional
43801 @var{text} field is a user-supplied string supplied as part of the
43802 stop command (for instance, an explanation of why the trace was
43803 stopped manually). It is hex-encoded.
43804
43805 @item tfull:0
43806 The trace stopped because the trace buffer filled up.
43807
43808 @item tdisconnected:0
43809 The trace stopped because @value{GDBN} disconnected from the target.
43810
43811 @item tpasscount:@var{tpnum}
43812 The trace stopped because tracepoint @var{tpnum} exceeded its pass count.
43813
43814 @item terror:@var{text}:@var{tpnum}
43815 The trace stopped because tracepoint @var{tpnum} had an error. The
43816 string @var{text} is available to describe the nature of the error
43817 (for instance, a divide by zero in the condition expression); it
43818 is hex encoded.
43819
43820 @item tunknown:0
43821 The trace stopped for some other reason.
43822
43823 @end table
43824
43825 Additional optional fields supply statistical and other information.
43826 Although not required, they are extremely useful for users monitoring
43827 the progress of a trace run. If a trace has stopped, and these
43828 numbers are reported, they must reflect the state of the just-stopped
43829 trace.
43830
43831 @table @samp
43832
43833 @item tframes:@var{n}
43834 The number of trace frames in the buffer.
43835
43836 @item tcreated:@var{n}
43837 The total number of trace frames created during the run. This may
43838 be larger than the trace frame count, if the buffer is circular.
43839
43840 @item tsize:@var{n}
43841 The total size of the trace buffer, in bytes.
43842
43843 @item tfree:@var{n}
43844 The number of bytes still unused in the buffer.
43845
43846 @item circular:@var{n}
43847 The value of the circular trace buffer flag. @code{1} means that the
43848 trace buffer is circular and old trace frames will be discarded if
43849 necessary to make room, @code{0} means that the trace buffer is linear
43850 and may fill up.
43851
43852 @item disconn:@var{n}
43853 The value of the disconnected tracing flag. @code{1} means that
43854 tracing will continue after @value{GDBN} disconnects, @code{0} means
43855 that the trace run will stop.
43856
43857 @end table
43858
43859 @item qTP:@var{tp}:@var{addr}
43860 @cindex tracepoint status, remote request
43861 @cindex @samp{qTP} packet
43862 Ask the stub for the current state of tracepoint number @var{tp} at
43863 address @var{addr}.
43864
43865 Replies:
43866 @table @samp
43867 @item V@var{hits}:@var{usage}
43868 The tracepoint has been hit @var{hits} times so far during the trace
43869 run, and accounts for @var{usage} in the trace buffer. Note that
43870 @code{while-stepping} steps are not counted as separate hits, but the
43871 steps' space consumption is added into the usage number.
43872
43873 @end table
43874
43875 @item qTV:@var{var}
43876 @cindex trace state variable value, remote request
43877 @cindex @samp{qTV} packet
43878 Ask the stub for the value of the trace state variable number @var{var}.
43879
43880 Replies:
43881 @table @samp
43882 @item V@var{value}
43883 The value of the variable is @var{value}. This will be the current
43884 value of the variable if the user is examining a running target, or a
43885 saved value if the variable was collected in the trace frame that the
43886 user is looking at. Note that multiple requests may result in
43887 different reply values, such as when requesting values while the
43888 program is running.
43889
43890 @item U
43891 The value of the variable is unknown. This would occur, for example,
43892 if the user is examining a trace frame in which the requested variable
43893 was not collected.
43894 @end table
43895
43896 @item qTfP
43897 @cindex @samp{qTfP} packet
43898 @itemx qTsP
43899 @cindex @samp{qTsP} packet
43900 These packets request data about tracepoints that are being used by
43901 the target. @value{GDBN} sends @code{qTfP} to get the first piece
43902 of data, and multiple @code{qTsP} to get additional pieces. Replies
43903 to these packets generally take the form of the @code{QTDP} packets
43904 that define tracepoints. (FIXME add detailed syntax)
43905
43906 @item qTfV
43907 @cindex @samp{qTfV} packet
43908 @itemx qTsV
43909 @cindex @samp{qTsV} packet
43910 These packets request data about trace state variables that are on the
43911 target. @value{GDBN} sends @code{qTfV} to get the first vari of data,
43912 and multiple @code{qTsV} to get additional variables. Replies to
43913 these packets follow the syntax of the @code{QTDV} packets that define
43914 trace state variables.
43915
43916 @item qTfSTM
43917 @itemx qTsSTM
43918 @anchor{qTfSTM}
43919 @anchor{qTsSTM}
43920 @cindex @samp{qTfSTM} packet
43921 @cindex @samp{qTsSTM} packet
43922 These packets request data about static tracepoint markers that exist
43923 in the target program. @value{GDBN} sends @code{qTfSTM} to get the
43924 first piece of data, and multiple @code{qTsSTM} to get additional
43925 pieces. Replies to these packets take the following form:
43926
43927 Reply:
43928 @table @samp
43929 @item m @var{address}:@var{id}:@var{extra}
43930 A single marker
43931 @item m @var{address}:@var{id}:@var{extra},@var{address}:@var{id}:@var{extra}@dots{}
43932 a comma-separated list of markers
43933 @item l
43934 (lower case letter @samp{L}) denotes end of list.
43935 @item E @var{nn}
43936 An error occurred. The error number @var{nn} is given as hex digits.
43937 @item @w{}
43938 An empty reply indicates that the request is not supported by the
43939 stub.
43940 @end table
43941
43942 The @var{address} is encoded in hex;
43943 @var{id} and @var{extra} are strings encoded in hex.
43944
43945 In response to each query, the target will reply with a list of one or
43946 more markers, separated by commas. @value{GDBN} will respond to each
43947 reply with a request for more markers (using the @samp{qs} form of the
43948 query), until the target responds with @samp{l} (lower-case ell, for
43949 @dfn{last}).
43950
43951 @item qTSTMat:@var{address}
43952 @anchor{qTSTMat}
43953 @cindex @samp{qTSTMat} packet
43954 This packets requests data about static tracepoint markers in the
43955 target program at @var{address}. Replies to this packet follow the
43956 syntax of the @samp{qTfSTM} and @code{qTsSTM} packets that list static
43957 tracepoint markers.
43958
43959 @item QTSave:@var{filename}
43960 @cindex @samp{QTSave} packet
43961 This packet directs the target to save trace data to the file name
43962 @var{filename} in the target's filesystem. The @var{filename} is encoded
43963 as a hex string; the interpretation of the file name (relative vs
43964 absolute, wild cards, etc) is up to the target.
43965
43966 @item qTBuffer:@var{offset},@var{len}
43967 @cindex @samp{qTBuffer} packet
43968 Return up to @var{len} bytes of the current contents of trace buffer,
43969 starting at @var{offset}. The trace buffer is treated as if it were
43970 a contiguous collection of traceframes, as per the trace file format.
43971 The reply consists as many hex-encoded bytes as the target can deliver
43972 in a packet; it is not an error to return fewer than were asked for.
43973 A reply consisting of just @code{l} indicates that no bytes are
43974 available.
43975
43976 @item QTBuffer:circular:@var{value}
43977 This packet directs the target to use a circular trace buffer if
43978 @var{value} is 1, or a linear buffer if the value is 0.
43979
43980 @item QTBuffer:size:@var{size}
43981 @anchor{QTBuffer-size}
43982 @cindex @samp{QTBuffer size} packet
43983 This packet directs the target to make the trace buffer be of size
43984 @var{size} if possible. A value of @code{-1} tells the target to
43985 use whatever size it prefers.
43986
43987 @item QTNotes:@r{[}@var{type}:@var{text}@r{]}@r{[};@var{type}:@var{text}@r{]}@dots{}
43988 @cindex @samp{QTNotes} packet
43989 This packet adds optional textual notes to the trace run. Allowable
43990 types include @code{user}, @code{notes}, and @code{tstop}, the
43991 @var{text} fields are arbitrary strings, hex-encoded.
43992
43993 @end table
43994
43995 @subsection Relocate instruction reply packet
43996 When installing fast tracepoints in memory, the target may need to
43997 relocate the instruction currently at the tracepoint address to a
43998 different address in memory. For most instructions, a simple copy is
43999 enough, but, for example, call instructions that implicitly push the
44000 return address on the stack, and relative branches or other
44001 PC-relative instructions require offset adjustment, so that the effect
44002 of executing the instruction at a different address is the same as if
44003 it had executed in the original location.
44004
44005 In response to several of the tracepoint packets, the target may also
44006 respond with a number of intermediate @samp{qRelocInsn} request
44007 packets before the final result packet, to have @value{GDBN} handle
44008 this relocation operation. If a packet supports this mechanism, its
44009 documentation will explicitly say so. See for example the above
44010 descriptions for the @samp{QTStart} and @samp{QTDP} packets. The
44011 format of the request is:
44012
44013 @table @samp
44014 @item qRelocInsn:@var{from};@var{to}
44015
44016 This requests @value{GDBN} to copy instruction at address @var{from}
44017 to address @var{to}, possibly adjusted so that executing the
44018 instruction at @var{to} has the same effect as executing it at
44019 @var{from}. @value{GDBN} writes the adjusted instruction to target
44020 memory starting at @var{to}.
44021 @end table
44022
44023 Replies:
44024 @table @samp
44025 @item qRelocInsn:@var{adjusted_size}
44026 Informs the stub the relocation is complete. The @var{adjusted_size} is
44027 the length in bytes of resulting relocated instruction sequence.
44028 @item E @var{NN}
44029 A badly formed request was detected, or an error was encountered while
44030 relocating the instruction.
44031 @end table
44032
44033 @node Host I/O Packets
44034 @section Host I/O Packets
44035 @cindex Host I/O, remote protocol
44036 @cindex file transfer, remote protocol
44037
44038 The @dfn{Host I/O} packets allow @value{GDBN} to perform I/O
44039 operations on the far side of a remote link. For example, Host I/O is
44040 used to upload and download files to a remote target with its own
44041 filesystem. Host I/O uses the same constant values and data structure
44042 layout as the target-initiated File-I/O protocol. However, the
44043 Host I/O packets are structured differently. The target-initiated
44044 protocol relies on target memory to store parameters and buffers.
44045 Host I/O requests are initiated by @value{GDBN}, and the
44046 target's memory is not involved. @xref{File-I/O Remote Protocol
44047 Extension}, for more details on the target-initiated protocol.
44048
44049 The Host I/O request packets all encode a single operation along with
44050 its arguments. They have this format:
44051
44052 @table @samp
44053
44054 @item vFile:@var{operation}: @var{parameter}@dots{}
44055 @var{operation} is the name of the particular request; the target
44056 should compare the entire packet name up to the second colon when checking
44057 for a supported operation. The format of @var{parameter} depends on
44058 the operation. Numbers are always passed in hexadecimal. Negative
44059 numbers have an explicit minus sign (i.e.@: two's complement is not
44060 used). Strings (e.g.@: filenames) are encoded as a series of
44061 hexadecimal bytes. The last argument to a system call may be a
44062 buffer of escaped binary data (@pxref{Binary Data}).
44063
44064 @end table
44065
44066 The valid responses to Host I/O packets are:
44067
44068 @table @samp
44069
44070 @item F @var{result} [, @var{errno}] [; @var{attachment}]
44071 @var{result} is the integer value returned by this operation, usually
44072 non-negative for success and -1 for errors. If an error has occured,
44073 @var{errno} will be included in the result specifying a
44074 value defined by the File-I/O protocol (@pxref{Errno Values}). For
44075 operations which return data, @var{attachment} supplies the data as a
44076 binary buffer. Binary buffers in response packets are escaped in the
44077 normal way (@pxref{Binary Data}). See the individual packet
44078 documentation for the interpretation of @var{result} and
44079 @var{attachment}.
44080
44081 @item @w{}
44082 An empty response indicates that this operation is not recognized.
44083
44084 @end table
44085
44086 These are the supported Host I/O operations:
44087
44088 @table @samp
44089 @item vFile:open: @var{filename}, @var{flags}, @var{mode}
44090 Open a file at @var{filename} and return a file descriptor for it, or
44091 return -1 if an error occurs. The @var{filename} is a string,
44092 @var{flags} is an integer indicating a mask of open flags
44093 (@pxref{Open Flags}), and @var{mode} is an integer indicating a mask
44094 of mode bits to use if the file is created (@pxref{mode_t Values}).
44095 @xref{open}, for details of the open flags and mode values.
44096
44097 @item vFile:close: @var{fd}
44098 Close the open file corresponding to @var{fd} and return 0, or
44099 -1 if an error occurs.
44100
44101 @item vFile:pread: @var{fd}, @var{count}, @var{offset}
44102 Read data from the open file corresponding to @var{fd}. Up to
44103 @var{count} bytes will be read from the file, starting at @var{offset}
44104 relative to the start of the file. The target may read fewer bytes;
44105 common reasons include packet size limits and an end-of-file
44106 condition. The number of bytes read is returned. Zero should only be
44107 returned for a successful read at the end of the file, or if
44108 @var{count} was zero.
44109
44110 The data read should be returned as a binary attachment on success.
44111 If zero bytes were read, the response should include an empty binary
44112 attachment (i.e.@: a trailing semicolon). The return value is the
44113 number of target bytes read; the binary attachment may be longer if
44114 some characters were escaped.
44115
44116 @item vFile:pwrite: @var{fd}, @var{offset}, @var{data}
44117 Write @var{data} (a binary buffer) to the open file corresponding
44118 to @var{fd}. Start the write at @var{offset} from the start of the
44119 file. Unlike many @code{write} system calls, there is no
44120 separate @var{count} argument; the length of @var{data} in the
44121 packet is used. @samp{vFile:pwrite} returns the number of bytes written,
44122 which may be shorter than the length of @var{data}, or -1 if an
44123 error occurred.
44124
44125 @item vFile:fstat: @var{fd}
44126 Get information about the open file corresponding to @var{fd}.
44127 On success the information is returned as a binary attachment
44128 and the return value is the size of this attachment in bytes.
44129 If an error occurs the return value is -1. The format of the
44130 returned binary attachment is as described in @ref{struct stat}.
44131
44132 @item vFile:unlink: @var{filename}
44133 Delete the file at @var{filename} on the target. Return 0,
44134 or -1 if an error occurs. The @var{filename} is a string.
44135
44136 @item vFile:readlink: @var{filename}
44137 Read value of symbolic link @var{filename} on the target. Return
44138 the number of bytes read, or -1 if an error occurs.
44139
44140 The data read should be returned as a binary attachment on success.
44141 If zero bytes were read, the response should include an empty binary
44142 attachment (i.e.@: a trailing semicolon). The return value is the
44143 number of target bytes read; the binary attachment may be longer if
44144 some characters were escaped.
44145
44146 @item vFile:setfs: @var{pid}
44147 Select the filesystem on which @code{vFile} operations with
44148 @var{filename} arguments will operate. This is required for
44149 @value{GDBN} to be able to access files on remote targets where
44150 the remote stub does not share a common filesystem with the
44151 inferior(s).
44152
44153 If @var{pid} is nonzero, select the filesystem as seen by process
44154 @var{pid}. If @var{pid} is zero, select the filesystem as seen by
44155 the remote stub. Return 0 on success, or -1 if an error occurs.
44156 If @code{vFile:setfs:} indicates success, the selected filesystem
44157 remains selected until the next successful @code{vFile:setfs:}
44158 operation.
44159
44160 @end table
44161
44162 @node Interrupts
44163 @section Interrupts
44164 @cindex interrupts (remote protocol)
44165 @anchor{interrupting remote targets}
44166
44167 In all-stop mode, when a program on the remote target is running,
44168 @value{GDBN} may attempt to interrupt it by sending a @samp{Ctrl-C},
44169 @code{BREAK} or a @code{BREAK} followed by @code{g}, control of which
44170 is specified via @value{GDBN}'s @samp{interrupt-sequence}.
44171
44172 The precise meaning of @code{BREAK} is defined by the transport
44173 mechanism and may, in fact, be undefined. @value{GDBN} does not
44174 currently define a @code{BREAK} mechanism for any of the network
44175 interfaces except for TCP, in which case @value{GDBN} sends the
44176 @code{telnet} BREAK sequence.
44177
44178 @samp{Ctrl-C}, on the other hand, is defined and implemented for all
44179 transport mechanisms. It is represented by sending the single byte
44180 @code{0x03} without any of the usual packet overhead described in
44181 the Overview section (@pxref{Overview}). When a @code{0x03} byte is
44182 transmitted as part of a packet, it is considered to be packet data
44183 and does @emph{not} represent an interrupt. E.g., an @samp{X} packet
44184 (@pxref{X packet}), used for binary downloads, may include an unescaped
44185 @code{0x03} as part of its packet.
44186
44187 @code{BREAK} followed by @code{g} is also known as Magic SysRq g.
44188 When Linux kernel receives this sequence from serial port,
44189 it stops execution and connects to gdb.
44190
44191 In non-stop mode, because packet resumptions are asynchronous
44192 (@pxref{vCont packet}), @value{GDBN} is always free to send a remote
44193 command to the remote stub, even when the target is running. For that
44194 reason, @value{GDBN} instead sends a regular packet (@pxref{vCtrlC
44195 packet}) with the usual packet framing instead of the single byte
44196 @code{0x03}.
44197
44198 Stubs are not required to recognize these interrupt mechanisms and the
44199 precise meaning associated with receipt of the interrupt is
44200 implementation defined. If the target supports debugging of multiple
44201 threads and/or processes, it should attempt to interrupt all
44202 currently-executing threads and processes.
44203 If the stub is successful at interrupting the
44204 running program, it should send one of the stop
44205 reply packets (@pxref{Stop Reply Packets}) to @value{GDBN} as a result
44206 of successfully stopping the program in all-stop mode, and a stop reply
44207 for each stopped thread in non-stop mode.
44208 Interrupts received while the
44209 program is stopped are queued and the program will be interrupted when
44210 it is resumed next time.
44211
44212 @node Notification Packets
44213 @section Notification Packets
44214 @cindex notification packets
44215 @cindex packets, notification
44216
44217 The @value{GDBN} remote serial protocol includes @dfn{notifications},
44218 packets that require no acknowledgment. Both the GDB and the stub
44219 may send notifications (although the only notifications defined at
44220 present are sent by the stub). Notifications carry information
44221 without incurring the round-trip latency of an acknowledgment, and so
44222 are useful for low-impact communications where occasional packet loss
44223 is not a problem.
44224
44225 A notification packet has the form @samp{% @var{data} #
44226 @var{checksum}}, where @var{data} is the content of the notification,
44227 and @var{checksum} is a checksum of @var{data}, computed and formatted
44228 as for ordinary @value{GDBN} packets. A notification's @var{data}
44229 never contains @samp{$}, @samp{%} or @samp{#} characters. Upon
44230 receiving a notification, the recipient sends no @samp{+} or @samp{-}
44231 to acknowledge the notification's receipt or to report its corruption.
44232
44233 Every notification's @var{data} begins with a name, which contains no
44234 colon characters, followed by a colon character.
44235
44236 Recipients should silently ignore corrupted notifications and
44237 notifications they do not understand. Recipients should restart
44238 timeout periods on receipt of a well-formed notification, whether or
44239 not they understand it.
44240
44241 Senders should only send the notifications described here when this
44242 protocol description specifies that they are permitted. In the
44243 future, we may extend the protocol to permit existing notifications in
44244 new contexts; this rule helps older senders avoid confusing newer
44245 recipients.
44246
44247 (Older versions of @value{GDBN} ignore bytes received until they see
44248 the @samp{$} byte that begins an ordinary packet, so new stubs may
44249 transmit notifications without fear of confusing older clients. There
44250 are no notifications defined for @value{GDBN} to send at the moment, but we
44251 assume that most older stubs would ignore them, as well.)
44252
44253 Each notification is comprised of three parts:
44254 @table @samp
44255 @item @var{name}:@var{event}
44256 The notification packet is sent by the side that initiates the
44257 exchange (currently, only the stub does that), with @var{event}
44258 carrying the specific information about the notification, and
44259 @var{name} specifying the name of the notification.
44260 @item @var{ack}
44261 The acknowledge sent by the other side, usually @value{GDBN}, to
44262 acknowledge the exchange and request the event.
44263 @end table
44264
44265 The purpose of an asynchronous notification mechanism is to report to
44266 @value{GDBN} that something interesting happened in the remote stub.
44267
44268 The remote stub may send notification @var{name}:@var{event}
44269 at any time, but @value{GDBN} acknowledges the notification when
44270 appropriate. The notification event is pending before @value{GDBN}
44271 acknowledges. Only one notification at a time may be pending; if
44272 additional events occur before @value{GDBN} has acknowledged the
44273 previous notification, they must be queued by the stub for later
44274 synchronous transmission in response to @var{ack} packets from
44275 @value{GDBN}. Because the notification mechanism is unreliable,
44276 the stub is permitted to resend a notification if it believes
44277 @value{GDBN} may not have received it.
44278
44279 Specifically, notifications may appear when @value{GDBN} is not
44280 otherwise reading input from the stub, or when @value{GDBN} is
44281 expecting to read a normal synchronous response or a
44282 @samp{+}/@samp{-} acknowledgment to a packet it has sent.
44283 Notification packets are distinct from any other communication from
44284 the stub so there is no ambiguity.
44285
44286 After receiving a notification, @value{GDBN} shall acknowledge it by
44287 sending a @var{ack} packet as a regular, synchronous request to the
44288 stub. Such acknowledgment is not required to happen immediately, as
44289 @value{GDBN} is permitted to send other, unrelated packets to the
44290 stub first, which the stub should process normally.
44291
44292 Upon receiving a @var{ack} packet, if the stub has other queued
44293 events to report to @value{GDBN}, it shall respond by sending a
44294 normal @var{event}. @value{GDBN} shall then send another @var{ack}
44295 packet to solicit further responses; again, it is permitted to send
44296 other, unrelated packets as well which the stub should process
44297 normally.
44298
44299 If the stub receives a @var{ack} packet and there are no additional
44300 @var{event} to report, the stub shall return an @samp{OK} response.
44301 At this point, @value{GDBN} has finished processing a notification
44302 and the stub has completed sending any queued events. @value{GDBN}
44303 won't accept any new notifications until the final @samp{OK} is
44304 received . If further notification events occur, the stub shall send
44305 a new notification, @value{GDBN} shall accept the notification, and
44306 the process shall be repeated.
44307
44308 The process of asynchronous notification can be illustrated by the
44309 following example:
44310 @smallexample
44311 <- @code{%Stop:T0505:98e7ffbf;04:4ce6ffbf;08:b1b6e54c;thread:p7526.7526;core:0;}
44312 @code{...}
44313 -> @code{vStopped}
44314 <- @code{T0505:68f37db7;04:40f37db7;08:63850408;thread:p7526.7528;core:0;}
44315 -> @code{vStopped}
44316 <- @code{T0505:68e3fdb6;04:40e3fdb6;08:63850408;thread:p7526.7529;core:0;}
44317 -> @code{vStopped}
44318 <- @code{OK}
44319 @end smallexample
44320
44321 The following notifications are defined:
44322 @multitable @columnfractions 0.12 0.12 0.38 0.38
44323
44324 @item Notification
44325 @tab Ack
44326 @tab Event
44327 @tab Description
44328
44329 @item Stop
44330 @tab vStopped
44331 @tab @var{reply}. The @var{reply} has the form of a stop reply, as
44332 described in @ref{Stop Reply Packets}. Refer to @ref{Remote Non-Stop},
44333 for information on how these notifications are acknowledged by
44334 @value{GDBN}.
44335 @tab Report an asynchronous stop event in non-stop mode.
44336
44337 @end multitable
44338
44339 @node Remote Non-Stop
44340 @section Remote Protocol Support for Non-Stop Mode
44341
44342 @value{GDBN}'s remote protocol supports non-stop debugging of
44343 multi-threaded programs, as described in @ref{Non-Stop Mode}. If the stub
44344 supports non-stop mode, it should report that to @value{GDBN} by including
44345 @samp{QNonStop+} in its @samp{qSupported} response (@pxref{qSupported}).
44346
44347 @value{GDBN} typically sends a @samp{QNonStop} packet only when
44348 establishing a new connection with the stub. Entering non-stop mode
44349 does not alter the state of any currently-running threads, but targets
44350 must stop all threads in any already-attached processes when entering
44351 all-stop mode. @value{GDBN} uses the @samp{?} packet as necessary to
44352 probe the target state after a mode change.
44353
44354 In non-stop mode, when an attached process encounters an event that
44355 would otherwise be reported with a stop reply, it uses the
44356 asynchronous notification mechanism (@pxref{Notification Packets}) to
44357 inform @value{GDBN}. In contrast to all-stop mode, where all threads
44358 in all processes are stopped when a stop reply is sent, in non-stop
44359 mode only the thread reporting the stop event is stopped. That is,
44360 when reporting a @samp{S} or @samp{T} response to indicate completion
44361 of a step operation, hitting a breakpoint, or a fault, only the
44362 affected thread is stopped; any other still-running threads continue
44363 to run. When reporting a @samp{W} or @samp{X} response, all running
44364 threads belonging to other attached processes continue to run.
44365
44366 In non-stop mode, the target shall respond to the @samp{?} packet as
44367 follows. First, any incomplete stop reply notification/@samp{vStopped}
44368 sequence in progress is abandoned. The target must begin a new
44369 sequence reporting stop events for all stopped threads, whether or not
44370 it has previously reported those events to @value{GDBN}. The first
44371 stop reply is sent as a synchronous reply to the @samp{?} packet, and
44372 subsequent stop replies are sent as responses to @samp{vStopped} packets
44373 using the mechanism described above. The target must not send
44374 asynchronous stop reply notifications until the sequence is complete.
44375 If all threads are running when the target receives the @samp{?} packet,
44376 or if the target is not attached to any process, it shall respond
44377 @samp{OK}.
44378
44379 If the stub supports non-stop mode, it should also support the
44380 @samp{swbreak} stop reason if software breakpoints are supported, and
44381 the @samp{hwbreak} stop reason if hardware breakpoints are supported
44382 (@pxref{swbreak stop reason}). This is because given the asynchronous
44383 nature of non-stop mode, between the time a thread hits a breakpoint
44384 and the time the event is finally processed by @value{GDBN}, the
44385 breakpoint may have already been removed from the target. Due to
44386 this, @value{GDBN} needs to be able to tell whether a trap stop was
44387 caused by a delayed breakpoint event, which should be ignored, as
44388 opposed to a random trap signal, which should be reported to the user.
44389 Note the @samp{swbreak} feature implies that the target is responsible
44390 for adjusting the PC when a software breakpoint triggers, if
44391 necessary, such as on the x86 architecture.
44392
44393 @node Packet Acknowledgment
44394 @section Packet Acknowledgment
44395
44396 @cindex acknowledgment, for @value{GDBN} remote
44397 @cindex packet acknowledgment, for @value{GDBN} remote
44398 By default, when either the host or the target machine receives a packet,
44399 the first response expected is an acknowledgment: either @samp{+} (to indicate
44400 the package was received correctly) or @samp{-} (to request retransmission).
44401 This mechanism allows the @value{GDBN} remote protocol to operate over
44402 unreliable transport mechanisms, such as a serial line.
44403
44404 In cases where the transport mechanism is itself reliable (such as a pipe or
44405 TCP connection), the @samp{+}/@samp{-} acknowledgments are redundant.
44406 It may be desirable to disable them in that case to reduce communication
44407 overhead, or for other reasons. This can be accomplished by means of the
44408 @samp{QStartNoAckMode} packet; @pxref{QStartNoAckMode}.
44409
44410 When in no-acknowledgment mode, neither the stub nor @value{GDBN} shall send or
44411 expect @samp{+}/@samp{-} protocol acknowledgments. The packet
44412 and response format still includes the normal checksum, as described in
44413 @ref{Overview}, but the checksum may be ignored by the receiver.
44414
44415 If the stub supports @samp{QStartNoAckMode} and prefers to operate in
44416 no-acknowledgment mode, it should report that to @value{GDBN}
44417 by including @samp{QStartNoAckMode+} in its response to @samp{qSupported};
44418 @pxref{qSupported}.
44419 If @value{GDBN} also supports @samp{QStartNoAckMode} and it has not been
44420 disabled via the @code{set remote noack-packet off} command
44421 (@pxref{Remote Configuration}),
44422 @value{GDBN} may then send a @samp{QStartNoAckMode} packet to the stub.
44423 Only then may the stub actually turn off packet acknowledgments.
44424 @value{GDBN} sends a final @samp{+} acknowledgment of the stub's @samp{OK}
44425 response, which can be safely ignored by the stub.
44426
44427 Note that @code{set remote noack-packet} command only affects negotiation
44428 between @value{GDBN} and the stub when subsequent connections are made;
44429 it does not affect the protocol acknowledgment state for any current
44430 connection.
44431 Since @samp{+}/@samp{-} acknowledgments are enabled by default when a
44432 new connection is established,
44433 there is also no protocol request to re-enable the acknowledgments
44434 for the current connection, once disabled.
44435
44436 @node Examples
44437 @section Examples
44438
44439 Example sequence of a target being re-started. Notice how the restart
44440 does not get any direct output:
44441
44442 @smallexample
44443 -> @code{R00}
44444 <- @code{+}
44445 @emph{target restarts}
44446 -> @code{?}
44447 <- @code{+}
44448 <- @code{T001:1234123412341234}
44449 -> @code{+}
44450 @end smallexample
44451
44452 Example sequence of a target being stepped by a single instruction:
44453
44454 @smallexample
44455 -> @code{G1445@dots{}}
44456 <- @code{+}
44457 -> @code{s}
44458 <- @code{+}
44459 @emph{time passes}
44460 <- @code{T001:1234123412341234}
44461 -> @code{+}
44462 -> @code{g}
44463 <- @code{+}
44464 <- @code{1455@dots{}}
44465 -> @code{+}
44466 @end smallexample
44467
44468 @node File-I/O Remote Protocol Extension
44469 @section File-I/O Remote Protocol Extension
44470 @cindex File-I/O remote protocol extension
44471
44472 @menu
44473 * File-I/O Overview::
44474 * Protocol Basics::
44475 * The F Request Packet::
44476 * The F Reply Packet::
44477 * The Ctrl-C Message::
44478 * Console I/O::
44479 * List of Supported Calls::
44480 * Protocol-specific Representation of Datatypes::
44481 * Constants::
44482 * File-I/O Examples::
44483 @end menu
44484
44485 @node File-I/O Overview
44486 @subsection File-I/O Overview
44487 @cindex file-i/o overview
44488
44489 The @dfn{File I/O remote protocol extension} (short: File-I/O) allows the
44490 target to use the host's file system and console I/O to perform various
44491 system calls. System calls on the target system are translated into a
44492 remote protocol packet to the host system, which then performs the needed
44493 actions and returns a response packet to the target system.
44494 This simulates file system operations even on targets that lack file systems.
44495
44496 The protocol is defined to be independent of both the host and target systems.
44497 It uses its own internal representation of datatypes and values. Both
44498 @value{GDBN} and the target's @value{GDBN} stub are responsible for
44499 translating the system-dependent value representations into the internal
44500 protocol representations when data is transmitted.
44501
44502 The communication is synchronous. A system call is possible only when
44503 @value{GDBN} is waiting for a response from the @samp{C}, @samp{c}, @samp{S}
44504 or @samp{s} packets. While @value{GDBN} handles the request for a system call,
44505 the target is stopped to allow deterministic access to the target's
44506 memory. Therefore File-I/O is not interruptible by target signals. On
44507 the other hand, it is possible to interrupt File-I/O by a user interrupt
44508 (@samp{Ctrl-C}) within @value{GDBN}.
44509
44510 The target's request to perform a host system call does not finish
44511 the latest @samp{C}, @samp{c}, @samp{S} or @samp{s} action. That means,
44512 after finishing the system call, the target returns to continuing the
44513 previous activity (continue, step). No additional continue or step
44514 request from @value{GDBN} is required.
44515
44516 @smallexample
44517 (@value{GDBP}) continue
44518 <- target requests 'system call X'
44519 target is stopped, @value{GDBN} executes system call
44520 -> @value{GDBN} returns result
44521 ... target continues, @value{GDBN} returns to wait for the target
44522 <- target hits breakpoint and sends a Txx packet
44523 @end smallexample
44524
44525 The protocol only supports I/O on the console and to regular files on
44526 the host file system. Character or block special devices, pipes,
44527 named pipes, sockets or any other communication method on the host
44528 system are not supported by this protocol.
44529
44530 File I/O is not supported in non-stop mode.
44531
44532 @node Protocol Basics
44533 @subsection Protocol Basics
44534 @cindex protocol basics, file-i/o
44535
44536 The File-I/O protocol uses the @code{F} packet as the request as well
44537 as reply packet. Since a File-I/O system call can only occur when
44538 @value{GDBN} is waiting for a response from the continuing or stepping target,
44539 the File-I/O request is a reply that @value{GDBN} has to expect as a result
44540 of a previous @samp{C}, @samp{c}, @samp{S} or @samp{s} packet.
44541 This @code{F} packet contains all information needed to allow @value{GDBN}
44542 to call the appropriate host system call:
44543
44544 @itemize @bullet
44545 @item
44546 A unique identifier for the requested system call.
44547
44548 @item
44549 All parameters to the system call. Pointers are given as addresses
44550 in the target memory address space. Pointers to strings are given as
44551 pointer/length pair. Numerical values are given as they are.
44552 Numerical control flags are given in a protocol-specific representation.
44553
44554 @end itemize
44555
44556 At this point, @value{GDBN} has to perform the following actions.
44557
44558 @itemize @bullet
44559 @item
44560 If the parameters include pointer values to data needed as input to a
44561 system call, @value{GDBN} requests this data from the target with a
44562 standard @code{m} packet request. This additional communication has to be
44563 expected by the target implementation and is handled as any other @code{m}
44564 packet.
44565
44566 @item
44567 @value{GDBN} translates all value from protocol representation to host
44568 representation as needed. Datatypes are coerced into the host types.
44569
44570 @item
44571 @value{GDBN} calls the system call.
44572
44573 @item
44574 It then coerces datatypes back to protocol representation.
44575
44576 @item
44577 If the system call is expected to return data in buffer space specified
44578 by pointer parameters to the call, the data is transmitted to the
44579 target using a @code{M} or @code{X} packet. This packet has to be expected
44580 by the target implementation and is handled as any other @code{M} or @code{X}
44581 packet.
44582
44583 @end itemize
44584
44585 Eventually @value{GDBN} replies with another @code{F} packet which contains all
44586 necessary information for the target to continue. This at least contains
44587
44588 @itemize @bullet
44589 @item
44590 Return value.
44591
44592 @item
44593 @code{errno}, if has been changed by the system call.
44594
44595 @item
44596 ``Ctrl-C'' flag.
44597
44598 @end itemize
44599
44600 After having done the needed type and value coercion, the target continues
44601 the latest continue or step action.
44602
44603 @node The F Request Packet
44604 @subsection The @code{F} Request Packet
44605 @cindex file-i/o request packet
44606 @cindex @code{F} request packet
44607
44608 The @code{F} request packet has the following format:
44609
44610 @table @samp
44611 @item F@var{call-id},@var{parameter@dots{}}
44612
44613 @var{call-id} is the identifier to indicate the host system call to be called.
44614 This is just the name of the function.
44615
44616 @var{parameter@dots{}} are the parameters to the system call.
44617 Parameters are hexadecimal integer values, either the actual values in case
44618 of scalar datatypes, pointers to target buffer space in case of compound
44619 datatypes and unspecified memory areas, or pointer/length pairs in case
44620 of string parameters. These are appended to the @var{call-id} as a
44621 comma-delimited list. All values are transmitted in ASCII
44622 string representation, pointer/length pairs separated by a slash.
44623
44624 @end table
44625
44626
44627
44628 @node The F Reply Packet
44629 @subsection The @code{F} Reply Packet
44630 @cindex file-i/o reply packet
44631 @cindex @code{F} reply packet
44632
44633 The @code{F} reply packet has the following format:
44634
44635 @table @samp
44636
44637 @item F@var{retcode},@var{errno},@var{Ctrl-C flag};@var{call-specific attachment}
44638
44639 @var{retcode} is the return code of the system call as hexadecimal value.
44640
44641 @var{errno} is the @code{errno} set by the call, in protocol-specific
44642 representation.
44643 This parameter can be omitted if the call was successful.
44644
44645 @var{Ctrl-C flag} is only sent if the user requested a break. In this
44646 case, @var{errno} must be sent as well, even if the call was successful.
44647 The @var{Ctrl-C flag} itself consists of the character @samp{C}:
44648
44649 @smallexample
44650 F0,0,C
44651 @end smallexample
44652
44653 @noindent
44654 or, if the call was interrupted before the host call has been performed:
44655
44656 @smallexample
44657 F-1,4,C
44658 @end smallexample
44659
44660 @noindent
44661 assuming 4 is the protocol-specific representation of @code{EINTR}.
44662
44663 @end table
44664
44665
44666 @node The Ctrl-C Message
44667 @subsection The @samp{Ctrl-C} Message
44668 @cindex ctrl-c message, in file-i/o protocol
44669
44670 If the @samp{Ctrl-C} flag is set in the @value{GDBN}
44671 reply packet (@pxref{The F Reply Packet}),
44672 the target should behave as if it had
44673 gotten a break message. The meaning for the target is ``system call
44674 interrupted by @code{SIGINT}''. Consequentially, the target should actually stop
44675 (as with a break message) and return to @value{GDBN} with a @code{T02}
44676 packet.
44677
44678 It's important for the target to know in which
44679 state the system call was interrupted. There are two possible cases:
44680
44681 @itemize @bullet
44682 @item
44683 The system call hasn't been performed on the host yet.
44684
44685 @item
44686 The system call on the host has been finished.
44687
44688 @end itemize
44689
44690 These two states can be distinguished by the target by the value of the
44691 returned @code{errno}. If it's the protocol representation of @code{EINTR}, the system
44692 call hasn't been performed. This is equivalent to the @code{EINTR} handling
44693 on POSIX systems. In any other case, the target may presume that the
44694 system call has been finished --- successfully or not --- and should behave
44695 as if the break message arrived right after the system call.
44696
44697 @value{GDBN} must behave reliably. If the system call has not been called
44698 yet, @value{GDBN} may send the @code{F} reply immediately, setting @code{EINTR} as
44699 @code{errno} in the packet. If the system call on the host has been finished
44700 before the user requests a break, the full action must be finished by
44701 @value{GDBN}. This requires sending @code{M} or @code{X} packets as necessary.
44702 The @code{F} packet may only be sent when either nothing has happened
44703 or the full action has been completed.
44704
44705 @node Console I/O
44706 @subsection Console I/O
44707 @cindex console i/o as part of file-i/o
44708
44709 By default and if not explicitly closed by the target system, the file
44710 descriptors 0, 1 and 2 are connected to the @value{GDBN} console. Output
44711 on the @value{GDBN} console is handled as any other file output operation
44712 (@code{write(1, @dots{})} or @code{write(2, @dots{})}). Console input is handled
44713 by @value{GDBN} so that after the target read request from file descriptor
44714 0 all following typing is buffered until either one of the following
44715 conditions is met:
44716
44717 @itemize @bullet
44718 @item
44719 The user types @kbd{Ctrl-c}. The behaviour is as explained above, and the
44720 @code{read}
44721 system call is treated as finished.
44722
44723 @item
44724 The user presses @key{RET}. This is treated as end of input with a trailing
44725 newline.
44726
44727 @item
44728 The user types @kbd{Ctrl-d}. This is treated as end of input. No trailing
44729 character (neither newline nor @samp{Ctrl-D}) is appended to the input.
44730
44731 @end itemize
44732
44733 If the user has typed more characters than fit in the buffer given to
44734 the @code{read} call, the trailing characters are buffered in @value{GDBN} until
44735 either another @code{read(0, @dots{})} is requested by the target, or debugging
44736 is stopped at the user's request.
44737
44738
44739 @node List of Supported Calls
44740 @subsection List of Supported Calls
44741 @cindex list of supported file-i/o calls
44742
44743 @menu
44744 * open::
44745 * close::
44746 * read::
44747 * write::
44748 * lseek::
44749 * rename::
44750 * unlink::
44751 * stat/fstat::
44752 * gettimeofday::
44753 * isatty::
44754 * system::
44755 @end menu
44756
44757 @node open
44758 @unnumberedsubsubsec open
44759 @cindex open, file-i/o system call
44760
44761 @table @asis
44762 @item Synopsis:
44763 @smallexample
44764 int open(const char *pathname, int flags);
44765 int open(const char *pathname, int flags, mode_t mode);
44766 @end smallexample
44767
44768 @item Request:
44769 @samp{Fopen,@var{pathptr}/@var{len},@var{flags},@var{mode}}
44770
44771 @noindent
44772 @var{flags} is the bitwise @code{OR} of the following values:
44773
44774 @table @code
44775 @item O_CREAT
44776 If the file does not exist it will be created. The host
44777 rules apply as far as file ownership and time stamps
44778 are concerned.
44779
44780 @item O_EXCL
44781 When used with @code{O_CREAT}, if the file already exists it is
44782 an error and open() fails.
44783
44784 @item O_TRUNC
44785 If the file already exists and the open mode allows
44786 writing (@code{O_RDWR} or @code{O_WRONLY} is given) it will be
44787 truncated to zero length.
44788
44789 @item O_APPEND
44790 The file is opened in append mode.
44791
44792 @item O_RDONLY
44793 The file is opened for reading only.
44794
44795 @item O_WRONLY
44796 The file is opened for writing only.
44797
44798 @item O_RDWR
44799 The file is opened for reading and writing.
44800 @end table
44801
44802 @noindent
44803 Other bits are silently ignored.
44804
44805
44806 @noindent
44807 @var{mode} is the bitwise @code{OR} of the following values:
44808
44809 @table @code
44810 @item S_IRUSR
44811 User has read permission.
44812
44813 @item S_IWUSR
44814 User has write permission.
44815
44816 @item S_IRGRP
44817 Group has read permission.
44818
44819 @item S_IWGRP
44820 Group has write permission.
44821
44822 @item S_IROTH
44823 Others have read permission.
44824
44825 @item S_IWOTH
44826 Others have write permission.
44827 @end table
44828
44829 @noindent
44830 Other bits are silently ignored.
44831
44832
44833 @item Return value:
44834 @code{open} returns the new file descriptor or -1 if an error
44835 occurred.
44836
44837 @item Errors:
44838
44839 @table @code
44840 @item EEXIST
44841 @var{pathname} already exists and @code{O_CREAT} and @code{O_EXCL} were used.
44842
44843 @item EISDIR
44844 @var{pathname} refers to a directory.
44845
44846 @item EACCES
44847 The requested access is not allowed.
44848
44849 @item ENAMETOOLONG
44850 @var{pathname} was too long.
44851
44852 @item ENOENT
44853 A directory component in @var{pathname} does not exist.
44854
44855 @item ENODEV
44856 @var{pathname} refers to a device, pipe, named pipe or socket.
44857
44858 @item EROFS
44859 @var{pathname} refers to a file on a read-only filesystem and
44860 write access was requested.
44861
44862 @item EFAULT
44863 @var{pathname} is an invalid pointer value.
44864
44865 @item ENOSPC
44866 No space on device to create the file.
44867
44868 @item EMFILE
44869 The process already has the maximum number of files open.
44870
44871 @item ENFILE
44872 The limit on the total number of files open on the system
44873 has been reached.
44874
44875 @item EINTR
44876 The call was interrupted by the user.
44877 @end table
44878
44879 @end table
44880
44881 @node close
44882 @unnumberedsubsubsec close
44883 @cindex close, file-i/o system call
44884
44885 @table @asis
44886 @item Synopsis:
44887 @smallexample
44888 int close(int fd);
44889 @end smallexample
44890
44891 @item Request:
44892 @samp{Fclose,@var{fd}}
44893
44894 @item Return value:
44895 @code{close} returns zero on success, or -1 if an error occurred.
44896
44897 @item Errors:
44898
44899 @table @code
44900 @item EBADF
44901 @var{fd} isn't a valid open file descriptor.
44902
44903 @item EINTR
44904 The call was interrupted by the user.
44905 @end table
44906
44907 @end table
44908
44909 @node read
44910 @unnumberedsubsubsec read
44911 @cindex read, file-i/o system call
44912
44913 @table @asis
44914 @item Synopsis:
44915 @smallexample
44916 int read(int fd, void *buf, unsigned int count);
44917 @end smallexample
44918
44919 @item Request:
44920 @samp{Fread,@var{fd},@var{bufptr},@var{count}}
44921
44922 @item Return value:
44923 On success, the number of bytes read is returned.
44924 Zero indicates end of file. If count is zero, read
44925 returns zero as well. On error, -1 is returned.
44926
44927 @item Errors:
44928
44929 @table @code
44930 @item EBADF
44931 @var{fd} is not a valid file descriptor or is not open for
44932 reading.
44933
44934 @item EFAULT
44935 @var{bufptr} is an invalid pointer value.
44936
44937 @item EINTR
44938 The call was interrupted by the user.
44939 @end table
44940
44941 @end table
44942
44943 @node write
44944 @unnumberedsubsubsec write
44945 @cindex write, file-i/o system call
44946
44947 @table @asis
44948 @item Synopsis:
44949 @smallexample
44950 int write(int fd, const void *buf, unsigned int count);
44951 @end smallexample
44952
44953 @item Request:
44954 @samp{Fwrite,@var{fd},@var{bufptr},@var{count}}
44955
44956 @item Return value:
44957 On success, the number of bytes written are returned.
44958 Zero indicates nothing was written. On error, -1
44959 is returned.
44960
44961 @item Errors:
44962
44963 @table @code
44964 @item EBADF
44965 @var{fd} is not a valid file descriptor or is not open for
44966 writing.
44967
44968 @item EFAULT
44969 @var{bufptr} is an invalid pointer value.
44970
44971 @item EFBIG
44972 An attempt was made to write a file that exceeds the
44973 host-specific maximum file size allowed.
44974
44975 @item ENOSPC
44976 No space on device to write the data.
44977
44978 @item EINTR
44979 The call was interrupted by the user.
44980 @end table
44981
44982 @end table
44983
44984 @node lseek
44985 @unnumberedsubsubsec lseek
44986 @cindex lseek, file-i/o system call
44987
44988 @table @asis
44989 @item Synopsis:
44990 @smallexample
44991 long lseek (int fd, long offset, int flag);
44992 @end smallexample
44993
44994 @item Request:
44995 @samp{Flseek,@var{fd},@var{offset},@var{flag}}
44996
44997 @var{flag} is one of:
44998
44999 @table @code
45000 @item SEEK_SET
45001 The offset is set to @var{offset} bytes.
45002
45003 @item SEEK_CUR
45004 The offset is set to its current location plus @var{offset}
45005 bytes.
45006
45007 @item SEEK_END
45008 The offset is set to the size of the file plus @var{offset}
45009 bytes.
45010 @end table
45011
45012 @item Return value:
45013 On success, the resulting unsigned offset in bytes from
45014 the beginning of the file is returned. Otherwise, a
45015 value of -1 is returned.
45016
45017 @item Errors:
45018
45019 @table @code
45020 @item EBADF
45021 @var{fd} is not a valid open file descriptor.
45022
45023 @item ESPIPE
45024 @var{fd} is associated with the @value{GDBN} console.
45025
45026 @item EINVAL
45027 @var{flag} is not a proper value.
45028
45029 @item EINTR
45030 The call was interrupted by the user.
45031 @end table
45032
45033 @end table
45034
45035 @node rename
45036 @unnumberedsubsubsec rename
45037 @cindex rename, file-i/o system call
45038
45039 @table @asis
45040 @item Synopsis:
45041 @smallexample
45042 int rename(const char *oldpath, const char *newpath);
45043 @end smallexample
45044
45045 @item Request:
45046 @samp{Frename,@var{oldpathptr}/@var{len},@var{newpathptr}/@var{len}}
45047
45048 @item Return value:
45049 On success, zero is returned. On error, -1 is returned.
45050
45051 @item Errors:
45052
45053 @table @code
45054 @item EISDIR
45055 @var{newpath} is an existing directory, but @var{oldpath} is not a
45056 directory.
45057
45058 @item EEXIST
45059 @var{newpath} is a non-empty directory.
45060
45061 @item EBUSY
45062 @var{oldpath} or @var{newpath} is a directory that is in use by some
45063 process.
45064
45065 @item EINVAL
45066 An attempt was made to make a directory a subdirectory
45067 of itself.
45068
45069 @item ENOTDIR
45070 A component used as a directory in @var{oldpath} or new
45071 path is not a directory. Or @var{oldpath} is a directory
45072 and @var{newpath} exists but is not a directory.
45073
45074 @item EFAULT
45075 @var{oldpathptr} or @var{newpathptr} are invalid pointer values.
45076
45077 @item EACCES
45078 No access to the file or the path of the file.
45079
45080 @item ENAMETOOLONG
45081
45082 @var{oldpath} or @var{newpath} was too long.
45083
45084 @item ENOENT
45085 A directory component in @var{oldpath} or @var{newpath} does not exist.
45086
45087 @item EROFS
45088 The file is on a read-only filesystem.
45089
45090 @item ENOSPC
45091 The device containing the file has no room for the new
45092 directory entry.
45093
45094 @item EINTR
45095 The call was interrupted by the user.
45096 @end table
45097
45098 @end table
45099
45100 @node unlink
45101 @unnumberedsubsubsec unlink
45102 @cindex unlink, file-i/o system call
45103
45104 @table @asis
45105 @item Synopsis:
45106 @smallexample
45107 int unlink(const char *pathname);
45108 @end smallexample
45109
45110 @item Request:
45111 @samp{Funlink,@var{pathnameptr}/@var{len}}
45112
45113 @item Return value:
45114 On success, zero is returned. On error, -1 is returned.
45115
45116 @item Errors:
45117
45118 @table @code
45119 @item EACCES
45120 No access to the file or the path of the file.
45121
45122 @item EPERM
45123 The system does not allow unlinking of directories.
45124
45125 @item EBUSY
45126 The file @var{pathname} cannot be unlinked because it's
45127 being used by another process.
45128
45129 @item EFAULT
45130 @var{pathnameptr} is an invalid pointer value.
45131
45132 @item ENAMETOOLONG
45133 @var{pathname} was too long.
45134
45135 @item ENOENT
45136 A directory component in @var{pathname} does not exist.
45137
45138 @item ENOTDIR
45139 A component of the path is not a directory.
45140
45141 @item EROFS
45142 The file is on a read-only filesystem.
45143
45144 @item EINTR
45145 The call was interrupted by the user.
45146 @end table
45147
45148 @end table
45149
45150 @node stat/fstat
45151 @unnumberedsubsubsec stat/fstat
45152 @cindex fstat, file-i/o system call
45153 @cindex stat, file-i/o system call
45154
45155 @table @asis
45156 @item Synopsis:
45157 @smallexample
45158 int stat(const char *pathname, struct stat *buf);
45159 int fstat(int fd, struct stat *buf);
45160 @end smallexample
45161
45162 @item Request:
45163 @samp{Fstat,@var{pathnameptr}/@var{len},@var{bufptr}}@*
45164 @samp{Ffstat,@var{fd},@var{bufptr}}
45165
45166 @item Return value:
45167 On success, zero is returned. On error, -1 is returned.
45168
45169 @item Errors:
45170
45171 @table @code
45172 @item EBADF
45173 @var{fd} is not a valid open file.
45174
45175 @item ENOENT
45176 A directory component in @var{pathname} does not exist or the
45177 path is an empty string.
45178
45179 @item ENOTDIR
45180 A component of the path is not a directory.
45181
45182 @item EFAULT
45183 @var{pathnameptr} is an invalid pointer value.
45184
45185 @item EACCES
45186 No access to the file or the path of the file.
45187
45188 @item ENAMETOOLONG
45189 @var{pathname} was too long.
45190
45191 @item EINTR
45192 The call was interrupted by the user.
45193 @end table
45194
45195 @end table
45196
45197 @node gettimeofday
45198 @unnumberedsubsubsec gettimeofday
45199 @cindex gettimeofday, file-i/o system call
45200
45201 @table @asis
45202 @item Synopsis:
45203 @smallexample
45204 int gettimeofday(struct timeval *tv, void *tz);
45205 @end smallexample
45206
45207 @item Request:
45208 @samp{Fgettimeofday,@var{tvptr},@var{tzptr}}
45209
45210 @item Return value:
45211 On success, 0 is returned, -1 otherwise.
45212
45213 @item Errors:
45214
45215 @table @code
45216 @item EINVAL
45217 @var{tz} is a non-NULL pointer.
45218
45219 @item EFAULT
45220 @var{tvptr} and/or @var{tzptr} is an invalid pointer value.
45221 @end table
45222
45223 @end table
45224
45225 @node isatty
45226 @unnumberedsubsubsec isatty
45227 @cindex isatty, file-i/o system call
45228
45229 @table @asis
45230 @item Synopsis:
45231 @smallexample
45232 int isatty(int fd);
45233 @end smallexample
45234
45235 @item Request:
45236 @samp{Fisatty,@var{fd}}
45237
45238 @item Return value:
45239 Returns 1 if @var{fd} refers to the @value{GDBN} console, 0 otherwise.
45240
45241 @item Errors:
45242
45243 @table @code
45244 @item EINTR
45245 The call was interrupted by the user.
45246 @end table
45247
45248 @end table
45249
45250 Note that the @code{isatty} call is treated as a special case: it returns
45251 1 to the target if the file descriptor is attached
45252 to the @value{GDBN} console, 0 otherwise. Implementing through system calls
45253 would require implementing @code{ioctl} and would be more complex than
45254 needed.
45255
45256
45257 @node system
45258 @unnumberedsubsubsec system
45259 @cindex system, file-i/o system call
45260
45261 @table @asis
45262 @item Synopsis:
45263 @smallexample
45264 int system(const char *command);
45265 @end smallexample
45266
45267 @item Request:
45268 @samp{Fsystem,@var{commandptr}/@var{len}}
45269
45270 @item Return value:
45271 If @var{len} is zero, the return value indicates whether a shell is
45272 available. A zero return value indicates a shell is not available.
45273 For non-zero @var{len}, the value returned is -1 on error and the
45274 return status of the command otherwise. Only the exit status of the
45275 command is returned, which is extracted from the host's @code{system}
45276 return value by calling @code{WEXITSTATUS(retval)}. In case
45277 @file{/bin/sh} could not be executed, 127 is returned.
45278
45279 @item Errors:
45280
45281 @table @code
45282 @item EINTR
45283 The call was interrupted by the user.
45284 @end table
45285
45286 @end table
45287
45288 @value{GDBN} takes over the full task of calling the necessary host calls
45289 to perform the @code{system} call. The return value of @code{system} on
45290 the host is simplified before it's returned
45291 to the target. Any termination signal information from the child process
45292 is discarded, and the return value consists
45293 entirely of the exit status of the called command.
45294
45295 Due to security concerns, the @code{system} call is by default refused
45296 by @value{GDBN}. The user has to allow this call explicitly with the
45297 @code{set remote system-call-allowed 1} command.
45298
45299 @table @code
45300 @item set remote system-call-allowed
45301 @kindex set remote system-call-allowed
45302 Control whether to allow the @code{system} calls in the File I/O
45303 protocol for the remote target. The default is zero (disabled).
45304
45305 @item show remote system-call-allowed
45306 @kindex show remote system-call-allowed
45307 Show whether the @code{system} calls are allowed in the File I/O
45308 protocol.
45309 @end table
45310
45311 @node Protocol-specific Representation of Datatypes
45312 @subsection Protocol-specific Representation of Datatypes
45313 @cindex protocol-specific representation of datatypes, in file-i/o protocol
45314
45315 @menu
45316 * Integral Datatypes::
45317 * Pointer Values::
45318 * Memory Transfer::
45319 * struct stat::
45320 * struct timeval::
45321 @end menu
45322
45323 @node Integral Datatypes
45324 @unnumberedsubsubsec Integral Datatypes
45325 @cindex integral datatypes, in file-i/o protocol
45326
45327 The integral datatypes used in the system calls are @code{int},
45328 @code{unsigned int}, @code{long}, @code{unsigned long},
45329 @code{mode_t}, and @code{time_t}.
45330
45331 @code{int}, @code{unsigned int}, @code{mode_t} and @code{time_t} are
45332 implemented as 32 bit values in this protocol.
45333
45334 @code{long} and @code{unsigned long} are implemented as 64 bit types.
45335
45336 @xref{Limits}, for corresponding MIN and MAX values (similar to those
45337 in @file{limits.h}) to allow range checking on host and target.
45338
45339 @code{time_t} datatypes are defined as seconds since the Epoch.
45340
45341 All integral datatypes transferred as part of a memory read or write of a
45342 structured datatype e.g.@: a @code{struct stat} have to be given in big endian
45343 byte order.
45344
45345 @node Pointer Values
45346 @unnumberedsubsubsec Pointer Values
45347 @cindex pointer values, in file-i/o protocol
45348
45349 Pointers to target data are transmitted as they are. An exception
45350 is made for pointers to buffers for which the length isn't
45351 transmitted as part of the function call, namely strings. Strings
45352 are transmitted as a pointer/length pair, both as hex values, e.g.@:
45353
45354 @smallexample
45355 @code{1aaf/12}
45356 @end smallexample
45357
45358 @noindent
45359 which is a pointer to data of length 18 bytes at position 0x1aaf.
45360 The length is defined as the full string length in bytes, including
45361 the trailing null byte. For example, the string @code{"hello world"}
45362 at address 0x123456 is transmitted as
45363
45364 @smallexample
45365 @code{123456/d}
45366 @end smallexample
45367
45368 @node Memory Transfer
45369 @unnumberedsubsubsec Memory Transfer
45370 @cindex memory transfer, in file-i/o protocol
45371
45372 Structured data which is transferred using a memory read or write (for
45373 example, a @code{struct stat}) is expected to be in a protocol-specific format
45374 with all scalar multibyte datatypes being big endian. Translation to
45375 this representation needs to be done both by the target before the @code{F}
45376 packet is sent, and by @value{GDBN} before
45377 it transfers memory to the target. Transferred pointers to structured
45378 data should point to the already-coerced data at any time.
45379
45380
45381 @node struct stat
45382 @unnumberedsubsubsec struct stat
45383 @cindex struct stat, in file-i/o protocol
45384
45385 The buffer of type @code{struct stat} used by the target and @value{GDBN}
45386 is defined as follows:
45387
45388 @smallexample
45389 struct stat @{
45390 unsigned int st_dev; /* device */
45391 unsigned int st_ino; /* inode */
45392 mode_t st_mode; /* protection */
45393 unsigned int st_nlink; /* number of hard links */
45394 unsigned int st_uid; /* user ID of owner */
45395 unsigned int st_gid; /* group ID of owner */
45396 unsigned int st_rdev; /* device type (if inode device) */
45397 unsigned long st_size; /* total size, in bytes */
45398 unsigned long st_blksize; /* blocksize for filesystem I/O */
45399 unsigned long st_blocks; /* number of blocks allocated */
45400 time_t st_atime; /* time of last access */
45401 time_t st_mtime; /* time of last modification */
45402 time_t st_ctime; /* time of last change */
45403 @};
45404 @end smallexample
45405
45406 The integral datatypes conform to the definitions given in the
45407 appropriate section (see @ref{Integral Datatypes}, for details) so this
45408 structure is of size 64 bytes.
45409
45410 The values of several fields have a restricted meaning and/or
45411 range of values.
45412
45413 @table @code
45414
45415 @item st_dev
45416 A value of 0 represents a file, 1 the console.
45417
45418 @item st_ino
45419 No valid meaning for the target. Transmitted unchanged.
45420
45421 @item st_mode
45422 Valid mode bits are described in @ref{Constants}. Any other
45423 bits have currently no meaning for the target.
45424
45425 @item st_uid
45426 @itemx st_gid
45427 @itemx st_rdev
45428 No valid meaning for the target. Transmitted unchanged.
45429
45430 @item st_atime
45431 @itemx st_mtime
45432 @itemx st_ctime
45433 These values have a host and file system dependent
45434 accuracy. Especially on Windows hosts, the file system may not
45435 support exact timing values.
45436 @end table
45437
45438 The target gets a @code{struct stat} of the above representation and is
45439 responsible for coercing it to the target representation before
45440 continuing.
45441
45442 Note that due to size differences between the host, target, and protocol
45443 representations of @code{struct stat} members, these members could eventually
45444 get truncated on the target.
45445
45446 @node struct timeval
45447 @unnumberedsubsubsec struct timeval
45448 @cindex struct timeval, in file-i/o protocol
45449
45450 The buffer of type @code{struct timeval} used by the File-I/O protocol
45451 is defined as follows:
45452
45453 @smallexample
45454 struct timeval @{
45455 time_t tv_sec; /* second */
45456 long tv_usec; /* microsecond */
45457 @};
45458 @end smallexample
45459
45460 The integral datatypes conform to the definitions given in the
45461 appropriate section (see @ref{Integral Datatypes}, for details) so this
45462 structure is of size 8 bytes.
45463
45464 @node Constants
45465 @subsection Constants
45466 @cindex constants, in file-i/o protocol
45467
45468 The following values are used for the constants inside of the
45469 protocol. @value{GDBN} and target are responsible for translating these
45470 values before and after the call as needed.
45471
45472 @menu
45473 * Open Flags::
45474 * mode_t Values::
45475 * Errno Values::
45476 * Lseek Flags::
45477 * Limits::
45478 @end menu
45479
45480 @node Open Flags
45481 @unnumberedsubsubsec Open Flags
45482 @cindex open flags, in file-i/o protocol
45483
45484 All values are given in hexadecimal representation.
45485
45486 @smallexample
45487 O_RDONLY 0x0
45488 O_WRONLY 0x1
45489 O_RDWR 0x2
45490 O_APPEND 0x8
45491 O_CREAT 0x200
45492 O_TRUNC 0x400
45493 O_EXCL 0x800
45494 @end smallexample
45495
45496 @node mode_t Values
45497 @unnumberedsubsubsec mode_t Values
45498 @cindex mode_t values, in file-i/o protocol
45499
45500 All values are given in octal representation.
45501
45502 @smallexample
45503 S_IFREG 0100000
45504 S_IFDIR 040000
45505 S_IRUSR 0400
45506 S_IWUSR 0200
45507 S_IXUSR 0100
45508 S_IRGRP 040
45509 S_IWGRP 020
45510 S_IXGRP 010
45511 S_IROTH 04
45512 S_IWOTH 02
45513 S_IXOTH 01
45514 @end smallexample
45515
45516 @node Errno Values
45517 @unnumberedsubsubsec Errno Values
45518 @cindex errno values, in file-i/o protocol
45519
45520 All values are given in decimal representation.
45521
45522 @smallexample
45523 EPERM 1
45524 ENOENT 2
45525 EINTR 4
45526 EBADF 9
45527 EACCES 13
45528 EFAULT 14
45529 EBUSY 16
45530 EEXIST 17
45531 ENODEV 19
45532 ENOTDIR 20
45533 EISDIR 21
45534 EINVAL 22
45535 ENFILE 23
45536 EMFILE 24
45537 EFBIG 27
45538 ENOSPC 28
45539 ESPIPE 29
45540 EROFS 30
45541 ENAMETOOLONG 91
45542 EUNKNOWN 9999
45543 @end smallexample
45544
45545 @code{EUNKNOWN} is used as a fallback error value if a host system returns
45546 any error value not in the list of supported error numbers.
45547
45548 @node Lseek Flags
45549 @unnumberedsubsubsec Lseek Flags
45550 @cindex lseek flags, in file-i/o protocol
45551
45552 @smallexample
45553 SEEK_SET 0
45554 SEEK_CUR 1
45555 SEEK_END 2
45556 @end smallexample
45557
45558 @node Limits
45559 @unnumberedsubsubsec Limits
45560 @cindex limits, in file-i/o protocol
45561
45562 All values are given in decimal representation.
45563
45564 @smallexample
45565 INT_MIN -2147483648
45566 INT_MAX 2147483647
45567 UINT_MAX 4294967295
45568 LONG_MIN -9223372036854775808
45569 LONG_MAX 9223372036854775807
45570 ULONG_MAX 18446744073709551615
45571 @end smallexample
45572
45573 @node File-I/O Examples
45574 @subsection File-I/O Examples
45575 @cindex file-i/o examples
45576
45577 Example sequence of a write call, file descriptor 3, buffer is at target
45578 address 0x1234, 6 bytes should be written:
45579
45580 @smallexample
45581 <- @code{Fwrite,3,1234,6}
45582 @emph{request memory read from target}
45583 -> @code{m1234,6}
45584 <- XXXXXX
45585 @emph{return "6 bytes written"}
45586 -> @code{F6}
45587 @end smallexample
45588
45589 Example sequence of a read call, file descriptor 3, buffer is at target
45590 address 0x1234, 6 bytes should be read:
45591
45592 @smallexample
45593 <- @code{Fread,3,1234,6}
45594 @emph{request memory write to target}
45595 -> @code{X1234,6:XXXXXX}
45596 @emph{return "6 bytes read"}
45597 -> @code{F6}
45598 @end smallexample
45599
45600 Example sequence of a read call, call fails on the host due to invalid
45601 file descriptor (@code{EBADF}):
45602
45603 @smallexample
45604 <- @code{Fread,3,1234,6}
45605 -> @code{F-1,9}
45606 @end smallexample
45607
45608 Example sequence of a read call, user presses @kbd{Ctrl-c} before syscall on
45609 host is called:
45610
45611 @smallexample
45612 <- @code{Fread,3,1234,6}
45613 -> @code{F-1,4,C}
45614 <- @code{T02}
45615 @end smallexample
45616
45617 Example sequence of a read call, user presses @kbd{Ctrl-c} after syscall on
45618 host is called:
45619
45620 @smallexample
45621 <- @code{Fread,3,1234,6}
45622 -> @code{X1234,6:XXXXXX}
45623 <- @code{T02}
45624 @end smallexample
45625
45626 @node Library List Format
45627 @section Library List Format
45628 @cindex library list format, remote protocol
45629
45630 On some platforms, a dynamic loader (e.g.@: @file{ld.so}) runs in the
45631 same process as your application to manage libraries. In this case,
45632 @value{GDBN} can use the loader's symbol table and normal memory
45633 operations to maintain a list of shared libraries. On other
45634 platforms, the operating system manages loaded libraries.
45635 @value{GDBN} can not retrieve the list of currently loaded libraries
45636 through memory operations, so it uses the @samp{qXfer:libraries:read}
45637 packet (@pxref{qXfer library list read}) instead. The remote stub
45638 queries the target's operating system and reports which libraries
45639 are loaded.
45640
45641 The @samp{qXfer:libraries:read} packet returns an XML document which
45642 lists loaded libraries and their offsets. Each library has an
45643 associated name and one or more segment or section base addresses,
45644 which report where the library was loaded in memory.
45645
45646 For the common case of libraries that are fully linked binaries, the
45647 library should have a list of segments. If the target supports
45648 dynamic linking of a relocatable object file, its library XML element
45649 should instead include a list of allocated sections. The segment or
45650 section bases are start addresses, not relocation offsets; they do not
45651 depend on the library's link-time base addresses.
45652
45653 @value{GDBN} must be linked with the Expat library to support XML
45654 library lists. @xref{Expat}.
45655
45656 A simple memory map, with one loaded library relocated by a single
45657 offset, looks like this:
45658
45659 @smallexample
45660 <library-list>
45661 <library name="/lib/libc.so.6">
45662 <segment address="0x10000000"/>
45663 </library>
45664 </library-list>
45665 @end smallexample
45666
45667 Another simple memory map, with one loaded library with three
45668 allocated sections (.text, .data, .bss), looks like this:
45669
45670 @smallexample
45671 <library-list>
45672 <library name="sharedlib.o">
45673 <section address="0x10000000"/>
45674 <section address="0x20000000"/>
45675 <section address="0x30000000"/>
45676 </library>
45677 </library-list>
45678 @end smallexample
45679
45680 The format of a library list is described by this DTD:
45681
45682 @smallexample
45683 <!-- library-list: Root element with versioning -->
45684 <!ELEMENT library-list (library)*>
45685 <!ATTLIST library-list version CDATA #FIXED "1.0">
45686 <!ELEMENT library (segment*, section*)>
45687 <!ATTLIST library name CDATA #REQUIRED>
45688 <!ELEMENT segment EMPTY>
45689 <!ATTLIST segment address CDATA #REQUIRED>
45690 <!ELEMENT section EMPTY>
45691 <!ATTLIST section address CDATA #REQUIRED>
45692 @end smallexample
45693
45694 In addition, segments and section descriptors cannot be mixed within a
45695 single library element, and you must supply at least one segment or
45696 section for each library.
45697
45698 @node Library List Format for SVR4 Targets
45699 @section Library List Format for SVR4 Targets
45700 @cindex library list format, remote protocol
45701
45702 On SVR4 platforms @value{GDBN} can use the symbol table of a dynamic loader
45703 (e.g.@: @file{ld.so}) and normal memory operations to maintain a list of
45704 shared libraries. Still a special library list provided by this packet is
45705 more efficient for the @value{GDBN} remote protocol.
45706
45707 The @samp{qXfer:libraries-svr4:read} packet returns an XML document which lists
45708 loaded libraries and their SVR4 linker parameters. For each library on SVR4
45709 target, the following parameters are reported:
45710
45711 @itemize @minus
45712 @item
45713 @code{name}, the absolute file name from the @code{l_name} field of
45714 @code{struct link_map}.
45715 @item
45716 @code{lm} with address of @code{struct link_map} used for TLS
45717 (Thread Local Storage) access.
45718 @item
45719 @code{l_addr}, the displacement as read from the field @code{l_addr} of
45720 @code{struct link_map}. For prelinked libraries this is not an absolute
45721 memory address. It is a displacement of absolute memory address against
45722 address the file was prelinked to during the library load.
45723 @item
45724 @code{l_ld}, which is memory address of the @code{PT_DYNAMIC} segment
45725 @end itemize
45726
45727 Additionally the single @code{main-lm} attribute specifies address of
45728 @code{struct link_map} used for the main executable. This parameter is used
45729 for TLS access and its presence is optional.
45730
45731 @value{GDBN} must be linked with the Expat library to support XML
45732 SVR4 library lists. @xref{Expat}.
45733
45734 A simple memory map, with two loaded libraries (which do not use prelink),
45735 looks like this:
45736
45737 @smallexample
45738 <library-list-svr4 version="1.0" main-lm="0xe4f8f8">
45739 <library name="/lib/ld-linux.so.2" lm="0xe4f51c" l_addr="0xe2d000"
45740 l_ld="0xe4eefc"/>
45741 <library name="/lib/libc.so.6" lm="0xe4fbe8" l_addr="0x154000"
45742 l_ld="0x152350"/>
45743 </library-list-svr>
45744 @end smallexample
45745
45746 The format of an SVR4 library list is described by this DTD:
45747
45748 @smallexample
45749 <!-- library-list-svr4: Root element with versioning -->
45750 <!ELEMENT library-list-svr4 (library)*>
45751 <!ATTLIST library-list-svr4 version CDATA #FIXED "1.0">
45752 <!ATTLIST library-list-svr4 main-lm CDATA #IMPLIED>
45753 <!ELEMENT library EMPTY>
45754 <!ATTLIST library name CDATA #REQUIRED>
45755 <!ATTLIST library lm CDATA #REQUIRED>
45756 <!ATTLIST library l_addr CDATA #REQUIRED>
45757 <!ATTLIST library l_ld CDATA #REQUIRED>
45758 @end smallexample
45759
45760 @node Memory Map Format
45761 @section Memory Map Format
45762 @cindex memory map format
45763
45764 To be able to write into flash memory, @value{GDBN} needs to obtain a
45765 memory map from the target. This section describes the format of the
45766 memory map.
45767
45768 The memory map is obtained using the @samp{qXfer:memory-map:read}
45769 (@pxref{qXfer memory map read}) packet and is an XML document that
45770 lists memory regions.
45771
45772 @value{GDBN} must be linked with the Expat library to support XML
45773 memory maps. @xref{Expat}.
45774
45775 The top-level structure of the document is shown below:
45776
45777 @smallexample
45778 <?xml version="1.0"?>
45779 <!DOCTYPE memory-map
45780 PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45781 "http://sourceware.org/gdb/gdb-memory-map.dtd">
45782 <memory-map>
45783 region...
45784 </memory-map>
45785 @end smallexample
45786
45787 Each region can be either:
45788
45789 @itemize
45790
45791 @item
45792 A region of RAM starting at @var{addr} and extending for @var{length}
45793 bytes from there:
45794
45795 @smallexample
45796 <memory type="ram" start="@var{addr}" length="@var{length}"/>
45797 @end smallexample
45798
45799
45800 @item
45801 A region of read-only memory:
45802
45803 @smallexample
45804 <memory type="rom" start="@var{addr}" length="@var{length}"/>
45805 @end smallexample
45806
45807
45808 @item
45809 A region of flash memory, with erasure blocks @var{blocksize}
45810 bytes in length:
45811
45812 @smallexample
45813 <memory type="flash" start="@var{addr}" length="@var{length}">
45814 <property name="blocksize">@var{blocksize}</property>
45815 </memory>
45816 @end smallexample
45817
45818 @end itemize
45819
45820 Regions must not overlap. @value{GDBN} assumes that areas of memory not covered
45821 by the memory map are RAM, and uses the ordinary @samp{M} and @samp{X}
45822 packets to write to addresses in such ranges.
45823
45824 The formal DTD for memory map format is given below:
45825
45826 @smallexample
45827 <!-- ................................................... -->
45828 <!-- Memory Map XML DTD ................................ -->
45829 <!-- File: memory-map.dtd .............................. -->
45830 <!-- .................................... .............. -->
45831 <!-- memory-map.dtd -->
45832 <!-- memory-map: Root element with versioning -->
45833 <!ELEMENT memory-map (memory)*>
45834 <!ATTLIST memory-map version CDATA #FIXED "1.0.0">
45835 <!ELEMENT memory (property)*>
45836 <!-- memory: Specifies a memory region,
45837 and its type, or device. -->
45838 <!ATTLIST memory type (ram|rom|flash) #REQUIRED
45839 start CDATA #REQUIRED
45840 length CDATA #REQUIRED>
45841 <!-- property: Generic attribute tag -->
45842 <!ELEMENT property (#PCDATA | property)*>
45843 <!ATTLIST property name (blocksize) #REQUIRED>
45844 @end smallexample
45845
45846 @node Thread List Format
45847 @section Thread List Format
45848 @cindex thread list format
45849
45850 To efficiently update the list of threads and their attributes,
45851 @value{GDBN} issues the @samp{qXfer:threads:read} packet
45852 (@pxref{qXfer threads read}) and obtains the XML document with
45853 the following structure:
45854
45855 @smallexample
45856 <?xml version="1.0"?>
45857 <threads>
45858 <thread id="id" core="0" name="name">
45859 ... description ...
45860 </thread>
45861 </threads>
45862 @end smallexample
45863
45864 Each @samp{thread} element must have the @samp{id} attribute that
45865 identifies the thread (@pxref{thread-id syntax}). The
45866 @samp{core} attribute, if present, specifies which processor core
45867 the thread was last executing on. The @samp{name} attribute, if
45868 present, specifies the human-readable name of the thread. The content
45869 of the of @samp{thread} element is interpreted as human-readable
45870 auxiliary information. The @samp{handle} attribute, if present,
45871 is a hex encoded representation of the thread handle.
45872
45873
45874 @node Traceframe Info Format
45875 @section Traceframe Info Format
45876 @cindex traceframe info format
45877
45878 To be able to know which objects in the inferior can be examined when
45879 inspecting a tracepoint hit, @value{GDBN} needs to obtain the list of
45880 memory ranges, registers and trace state variables that have been
45881 collected in a traceframe.
45882
45883 This list is obtained using the @samp{qXfer:traceframe-info:read}
45884 (@pxref{qXfer traceframe info read}) packet and is an XML document.
45885
45886 @value{GDBN} must be linked with the Expat library to support XML
45887 traceframe info discovery. @xref{Expat}.
45888
45889 The top-level structure of the document is shown below:
45890
45891 @smallexample
45892 <?xml version="1.0"?>
45893 <!DOCTYPE traceframe-info
45894 PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45895 "http://sourceware.org/gdb/gdb-traceframe-info.dtd">
45896 <traceframe-info>
45897 block...
45898 </traceframe-info>
45899 @end smallexample
45900
45901 Each traceframe block can be either:
45902
45903 @itemize
45904
45905 @item
45906 A region of collected memory starting at @var{addr} and extending for
45907 @var{length} bytes from there:
45908
45909 @smallexample
45910 <memory start="@var{addr}" length="@var{length}"/>
45911 @end smallexample
45912
45913 @item
45914 A block indicating trace state variable numbered @var{number} has been
45915 collected:
45916
45917 @smallexample
45918 <tvar id="@var{number}"/>
45919 @end smallexample
45920
45921 @end itemize
45922
45923 The formal DTD for the traceframe info format is given below:
45924
45925 @smallexample
45926 <!ELEMENT traceframe-info (memory | tvar)* >
45927 <!ATTLIST traceframe-info version CDATA #FIXED "1.0">
45928
45929 <!ELEMENT memory EMPTY>
45930 <!ATTLIST memory start CDATA #REQUIRED
45931 length CDATA #REQUIRED>
45932 <!ELEMENT tvar>
45933 <!ATTLIST tvar id CDATA #REQUIRED>
45934 @end smallexample
45935
45936 @node Branch Trace Format
45937 @section Branch Trace Format
45938 @cindex branch trace format
45939
45940 In order to display the branch trace of an inferior thread,
45941 @value{GDBN} needs to obtain the list of branches. This list is
45942 represented as list of sequential code blocks that are connected via
45943 branches. The code in each block has been executed sequentially.
45944
45945 This list is obtained using the @samp{qXfer:btrace:read}
45946 (@pxref{qXfer btrace read}) packet and is an XML document.
45947
45948 @value{GDBN} must be linked with the Expat library to support XML
45949 traceframe info discovery. @xref{Expat}.
45950
45951 The top-level structure of the document is shown below:
45952
45953 @smallexample
45954 <?xml version="1.0"?>
45955 <!DOCTYPE btrace
45956 PUBLIC "+//IDN gnu.org//DTD GDB Branch Trace V1.0//EN"
45957 "http://sourceware.org/gdb/gdb-btrace.dtd">
45958 <btrace>
45959 block...
45960 </btrace>
45961 @end smallexample
45962
45963 @itemize
45964
45965 @item
45966 A block of sequentially executed instructions starting at @var{begin}
45967 and ending at @var{end}:
45968
45969 @smallexample
45970 <block begin="@var{begin}" end="@var{end}"/>
45971 @end smallexample
45972
45973 @end itemize
45974
45975 The formal DTD for the branch trace format is given below:
45976
45977 @smallexample
45978 <!ELEMENT btrace (block* | pt) >
45979 <!ATTLIST btrace version CDATA #FIXED "1.0">
45980
45981 <!ELEMENT block EMPTY>
45982 <!ATTLIST block begin CDATA #REQUIRED
45983 end CDATA #REQUIRED>
45984
45985 <!ELEMENT pt (pt-config?, raw?)>
45986
45987 <!ELEMENT pt-config (cpu?)>
45988
45989 <!ELEMENT cpu EMPTY>
45990 <!ATTLIST cpu vendor CDATA #REQUIRED
45991 family CDATA #REQUIRED
45992 model CDATA #REQUIRED
45993 stepping CDATA #REQUIRED>
45994
45995 <!ELEMENT raw (#PCDATA)>
45996 @end smallexample
45997
45998 @node Branch Trace Configuration Format
45999 @section Branch Trace Configuration Format
46000 @cindex branch trace configuration format
46001
46002 For each inferior thread, @value{GDBN} can obtain the branch trace
46003 configuration using the @samp{qXfer:btrace-conf:read}
46004 (@pxref{qXfer btrace-conf read}) packet.
46005
46006 The configuration describes the branch trace format and configuration
46007 settings for that format. The following information is described:
46008
46009 @table @code
46010 @item bts
46011 This thread uses the @dfn{Branch Trace Store} (@acronym{BTS}) format.
46012 @table @code
46013 @item size
46014 The size of the @acronym{BTS} ring buffer in bytes.
46015 @end table
46016 @item pt
46017 This thread uses the @dfn{Intel Processor Trace} (@acronym{Intel
46018 PT}) format.
46019 @table @code
46020 @item size
46021 The size of the @acronym{Intel PT} ring buffer in bytes.
46022 @end table
46023 @end table
46024
46025 @value{GDBN} must be linked with the Expat library to support XML
46026 branch trace configuration discovery. @xref{Expat}.
46027
46028 The formal DTD for the branch trace configuration format is given below:
46029
46030 @smallexample
46031 <!ELEMENT btrace-conf (bts?, pt?)>
46032 <!ATTLIST btrace-conf version CDATA #FIXED "1.0">
46033
46034 <!ELEMENT bts EMPTY>
46035 <!ATTLIST bts size CDATA #IMPLIED>
46036
46037 <!ELEMENT pt EMPTY>
46038 <!ATTLIST pt size CDATA #IMPLIED>
46039 @end smallexample
46040
46041 @include agentexpr.texi
46042
46043 @node Target Descriptions
46044 @appendix Target Descriptions
46045 @cindex target descriptions
46046
46047 One of the challenges of using @value{GDBN} to debug embedded systems
46048 is that there are so many minor variants of each processor
46049 architecture in use. It is common practice for vendors to start with
46050 a standard processor core --- ARM, PowerPC, or @acronym{MIPS}, for example ---
46051 and then make changes to adapt it to a particular market niche. Some
46052 architectures have hundreds of variants, available from dozens of
46053 vendors. This leads to a number of problems:
46054
46055 @itemize @bullet
46056 @item
46057 With so many different customized processors, it is difficult for
46058 the @value{GDBN} maintainers to keep up with the changes.
46059 @item
46060 Since individual variants may have short lifetimes or limited
46061 audiences, it may not be worthwhile to carry information about every
46062 variant in the @value{GDBN} source tree.
46063 @item
46064 When @value{GDBN} does support the architecture of the embedded system
46065 at hand, the task of finding the correct architecture name to give the
46066 @command{set architecture} command can be error-prone.
46067 @end itemize
46068
46069 To address these problems, the @value{GDBN} remote protocol allows a
46070 target system to not only identify itself to @value{GDBN}, but to
46071 actually describe its own features. This lets @value{GDBN} support
46072 processor variants it has never seen before --- to the extent that the
46073 descriptions are accurate, and that @value{GDBN} understands them.
46074
46075 @value{GDBN} must be linked with the Expat library to support XML
46076 target descriptions. @xref{Expat}.
46077
46078 @menu
46079 * Retrieving Descriptions:: How descriptions are fetched from a target.
46080 * Target Description Format:: The contents of a target description.
46081 * Predefined Target Types:: Standard types available for target
46082 descriptions.
46083 * Enum Target Types:: How to define enum target types.
46084 * Standard Target Features:: Features @value{GDBN} knows about.
46085 @end menu
46086
46087 @node Retrieving Descriptions
46088 @section Retrieving Descriptions
46089
46090 Target descriptions can be read from the target automatically, or
46091 specified by the user manually. The default behavior is to read the
46092 description from the target. @value{GDBN} retrieves it via the remote
46093 protocol using @samp{qXfer} requests (@pxref{General Query Packets,
46094 qXfer}). The @var{annex} in the @samp{qXfer} packet will be
46095 @samp{target.xml}. The contents of the @samp{target.xml} annex are an
46096 XML document, of the form described in @ref{Target Description
46097 Format}.
46098
46099 Alternatively, you can specify a file to read for the target description.
46100 If a file is set, the target will not be queried. The commands to
46101 specify a file are:
46102
46103 @table @code
46104 @cindex set tdesc filename
46105 @item set tdesc filename @var{path}
46106 Read the target description from @var{path}.
46107
46108 @cindex unset tdesc filename
46109 @item unset tdesc filename
46110 Do not read the XML target description from a file. @value{GDBN}
46111 will use the description supplied by the current target.
46112
46113 @cindex show tdesc filename
46114 @item show tdesc filename
46115 Show the filename to read for a target description, if any.
46116 @end table
46117
46118
46119 @node Target Description Format
46120 @section Target Description Format
46121 @cindex target descriptions, XML format
46122
46123 A target description annex is an @uref{http://www.w3.org/XML/, XML}
46124 document which complies with the Document Type Definition provided in
46125 the @value{GDBN} sources in @file{gdb/features/gdb-target.dtd}. This
46126 means you can use generally available tools like @command{xmllint} to
46127 check that your feature descriptions are well-formed and valid.
46128 However, to help people unfamiliar with XML write descriptions for
46129 their targets, we also describe the grammar here.
46130
46131 Target descriptions can identify the architecture of the remote target
46132 and (for some architectures) provide information about custom register
46133 sets. They can also identify the OS ABI of the remote target.
46134 @value{GDBN} can use this information to autoconfigure for your
46135 target, or to warn you if you connect to an unsupported target.
46136
46137 Here is a simple target description:
46138
46139 @smallexample
46140 <target version="1.0">
46141 <architecture>i386:x86-64</architecture>
46142 </target>
46143 @end smallexample
46144
46145 @noindent
46146 This minimal description only says that the target uses
46147 the x86-64 architecture.
46148
46149 A target description has the following overall form, with [ ] marking
46150 optional elements and @dots{} marking repeatable elements. The elements
46151 are explained further below.
46152
46153 @smallexample
46154 <?xml version="1.0"?>
46155 <!DOCTYPE target SYSTEM "gdb-target.dtd">
46156 <target version="1.0">
46157 @r{[}@var{architecture}@r{]}
46158 @r{[}@var{osabi}@r{]}
46159 @r{[}@var{compatible}@r{]}
46160 @r{[}@var{feature}@dots{}@r{]}
46161 </target>
46162 @end smallexample
46163
46164 @noindent
46165 The description is generally insensitive to whitespace and line
46166 breaks, under the usual common-sense rules. The XML version
46167 declaration and document type declaration can generally be omitted
46168 (@value{GDBN} does not require them), but specifying them may be
46169 useful for XML validation tools. The @samp{version} attribute for
46170 @samp{<target>} may also be omitted, but we recommend
46171 including it; if future versions of @value{GDBN} use an incompatible
46172 revision of @file{gdb-target.dtd}, they will detect and report
46173 the version mismatch.
46174
46175 @subsection Inclusion
46176 @cindex target descriptions, inclusion
46177 @cindex XInclude
46178 @ifnotinfo
46179 @cindex <xi:include>
46180 @end ifnotinfo
46181
46182 It can sometimes be valuable to split a target description up into
46183 several different annexes, either for organizational purposes, or to
46184 share files between different possible target descriptions. You can
46185 divide a description into multiple files by replacing any element of
46186 the target description with an inclusion directive of the form:
46187
46188 @smallexample
46189 <xi:include href="@var{document}"/>
46190 @end smallexample
46191
46192 @noindent
46193 When @value{GDBN} encounters an element of this form, it will retrieve
46194 the named XML @var{document}, and replace the inclusion directive with
46195 the contents of that document. If the current description was read
46196 using @samp{qXfer}, then so will be the included document;
46197 @var{document} will be interpreted as the name of an annex. If the
46198 current description was read from a file, @value{GDBN} will look for
46199 @var{document} as a file in the same directory where it found the
46200 original description.
46201
46202 @subsection Architecture
46203 @cindex <architecture>
46204
46205 An @samp{<architecture>} element has this form:
46206
46207 @smallexample
46208 <architecture>@var{arch}</architecture>
46209 @end smallexample
46210
46211 @var{arch} is one of the architectures from the set accepted by
46212 @code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
46213
46214 @subsection OS ABI
46215 @cindex @code{<osabi>}
46216
46217 This optional field was introduced in @value{GDBN} version 7.0.
46218 Previous versions of @value{GDBN} ignore it.
46219
46220 An @samp{<osabi>} element has this form:
46221
46222 @smallexample
46223 <osabi>@var{abi-name}</osabi>
46224 @end smallexample
46225
46226 @var{abi-name} is an OS ABI name from the same selection accepted by
46227 @w{@code{set osabi}} (@pxref{ABI, ,Configuring the Current ABI}).
46228
46229 @subsection Compatible Architecture
46230 @cindex @code{<compatible>}
46231
46232 This optional field was introduced in @value{GDBN} version 7.0.
46233 Previous versions of @value{GDBN} ignore it.
46234
46235 A @samp{<compatible>} element has this form:
46236
46237 @smallexample
46238 <compatible>@var{arch}</compatible>
46239 @end smallexample
46240
46241 @var{arch} is one of the architectures from the set accepted by
46242 @code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
46243
46244 A @samp{<compatible>} element is used to specify that the target
46245 is able to run binaries in some other than the main target architecture
46246 given by the @samp{<architecture>} element. For example, on the
46247 Cell Broadband Engine, the main architecture is @code{powerpc:common}
46248 or @code{powerpc:common64}, but the system is able to run binaries
46249 in the @code{spu} architecture as well. The way to describe this
46250 capability with @samp{<compatible>} is as follows:
46251
46252 @smallexample
46253 <architecture>powerpc:common</architecture>
46254 <compatible>spu</compatible>
46255 @end smallexample
46256
46257 @subsection Features
46258 @cindex <feature>
46259
46260 Each @samp{<feature>} describes some logical portion of the target
46261 system. Features are currently used to describe available CPU
46262 registers and the types of their contents. A @samp{<feature>} element
46263 has this form:
46264
46265 @smallexample
46266 <feature name="@var{name}">
46267 @r{[}@var{type}@dots{}@r{]}
46268 @var{reg}@dots{}
46269 </feature>
46270 @end smallexample
46271
46272 @noindent
46273 Each feature's name should be unique within the description. The name
46274 of a feature does not matter unless @value{GDBN} has some special
46275 knowledge of the contents of that feature; if it does, the feature
46276 should have its standard name. @xref{Standard Target Features}.
46277
46278 @subsection Types
46279
46280 Any register's value is a collection of bits which @value{GDBN} must
46281 interpret. The default interpretation is a two's complement integer,
46282 but other types can be requested by name in the register description.
46283 Some predefined types are provided by @value{GDBN} (@pxref{Predefined
46284 Target Types}), and the description can define additional composite
46285 and enum types.
46286
46287 Each type element must have an @samp{id} attribute, which gives
46288 a unique (within the containing @samp{<feature>}) name to the type.
46289 Types must be defined before they are used.
46290
46291 @cindex <vector>
46292 Some targets offer vector registers, which can be treated as arrays
46293 of scalar elements. These types are written as @samp{<vector>} elements,
46294 specifying the array element type, @var{type}, and the number of elements,
46295 @var{count}:
46296
46297 @smallexample
46298 <vector id="@var{id}" type="@var{type}" count="@var{count}"/>
46299 @end smallexample
46300
46301 @cindex <union>
46302 If a register's value is usefully viewed in multiple ways, define it
46303 with a union type containing the useful representations. The
46304 @samp{<union>} element contains one or more @samp{<field>} elements,
46305 each of which has a @var{name} and a @var{type}:
46306
46307 @smallexample
46308 <union id="@var{id}">
46309 <field name="@var{name}" type="@var{type}"/>
46310 @dots{}
46311 </union>
46312 @end smallexample
46313
46314 @cindex <struct>
46315 @cindex <flags>
46316 If a register's value is composed from several separate values, define
46317 it with either a structure type or a flags type.
46318 A flags type may only contain bitfields.
46319 A structure type may either contain only bitfields or contain no bitfields.
46320 If the value contains only bitfields, its total size in bytes must be
46321 specified.
46322
46323 Non-bitfield values have a @var{name} and @var{type}.
46324
46325 @smallexample
46326 <struct id="@var{id}">
46327 <field name="@var{name}" type="@var{type}"/>
46328 @dots{}
46329 </struct>
46330 @end smallexample
46331
46332 Both @var{name} and @var{type} values are required.
46333 No implicit padding is added.
46334
46335 Bitfield values have a @var{name}, @var{start}, @var{end} and @var{type}.
46336
46337 @smallexample
46338 <struct id="@var{id}" size="@var{size}">
46339 <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
46340 @dots{}
46341 </struct>
46342 @end smallexample
46343
46344 @smallexample
46345 <flags id="@var{id}" size="@var{size}">
46346 <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
46347 @dots{}
46348 </flags>
46349 @end smallexample
46350
46351 The @var{name} value is required.
46352 Bitfield values may be named with the empty string, @samp{""},
46353 in which case the field is ``filler'' and its value is not printed.
46354 Not all bits need to be specified, so ``filler'' fields are optional.
46355
46356 The @var{start} and @var{end} values are required, and @var{type}
46357 is optional.
46358 The field's @var{start} must be less than or equal to its @var{end},
46359 and zero represents the least significant bit.
46360
46361 The default value of @var{type} is @code{bool} for single bit fields,
46362 and an unsigned integer otherwise.
46363
46364 Which to choose? Structures or flags?
46365
46366 Registers defined with @samp{flags} have these advantages over
46367 defining them with @samp{struct}:
46368
46369 @itemize @bullet
46370 @item
46371 Arithmetic may be performed on them as if they were integers.
46372 @item
46373 They are printed in a more readable fashion.
46374 @end itemize
46375
46376 Registers defined with @samp{struct} have one advantage over
46377 defining them with @samp{flags}:
46378
46379 @itemize @bullet
46380 @item
46381 One can fetch individual fields like in @samp{C}.
46382
46383 @smallexample
46384 (gdb) print $my_struct_reg.field3
46385 $1 = 42
46386 @end smallexample
46387
46388 @end itemize
46389
46390 @subsection Registers
46391 @cindex <reg>
46392
46393 Each register is represented as an element with this form:
46394
46395 @smallexample
46396 <reg name="@var{name}"
46397 bitsize="@var{size}"
46398 @r{[}regnum="@var{num}"@r{]}
46399 @r{[}save-restore="@var{save-restore}"@r{]}
46400 @r{[}type="@var{type}"@r{]}
46401 @r{[}group="@var{group}"@r{]}/>
46402 @end smallexample
46403
46404 @noindent
46405 The components are as follows:
46406
46407 @table @var
46408
46409 @item name
46410 The register's name; it must be unique within the target description.
46411
46412 @item bitsize
46413 The register's size, in bits.
46414
46415 @item regnum
46416 The register's number. If omitted, a register's number is one greater
46417 than that of the previous register (either in the current feature or in
46418 a preceding feature); the first register in the target description
46419 defaults to zero. This register number is used to read or write
46420 the register; e.g.@: it is used in the remote @code{p} and @code{P}
46421 packets, and registers appear in the @code{g} and @code{G} packets
46422 in order of increasing register number.
46423
46424 @item save-restore
46425 Whether the register should be preserved across inferior function
46426 calls; this must be either @code{yes} or @code{no}. The default is
46427 @code{yes}, which is appropriate for most registers except for
46428 some system control registers; this is not related to the target's
46429 ABI.
46430
46431 @item type
46432 The type of the register. It may be a predefined type, a type
46433 defined in the current feature, or one of the special types @code{int}
46434 and @code{float}. @code{int} is an integer type of the correct size
46435 for @var{bitsize}, and @code{float} is a floating point type (in the
46436 architecture's normal floating point format) of the correct size for
46437 @var{bitsize}. The default is @code{int}.
46438
46439 @item group
46440 The register group to which this register belongs. It can be one of the
46441 standard register groups @code{general}, @code{float}, @code{vector} or an
46442 arbitrary string. Group names should be limited to alphanumeric characters.
46443 If a group name is made up of multiple words the words may be separated by
46444 hyphens; e.g.@: @code{special-group} or @code{ultra-special-group}. If no
46445 @var{group} is specified, @value{GDBN} will not display the register in
46446 @code{info registers}.
46447
46448 @end table
46449
46450 @node Predefined Target Types
46451 @section Predefined Target Types
46452 @cindex target descriptions, predefined types
46453
46454 Type definitions in the self-description can build up composite types
46455 from basic building blocks, but can not define fundamental types. Instead,
46456 standard identifiers are provided by @value{GDBN} for the fundamental
46457 types. The currently supported types are:
46458
46459 @table @code
46460
46461 @item bool
46462 Boolean type, occupying a single bit.
46463
46464 @item int8
46465 @itemx int16
46466 @itemx int24
46467 @itemx int32
46468 @itemx int64
46469 @itemx int128
46470 Signed integer types holding the specified number of bits.
46471
46472 @item uint8
46473 @itemx uint16
46474 @itemx uint24
46475 @itemx uint32
46476 @itemx uint64
46477 @itemx uint128
46478 Unsigned integer types holding the specified number of bits.
46479
46480 @item code_ptr
46481 @itemx data_ptr
46482 Pointers to unspecified code and data. The program counter and
46483 any dedicated return address register may be marked as code
46484 pointers; printing a code pointer converts it into a symbolic
46485 address. The stack pointer and any dedicated address registers
46486 may be marked as data pointers.
46487
46488 @item ieee_half
46489 Half precision IEEE floating point.
46490
46491 @item ieee_single
46492 Single precision IEEE floating point.
46493
46494 @item ieee_double
46495 Double precision IEEE floating point.
46496
46497 @item bfloat16
46498 The 16-bit @dfn{brain floating point} format used e.g.@: by x86 and ARM.
46499
46500 @item arm_fpa_ext
46501 The 12-byte extended precision format used by ARM FPA registers.
46502
46503 @item i387_ext
46504 The 10-byte extended precision format used by x87 registers.
46505
46506 @item i386_eflags
46507 32bit @sc{eflags} register used by x86.
46508
46509 @item i386_mxcsr
46510 32bit @sc{mxcsr} register used by x86.
46511
46512 @end table
46513
46514 @node Enum Target Types
46515 @section Enum Target Types
46516 @cindex target descriptions, enum types
46517
46518 Enum target types are useful in @samp{struct} and @samp{flags}
46519 register descriptions. @xref{Target Description Format}.
46520
46521 Enum types have a name, size and a list of name/value pairs.
46522
46523 @smallexample
46524 <enum id="@var{id}" size="@var{size}">
46525 <evalue name="@var{name}" value="@var{value}"/>
46526 @dots{}
46527 </enum>
46528 @end smallexample
46529
46530 Enums must be defined before they are used.
46531
46532 @smallexample
46533 <enum id="levels_type" size="4">
46534 <evalue name="low" value="0"/>
46535 <evalue name="high" value="1"/>
46536 </enum>
46537 <flags id="flags_type" size="4">
46538 <field name="X" start="0"/>
46539 <field name="LEVEL" start="1" end="1" type="levels_type"/>
46540 </flags>
46541 <reg name="flags" bitsize="32" type="flags_type"/>
46542 @end smallexample
46543
46544 Given that description, a value of 3 for the @samp{flags} register
46545 would be printed as:
46546
46547 @smallexample
46548 (gdb) info register flags
46549 flags 0x3 [ X LEVEL=high ]
46550 @end smallexample
46551
46552 @node Standard Target Features
46553 @section Standard Target Features
46554 @cindex target descriptions, standard features
46555
46556 A target description must contain either no registers or all the
46557 target's registers. If the description contains no registers, then
46558 @value{GDBN} will assume a default register layout, selected based on
46559 the architecture. If the description contains any registers, the
46560 default layout will not be used; the standard registers must be
46561 described in the target description, in such a way that @value{GDBN}
46562 can recognize them.
46563
46564 This is accomplished by giving specific names to feature elements
46565 which contain standard registers. @value{GDBN} will look for features
46566 with those names and verify that they contain the expected registers;
46567 if any known feature is missing required registers, or if any required
46568 feature is missing, @value{GDBN} will reject the target
46569 description. You can add additional registers to any of the
46570 standard features --- @value{GDBN} will display them just as if
46571 they were added to an unrecognized feature.
46572
46573 This section lists the known features and their expected contents.
46574 Sample XML documents for these features are included in the
46575 @value{GDBN} source tree, in the directory @file{gdb/features}.
46576
46577 Names recognized by @value{GDBN} should include the name of the
46578 company or organization which selected the name, and the overall
46579 architecture to which the feature applies; so e.g.@: the feature
46580 containing ARM core registers is named @samp{org.gnu.gdb.arm.core}.
46581
46582 The names of registers are not case sensitive for the purpose
46583 of recognizing standard features, but @value{GDBN} will only display
46584 registers using the capitalization used in the description.
46585
46586 @menu
46587 * AArch64 Features::
46588 * ARC Features::
46589 * ARM Features::
46590 * i386 Features::
46591 * LoongArch Features::
46592 * MicroBlaze Features::
46593 * MIPS Features::
46594 * M68K Features::
46595 * NDS32 Features::
46596 * Nios II Features::
46597 * OpenRISC 1000 Features::
46598 * PowerPC Features::
46599 * RISC-V Features::
46600 * RX Features::
46601 * S/390 and System z Features::
46602 * Sparc Features::
46603 * TIC6x Features::
46604 @end menu
46605
46606
46607 @node AArch64 Features
46608 @subsection AArch64 Features
46609 @cindex target descriptions, AArch64 features
46610
46611 The @samp{org.gnu.gdb.aarch64.core} feature is required for AArch64
46612 targets. It should contain registers @samp{x0} through @samp{x30},
46613 @samp{sp}, @samp{pc}, and @samp{cpsr}.
46614
46615 The @samp{org.gnu.gdb.aarch64.fpu} feature is optional. If present,
46616 it should contain registers @samp{v0} through @samp{v31}, @samp{fpsr},
46617 and @samp{fpcr}.
46618
46619 The @samp{org.gnu.gdb.aarch64.sve} feature is optional. If present,
46620 it should contain registers @samp{z0} through @samp{z31}, @samp{p0}
46621 through @samp{p15}, @samp{ffr} and @samp{vg}.
46622
46623 The @samp{org.gnu.gdb.aarch64.pauth} feature is optional. If present,
46624 it should contain registers @samp{pauth_dmask} and @samp{pauth_cmask}.
46625
46626 @node ARC Features
46627 @subsection ARC Features
46628 @cindex target descriptions, ARC Features
46629
46630 ARC processors are so configurable that even core registers and their numbers
46631 are not predetermined completely. Moreover, @emph{flags} and @emph{PC}
46632 registers, which are important to @value{GDBN}, are not ``core'' registers in
46633 ARC. Therefore, there are two features that their presence is mandatory:
46634 @samp{org.gnu.gdb.arc.core} and @samp{org.gnu.gdb.arc.aux}.
46635
46636 The @samp{org.gnu.gdb.arc.core} feature is required for all targets. It must
46637 contain registers:
46638
46639 @itemize @minus
46640 @item
46641 @samp{r0} through @samp{r25} for normal register file targets.
46642 @item
46643 @samp{r0} through @samp{r3}, and @samp{r10} through @samp{r15} for reduced
46644 register file targets.
46645 @item
46646 @samp{gp}, @samp{fp}, @samp{sp}, @samp{r30}@footnote{Not necessary for ARCv1.},
46647 @samp{blink}, @samp{lp_count}, @samp{pcl}.
46648 @end itemize
46649
46650 In case of an ARCompact target (ARCv1 ISA), the @samp{org.gnu.gdb.arc.core}
46651 feature may contain registers @samp{ilink1} and @samp{ilink2}. While in case
46652 of ARC EM and ARC HS targets (ARCv2 ISA), register @samp{ilink} may be present.
46653 The difference between ARCv1 and ARCv2 is the naming of registers @emph{29th}
46654 and @emph{30th}. They are called @samp{ilink1} and @samp{ilink2} for ARCv1 and
46655 are optional. For ARCv2, they are called @samp{ilink} and @samp{r30} and only
46656 @samp{ilink} is optional. The optionality of @samp{ilink*} registers is
46657 because of their inaccessibility during user space debugging sessions.
46658
46659 Extension core registers @samp{r32} through @samp{r59} are optional and their
46660 existence depends on the configuration. When debugging GNU/Linux applications,
46661 i.e.@: user space debugging, these core registers are not available.
46662
46663 The @samp{org.gnu.gdb.arc.aux} feature is required for all ARC targets. Here
46664 is the list of registers pertinent to this feature:
46665
46666 @itemize @minus
46667 @item
46668 mandatory: @samp{pc} and @samp{status32}.
46669 @item
46670 optional: @samp{lp_start}, @samp{lp_end}, and @samp{bta}.
46671 @end itemize
46672
46673 @node ARM Features
46674 @subsection ARM Features
46675 @cindex target descriptions, ARM features
46676
46677 The @samp{org.gnu.gdb.arm.core} feature is required for non-M-profile
46678 ARM targets.
46679 It should contain registers @samp{r0} through @samp{r13}, @samp{sp},
46680 @samp{lr}, @samp{pc}, and @samp{cpsr}.
46681
46682 For M-profile targets (e.g.@: Cortex-M3), the @samp{org.gnu.gdb.arm.core}
46683 feature is replaced by @samp{org.gnu.gdb.arm.m-profile}. It should contain
46684 registers @samp{r0} through @samp{r13}, @samp{sp}, @samp{lr}, @samp{pc},
46685 and @samp{xpsr}.
46686
46687 The @samp{org.gnu.gdb.arm.fpa} feature is optional. If present, it
46688 should contain registers @samp{f0} through @samp{f7} and @samp{fps}.
46689
46690 The @samp{org.gnu.gdb.arm.m-profile-mve} feature is optional. If present, it
46691 must contain register @samp{vpr}.
46692
46693 If the @samp{org.gnu.gdb.arm.m-profile-mve} feature is available, @value{GDBN}
46694 will synthesize the @samp{p0} pseudo register from @samp{vpr} contents.
46695
46696 If the @samp{org.gnu.gdb.arm.vfp} feature is available alongside the
46697 @samp{org.gnu.gdb.arm.m-profile-mve} feature, @value{GDBN} will
46698 synthesize the @samp{q} pseudo registers from @samp{d} register
46699 contents.
46700
46701 The @samp{org.gnu.gdb.xscale.iwmmxt} feature is optional. If present,
46702 it should contain at least registers @samp{wR0} through @samp{wR15} and
46703 @samp{wCGR0} through @samp{wCGR3}. The @samp{wCID}, @samp{wCon},
46704 @samp{wCSSF}, and @samp{wCASF} registers are optional.
46705
46706 The @samp{org.gnu.gdb.arm.vfp} feature is optional. If present, it
46707 should contain at least registers @samp{d0} through @samp{d15}. If
46708 they are present, @samp{d16} through @samp{d31} should also be included.
46709 @value{GDBN} will synthesize the single-precision registers from
46710 halves of the double-precision registers.
46711
46712 The @samp{org.gnu.gdb.arm.neon} feature is optional. It does not
46713 need to contain registers; it instructs @value{GDBN} to display the
46714 VFP double-precision registers as vectors and to synthesize the
46715 quad-precision registers from pairs of double-precision registers.
46716 If this feature is present, @samp{org.gnu.gdb.arm.vfp} must also
46717 be present and include 32 double-precision registers.
46718
46719 The @samp{org.gnu.gdb.arm.m-profile-pacbti} feature is optional, and
46720 acknowledges support for the ARMv8.1-m PACBTI extensions. @value{GDBN}
46721 will track return address signing states and will decorate backtraces using
46722 the [PAC] marker, similar to AArch64's PAC extension.
46723 @xref{AArch64 PAC}.
46724
46725 @node i386 Features
46726 @subsection i386 Features
46727 @cindex target descriptions, i386 features
46728
46729 The @samp{org.gnu.gdb.i386.core} feature is required for i386/amd64
46730 targets. It should describe the following registers:
46731
46732 @itemize @minus
46733 @item
46734 @samp{eax} through @samp{edi} plus @samp{eip} for i386
46735 @item
46736 @samp{rax} through @samp{r15} plus @samp{rip} for amd64
46737 @item
46738 @samp{eflags}, @samp{cs}, @samp{ss}, @samp{ds}, @samp{es},
46739 @samp{fs}, @samp{gs}
46740 @item
46741 @samp{st0} through @samp{st7}
46742 @item
46743 @samp{fctrl}, @samp{fstat}, @samp{ftag}, @samp{fiseg}, @samp{fioff},
46744 @samp{foseg}, @samp{fooff} and @samp{fop}
46745 @end itemize
46746
46747 The register sets may be different, depending on the target.
46748
46749 The @samp{org.gnu.gdb.i386.sse} feature is optional. It should
46750 describe registers:
46751
46752 @itemize @minus
46753 @item
46754 @samp{xmm0} through @samp{xmm7} for i386
46755 @item
46756 @samp{xmm0} through @samp{xmm15} for amd64
46757 @item
46758 @samp{mxcsr}
46759 @end itemize
46760
46761 The @samp{org.gnu.gdb.i386.avx} feature is optional and requires the
46762 @samp{org.gnu.gdb.i386.sse} feature. It should
46763 describe the upper 128 bits of @sc{ymm} registers:
46764
46765 @itemize @minus
46766 @item
46767 @samp{ymm0h} through @samp{ymm7h} for i386
46768 @item
46769 @samp{ymm0h} through @samp{ymm15h} for amd64
46770 @end itemize
46771
46772 The @samp{org.gnu.gdb.i386.mpx} is an optional feature representing Intel
46773 Memory Protection Extension (MPX). It should describe the following registers:
46774
46775 @itemize @minus
46776 @item
46777 @samp{bnd0raw} through @samp{bnd3raw} for i386 and amd64.
46778 @item
46779 @samp{bndcfgu} and @samp{bndstatus} for i386 and amd64.
46780 @end itemize
46781
46782 The @samp{org.gnu.gdb.i386.linux} feature is optional. It should
46783 describe a single register, @samp{orig_eax}.
46784
46785 The @samp{org.gnu.gdb.i386.segments} feature is optional. It should
46786 describe two system registers: @samp{fs_base} and @samp{gs_base}.
46787
46788 The @samp{org.gnu.gdb.i386.avx512} feature is optional and requires the
46789 @samp{org.gnu.gdb.i386.avx} feature. It should
46790 describe additional @sc{xmm} registers:
46791
46792 @itemize @minus
46793 @item
46794 @samp{xmm16h} through @samp{xmm31h}, only valid for amd64.
46795 @end itemize
46796
46797 It should describe the upper 128 bits of additional @sc{ymm} registers:
46798
46799 @itemize @minus
46800 @item
46801 @samp{ymm16h} through @samp{ymm31h}, only valid for amd64.
46802 @end itemize
46803
46804 It should
46805 describe the upper 256 bits of @sc{zmm} registers:
46806
46807 @itemize @minus
46808 @item
46809 @samp{zmm0h} through @samp{zmm7h} for i386.
46810 @item
46811 @samp{zmm0h} through @samp{zmm15h} for amd64.
46812 @end itemize
46813
46814 It should
46815 describe the additional @sc{zmm} registers:
46816
46817 @itemize @minus
46818 @item
46819 @samp{zmm16h} through @samp{zmm31h}, only valid for amd64.
46820 @end itemize
46821
46822 The @samp{org.gnu.gdb.i386.pkeys} feature is optional. It should
46823 describe a single register, @samp{pkru}. It is a 32-bit register
46824 valid for i386 and amd64.
46825
46826 @node LoongArch Features
46827 @subsection LoongArch Features
46828 @cindex target descriptions, LoongArch Features
46829
46830 The @samp{org.gnu.gdb.loongarch.base} feature is required for LoongArch
46831 targets. It should contain the registers @samp{r0} through @samp{r31},
46832 @samp{pc}, and @samp{badv}. Either the architectural names (@samp{r0},
46833 @samp{r1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra}, etc).
46834
46835 @node MicroBlaze Features
46836 @subsection MicroBlaze Features
46837 @cindex target descriptions, MicroBlaze features
46838
46839 The @samp{org.gnu.gdb.microblaze.core} feature is required for MicroBlaze
46840 targets. It should contain registers @samp{r0} through @samp{r31},
46841 @samp{rpc}, @samp{rmsr}, @samp{rear}, @samp{resr}, @samp{rfsr}, @samp{rbtr},
46842 @samp{rpvr}, @samp{rpvr1} through @samp{rpvr11}, @samp{redr}, @samp{rpid},
46843 @samp{rzpr}, @samp{rtlbx}, @samp{rtlbsx}, @samp{rtlblo}, and @samp{rtlbhi}.
46844
46845 The @samp{org.gnu.gdb.microblaze.stack-protect} feature is optional.
46846 If present, it should contain registers @samp{rshr} and @samp{rslr}
46847
46848 @node MIPS Features
46849 @subsection @acronym{MIPS} Features
46850 @cindex target descriptions, @acronym{MIPS} features
46851
46852 The @samp{org.gnu.gdb.mips.cpu} feature is required for @acronym{MIPS} targets.
46853 It should contain registers @samp{r0} through @samp{r31}, @samp{lo},
46854 @samp{hi}, and @samp{pc}. They may be 32-bit or 64-bit depending
46855 on the target.
46856
46857 The @samp{org.gnu.gdb.mips.cp0} feature is also required. It should
46858 contain at least the @samp{status}, @samp{badvaddr}, and @samp{cause}
46859 registers. They may be 32-bit or 64-bit depending on the target.
46860
46861 The @samp{org.gnu.gdb.mips.fpu} feature is currently required, though
46862 it may be optional in a future version of @value{GDBN}. It should
46863 contain registers @samp{f0} through @samp{f31}, @samp{fcsr}, and
46864 @samp{fir}. They may be 32-bit or 64-bit depending on the target.
46865
46866 The @samp{org.gnu.gdb.mips.dsp} feature is optional. It should
46867 contain registers @samp{hi1} through @samp{hi3}, @samp{lo1} through
46868 @samp{lo3}, and @samp{dspctl}. The @samp{dspctl} register should
46869 be 32-bit and the rest may be 32-bit or 64-bit depending on the target.
46870
46871 The @samp{org.gnu.gdb.mips.linux} feature is optional. It should
46872 contain a single register, @samp{restart}, which is used by the
46873 Linux kernel to control restartable syscalls.
46874
46875 @node M68K Features
46876 @subsection M68K Features
46877 @cindex target descriptions, M68K features
46878
46879 @table @code
46880 @item @samp{org.gnu.gdb.m68k.core}
46881 @itemx @samp{org.gnu.gdb.coldfire.core}
46882 @itemx @samp{org.gnu.gdb.fido.core}
46883 One of those features must be always present.
46884 The feature that is present determines which flavor of m68k is
46885 used. The feature that is present should contain registers
46886 @samp{d0} through @samp{d7}, @samp{a0} through @samp{a5}, @samp{fp},
46887 @samp{sp}, @samp{ps} and @samp{pc}.
46888
46889 @item @samp{org.gnu.gdb.coldfire.fp}
46890 This feature is optional. If present, it should contain registers
46891 @samp{fp0} through @samp{fp7}, @samp{fpcontrol}, @samp{fpstatus} and
46892 @samp{fpiaddr}.
46893
46894 Note that, despite the fact that this feature's name says
46895 @samp{coldfire}, it is used to describe any floating point registers.
46896 The size of the registers must match the main m68k flavor; so, for
46897 example, if the primary feature is reported as @samp{coldfire}, then
46898 64-bit floating point registers are required.
46899 @end table
46900
46901 @node NDS32 Features
46902 @subsection NDS32 Features
46903 @cindex target descriptions, NDS32 features
46904
46905 The @samp{org.gnu.gdb.nds32.core} feature is required for NDS32
46906 targets. It should contain at least registers @samp{r0} through
46907 @samp{r10}, @samp{r15}, @samp{fp}, @samp{gp}, @samp{lp}, @samp{sp},
46908 and @samp{pc}.
46909
46910 The @samp{org.gnu.gdb.nds32.fpu} feature is optional. If present,
46911 it should contain 64-bit double-precision floating-point registers
46912 @samp{fd0} through @emph{fdN}, which should be @samp{fd3}, @samp{fd7},
46913 @samp{fd15}, or @samp{fd31} based on the FPU configuration implemented.
46914
46915 @emph{Note:} The first sixteen 64-bit double-precision floating-point
46916 registers are overlapped with the thirty-two 32-bit single-precision
46917 floating-point registers. The 32-bit single-precision registers, if
46918 not being listed explicitly, will be synthesized from halves of the
46919 overlapping 64-bit double-precision registers. Listing 32-bit
46920 single-precision registers explicitly is deprecated, and the
46921 support to it could be totally removed some day.
46922
46923 @node Nios II Features
46924 @subsection Nios II Features
46925 @cindex target descriptions, Nios II features
46926
46927 The @samp{org.gnu.gdb.nios2.cpu} feature is required for Nios II
46928 targets. It should contain the 32 core registers (@samp{zero},
46929 @samp{at}, @samp{r2} through @samp{r23}, @samp{et} through @samp{ra}),
46930 @samp{pc}, and the 16 control registers (@samp{status} through
46931 @samp{mpuacc}).
46932
46933 @node OpenRISC 1000 Features
46934 @subsection Openrisc 1000 Features
46935 @cindex target descriptions, OpenRISC 1000 features
46936
46937 The @samp{org.gnu.gdb.or1k.group0} feature is required for OpenRISC 1000
46938 targets. It should contain the 32 general purpose registers (@samp{r0}
46939 through @samp{r31}), @samp{ppc}, @samp{npc} and @samp{sr}.
46940
46941 @node PowerPC Features
46942 @subsection PowerPC Features
46943 @cindex target descriptions, PowerPC features
46944
46945 The @samp{org.gnu.gdb.power.core} feature is required for PowerPC
46946 targets. It should contain registers @samp{r0} through @samp{r31},
46947 @samp{pc}, @samp{msr}, @samp{cr}, @samp{lr}, @samp{ctr}, and
46948 @samp{xer}. They may be 32-bit or 64-bit depending on the target.
46949
46950 The @samp{org.gnu.gdb.power.fpu} feature is optional. It should
46951 contain registers @samp{f0} through @samp{f31} and @samp{fpscr}.
46952
46953 The @samp{org.gnu.gdb.power.altivec} feature is optional. It should
46954 contain registers @samp{vr0} through @samp{vr31}, @samp{vscr}, and
46955 @samp{vrsave}. @value{GDBN} will define pseudo-registers @samp{v0}
46956 through @samp{v31} as aliases for the corresponding @samp{vrX}
46957 registers.
46958
46959 The @samp{org.gnu.gdb.power.vsx} feature is optional. It should
46960 contain registers @samp{vs0h} through @samp{vs31h}. @value{GDBN} will
46961 combine these registers with the floating point registers (@samp{f0}
46962 through @samp{f31}) and the altivec registers (@samp{vr0} through
46963 @samp{vr31}) to present the 128-bit wide registers @samp{vs0} through
46964 @samp{vs63}, the set of vector-scalar registers for POWER7.
46965 Therefore, this feature requires both @samp{org.gnu.gdb.power.fpu} and
46966 @samp{org.gnu.gdb.power.altivec}.
46967
46968 The @samp{org.gnu.gdb.power.spe} feature is optional. It should
46969 contain registers @samp{ev0h} through @samp{ev31h}, @samp{acc}, and
46970 @samp{spefscr}. SPE targets should provide 32-bit registers in
46971 @samp{org.gnu.gdb.power.core} and provide the upper halves in
46972 @samp{ev0h} through @samp{ev31h}. @value{GDBN} will combine
46973 these to present registers @samp{ev0} through @samp{ev31} to the
46974 user.
46975
46976 The @samp{org.gnu.gdb.power.ppr} feature is optional. It should
46977 contain the 64-bit register @samp{ppr}.
46978
46979 The @samp{org.gnu.gdb.power.dscr} feature is optional. It should
46980 contain the 64-bit register @samp{dscr}.
46981
46982 The @samp{org.gnu.gdb.power.tar} feature is optional. It should
46983 contain the 64-bit register @samp{tar}.
46984
46985 The @samp{org.gnu.gdb.power.ebb} feature is optional. It should
46986 contain registers @samp{bescr}, @samp{ebbhr} and @samp{ebbrr}, all
46987 64-bit wide.
46988
46989 The @samp{org.gnu.gdb.power.linux.pmu} feature is optional. It should
46990 contain registers @samp{mmcr0}, @samp{mmcr2}, @samp{siar}, @samp{sdar}
46991 and @samp{sier}, all 64-bit wide. This is the subset of the isa 2.07
46992 server PMU registers provided by @sc{gnu}/Linux.
46993
46994 The @samp{org.gnu.gdb.power.htm.spr} feature is optional. It should
46995 contain registers @samp{tfhar}, @samp{texasr} and @samp{tfiar}, all
46996 64-bit wide.
46997
46998 The @samp{org.gnu.gdb.power.htm.core} feature is optional. It should
46999 contain the checkpointed general-purpose registers @samp{cr0} through
47000 @samp{cr31}, as well as the checkpointed registers @samp{clr} and
47001 @samp{cctr}. These registers may all be either 32-bit or 64-bit
47002 depending on the target. It should also contain the checkpointed
47003 registers @samp{ccr} and @samp{cxer}, which should both be 32-bit
47004 wide.
47005
47006 The @samp{org.gnu.gdb.power.htm.fpu} feature is optional. It should
47007 contain the checkpointed 64-bit floating-point registers @samp{cf0}
47008 through @samp{cf31}, as well as the checkpointed 64-bit register
47009 @samp{cfpscr}.
47010
47011 The @samp{org.gnu.gdb.power.htm.altivec} feature is optional. It
47012 should contain the checkpointed altivec registers @samp{cvr0} through
47013 @samp{cvr31}, all 128-bit wide. It should also contain the
47014 checkpointed registers @samp{cvscr} and @samp{cvrsave}, both 32-bit
47015 wide.
47016
47017 The @samp{org.gnu.gdb.power.htm.vsx} feature is optional. It should
47018 contain registers @samp{cvs0h} through @samp{cvs31h}. @value{GDBN}
47019 will combine these registers with the checkpointed floating point
47020 registers (@samp{cf0} through @samp{cf31}) and the checkpointed
47021 altivec registers (@samp{cvr0} through @samp{cvr31}) to present the
47022 128-bit wide checkpointed vector-scalar registers @samp{cvs0} through
47023 @samp{cvs63}. Therefore, this feature requires both
47024 @samp{org.gnu.gdb.power.htm.altivec} and
47025 @samp{org.gnu.gdb.power.htm.fpu}.
47026
47027 The @samp{org.gnu.gdb.power.htm.ppr} feature is optional. It should
47028 contain the 64-bit checkpointed register @samp{cppr}.
47029
47030 The @samp{org.gnu.gdb.power.htm.dscr} feature is optional. It should
47031 contain the 64-bit checkpointed register @samp{cdscr}.
47032
47033 The @samp{org.gnu.gdb.power.htm.tar} feature is optional. It should
47034 contain the 64-bit checkpointed register @samp{ctar}.
47035
47036
47037 @node RISC-V Features
47038 @subsection RISC-V Features
47039 @cindex target descriptions, RISC-V Features
47040
47041 The @samp{org.gnu.gdb.riscv.cpu} feature is required for RISC-V
47042 targets. It should contain the registers @samp{x0} through
47043 @samp{x31}, and @samp{pc}. Either the architectural names (@samp{x0},
47044 @samp{x1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra},
47045 etc).
47046
47047 The @samp{org.gnu.gdb.riscv.fpu} feature is optional. If present, it
47048 should contain registers @samp{f0} through @samp{f31}, @samp{fflags},
47049 @samp{frm}, and @samp{fcsr}. As with the cpu feature, either the
47050 architectural register names, or the ABI names can be used.
47051
47052 The @samp{org.gnu.gdb.riscv.virtual} feature is optional. If present,
47053 it should contain registers that are not backed by real registers on
47054 the target, but are instead virtual, where the register value is
47055 derived from other target state. In many ways these are like
47056 @value{GDBN}s pseudo-registers, except implemented by the target.
47057 Currently the only register expected in this set is the one byte
47058 @samp{priv} register that contains the target's privilege level in the
47059 least significant two bits.
47060
47061 The @samp{org.gnu.gdb.riscv.csr} feature is optional. If present, it
47062 should contain all of the target's standard CSRs. Standard CSRs are
47063 those defined in the RISC-V specification documents. There is some
47064 overlap between this feature and the fpu feature; the @samp{fflags},
47065 @samp{frm}, and @samp{fcsr} registers could be in either feature. The
47066 expectation is that these registers will be in the fpu feature if the
47067 target has floating point hardware, but can be moved into the csr
47068 feature if the target has the floating point control registers, but no
47069 other floating point hardware.
47070
47071 The @samp{org.gnu.gdb.riscv.vector} feature is optional. If present,
47072 it should contain registers @samp{v0} through @samp{v31}, all of which
47073 must be the same size. These requirements are based on the v0.10
47074 draft vector extension, as the vector extension is not yet final. In
47075 the event that the register set of the vector extension changes for
47076 the final specification, the requirements given here could change for
47077 future releases of @value{GDBN}.
47078
47079 @node RX Features
47080 @subsection RX Features
47081 @cindex target descriptions, RX Features
47082
47083 The @samp{org.gnu.gdb.rx.core} feature is required for RX
47084 targets. It should contain the registers @samp{r0} through
47085 @samp{r15}, @samp{usp}, @samp{isp}, @samp{psw}, @samp{pc}, @samp{intb},
47086 @samp{bpsw}, @samp{bpc}, @samp{fintv}, @samp{fpsw}, and @samp{acc}.
47087
47088 @node S/390 and System z Features
47089 @subsection S/390 and System z Features
47090 @cindex target descriptions, S/390 features
47091 @cindex target descriptions, System z features
47092
47093 The @samp{org.gnu.gdb.s390.core} feature is required for S/390 and
47094 System z targets. It should contain the PSW and the 16 general
47095 registers. In particular, System z targets should provide the 64-bit
47096 registers @samp{pswm}, @samp{pswa}, and @samp{r0} through @samp{r15}.
47097 S/390 targets should provide the 32-bit versions of these registers.
47098 A System z target that runs in 31-bit addressing mode should provide
47099 32-bit versions of @samp{pswm} and @samp{pswa}, as well as the general
47100 register's upper halves @samp{r0h} through @samp{r15h}, and their
47101 lower halves @samp{r0l} through @samp{r15l}.
47102
47103 The @samp{org.gnu.gdb.s390.fpr} feature is required. It should
47104 contain the 64-bit registers @samp{f0} through @samp{f15}, and
47105 @samp{fpc}.
47106
47107 The @samp{org.gnu.gdb.s390.acr} feature is required. It should
47108 contain the 32-bit registers @samp{acr0} through @samp{acr15}.
47109
47110 The @samp{org.gnu.gdb.s390.linux} feature is optional. It should
47111 contain the register @samp{orig_r2}, which is 64-bit wide on System z
47112 targets and 32-bit otherwise. In addition, the feature may contain
47113 the @samp{last_break} register, whose width depends on the addressing
47114 mode, as well as the @samp{system_call} register, which is always
47115 32-bit wide.
47116
47117 The @samp{org.gnu.gdb.s390.tdb} feature is optional. It should
47118 contain the 64-bit registers @samp{tdb0}, @samp{tac}, @samp{tct},
47119 @samp{atia}, and @samp{tr0} through @samp{tr15}.
47120
47121 The @samp{org.gnu.gdb.s390.vx} feature is optional. It should contain
47122 64-bit wide registers @samp{v0l} through @samp{v15l}, which will be
47123 combined by @value{GDBN} with the floating point registers @samp{f0}
47124 through @samp{f15} to present the 128-bit wide vector registers
47125 @samp{v0} through @samp{v15}. In addition, this feature should
47126 contain the 128-bit wide vector registers @samp{v16} through
47127 @samp{v31}.
47128
47129 The @samp{org.gnu.gdb.s390.gs} feature is optional. It should contain
47130 the 64-bit wide guarded-storage-control registers @samp{gsd},
47131 @samp{gssm}, and @samp{gsepla}.
47132
47133 The @samp{org.gnu.gdb.s390.gsbc} feature is optional. It should contain
47134 the 64-bit wide guarded-storage broadcast control registers
47135 @samp{bc_gsd}, @samp{bc_gssm}, and @samp{bc_gsepla}.
47136
47137 @node Sparc Features
47138 @subsection Sparc Features
47139 @cindex target descriptions, sparc32 features
47140 @cindex target descriptions, sparc64 features
47141 The @samp{org.gnu.gdb.sparc.cpu} feature is required for sparc32/sparc64
47142 targets. It should describe the following registers:
47143
47144 @itemize @minus
47145 @item
47146 @samp{g0} through @samp{g7}
47147 @item
47148 @samp{o0} through @samp{o7}
47149 @item
47150 @samp{l0} through @samp{l7}
47151 @item
47152 @samp{i0} through @samp{i7}
47153 @end itemize
47154
47155 They may be 32-bit or 64-bit depending on the target.
47156
47157 Also the @samp{org.gnu.gdb.sparc.fpu} feature is required for sparc32/sparc64
47158 targets. It should describe the following registers:
47159
47160 @itemize @minus
47161 @item
47162 @samp{f0} through @samp{f31}
47163 @item
47164 @samp{f32} through @samp{f62} for sparc64
47165 @end itemize
47166
47167 The @samp{org.gnu.gdb.sparc.cp0} feature is required for sparc32/sparc64
47168 targets. It should describe the following registers:
47169
47170 @itemize @minus
47171 @item
47172 @samp{y}, @samp{psr}, @samp{wim}, @samp{tbr}, @samp{pc}, @samp{npc},
47173 @samp{fsr}, and @samp{csr} for sparc32
47174 @item
47175 @samp{pc}, @samp{npc}, @samp{state}, @samp{fsr}, @samp{fprs}, and @samp{y}
47176 for sparc64
47177 @end itemize
47178
47179 @node TIC6x Features
47180 @subsection TMS320C6x Features
47181 @cindex target descriptions, TIC6x features
47182 @cindex target descriptions, TMS320C6x features
47183 The @samp{org.gnu.gdb.tic6x.core} feature is required for TMS320C6x
47184 targets. It should contain registers @samp{A0} through @samp{A15},
47185 registers @samp{B0} through @samp{B15}, @samp{CSR} and @samp{PC}.
47186
47187 The @samp{org.gnu.gdb.tic6x.gp} feature is optional. It should
47188 contain registers @samp{A16} through @samp{A31} and @samp{B16}
47189 through @samp{B31}.
47190
47191 The @samp{org.gnu.gdb.tic6x.c6xp} feature is optional. It should
47192 contain registers @samp{TSR}, @samp{ILC} and @samp{RILC}.
47193
47194 @node Operating System Information
47195 @appendix Operating System Information
47196 @cindex operating system information
47197
47198 Users of @value{GDBN} often wish to obtain information about the state of
47199 the operating system running on the target---for example the list of
47200 processes, or the list of open files. This section describes the
47201 mechanism that makes it possible. This mechanism is similar to the
47202 target features mechanism (@pxref{Target Descriptions}), but focuses
47203 on a different aspect of target.
47204
47205 Operating system information is retrieved from the target via the
47206 remote protocol, using @samp{qXfer} requests (@pxref{qXfer osdata
47207 read}). The object name in the request should be @samp{osdata}, and
47208 the @var{annex} identifies the data to be fetched.
47209
47210 @menu
47211 * Process list::
47212 @end menu
47213
47214 @node Process list
47215 @appendixsection Process list
47216 @cindex operating system information, process list
47217
47218 When requesting the process list, the @var{annex} field in the
47219 @samp{qXfer} request should be @samp{processes}. The returned data is
47220 an XML document. The formal syntax of this document is defined in
47221 @file{gdb/features/osdata.dtd}.
47222
47223 An example document is:
47224
47225 @smallexample
47226 <?xml version="1.0"?>
47227 <!DOCTYPE target SYSTEM "osdata.dtd">
47228 <osdata type="processes">
47229 <item>
47230 <column name="pid">1</column>
47231 <column name="user">root</column>
47232 <column name="command">/sbin/init</column>
47233 <column name="cores">1,2,3</column>
47234 </item>
47235 </osdata>
47236 @end smallexample
47237
47238 Each item should include a column whose name is @samp{pid}. The value
47239 of that column should identify the process on the target. The
47240 @samp{user} and @samp{command} columns are optional, and will be
47241 displayed by @value{GDBN}. The @samp{cores} column, if present,
47242 should contain a comma-separated list of cores that this process
47243 is running on. Target may provide additional columns,
47244 which @value{GDBN} currently ignores.
47245
47246 @node Trace File Format
47247 @appendix Trace File Format
47248 @cindex trace file format
47249
47250 The trace file comes in three parts: a header, a textual description
47251 section, and a trace frame section with binary data.
47252
47253 The header has the form @code{\x7fTRACE0\n}. The first byte is
47254 @code{0x7f} so as to indicate that the file contains binary data,
47255 while the @code{0} is a version number that may have different values
47256 in the future.
47257
47258 The description section consists of multiple lines of @sc{ascii} text
47259 separated by newline characters (@code{0xa}). The lines may include a
47260 variety of optional descriptive or context-setting information, such
47261 as tracepoint definitions or register set size. @value{GDBN} will
47262 ignore any line that it does not recognize. An empty line marks the end
47263 of this section.
47264
47265 @table @code
47266 @item R @var{size}
47267 Specifies the size of a register block in bytes. This is equal to the
47268 size of a @code{g} packet payload in the remote protocol. @var{size}
47269 is an ascii decimal number. There should be only one such line in
47270 a single trace file.
47271
47272 @item status @var{status}
47273 Trace status. @var{status} has the same format as a @code{qTStatus}
47274 remote packet reply. There should be only one such line in a single trace
47275 file.
47276
47277 @item tp @var{payload}
47278 Tracepoint definition. The @var{payload} has the same format as
47279 @code{qTfP}/@code{qTsP} remote packet reply payload. A single tracepoint
47280 may take multiple lines of definition, corresponding to the multiple
47281 reply packets.
47282
47283 @item tsv @var{payload}
47284 Trace state variable definition. The @var{payload} has the same format as
47285 @code{qTfV}/@code{qTsV} remote packet reply payload. A single variable
47286 may take multiple lines of definition, corresponding to the multiple
47287 reply packets.
47288
47289 @item tdesc @var{payload}
47290 Target description in XML format. The @var{payload} is a single line of
47291 the XML file. All such lines should be concatenated together to get
47292 the original XML file. This file is in the same format as @code{qXfer}
47293 @code{features} payload, and corresponds to the main @code{target.xml}
47294 file. Includes are not allowed.
47295
47296 @end table
47297
47298 The trace frame section consists of a number of consecutive frames.
47299 Each frame begins with a two-byte tracepoint number, followed by a
47300 four-byte size giving the amount of data in the frame. The data in
47301 the frame consists of a number of blocks, each introduced by a
47302 character indicating its type (at least register, memory, and trace
47303 state variable). The data in this section is raw binary, not a
47304 hexadecimal or other encoding; its endianness matches the target's
47305 endianness.
47306
47307 @c FIXME bi-arch may require endianness/arch info in description section
47308
47309 @table @code
47310 @item R @var{bytes}
47311 Register block. The number and ordering of bytes matches that of a
47312 @code{g} packet in the remote protocol. Note that these are the
47313 actual bytes, in target order, not a hexadecimal encoding.
47314
47315 @item M @var{address} @var{length} @var{bytes}...
47316 Memory block. This is a contiguous block of memory, at the 8-byte
47317 address @var{address}, with a 2-byte length @var{length}, followed by
47318 @var{length} bytes.
47319
47320 @item V @var{number} @var{value}
47321 Trace state variable block. This records the 8-byte signed value
47322 @var{value} of trace state variable numbered @var{number}.
47323
47324 @end table
47325
47326 Future enhancements of the trace file format may include additional types
47327 of blocks.
47328
47329 @node Index Section Format
47330 @appendix @code{.gdb_index} section format
47331 @cindex .gdb_index section format
47332 @cindex index section format
47333
47334 This section documents the index section that is created by @code{save
47335 gdb-index} (@pxref{Index Files}). The index section is
47336 DWARF-specific; some knowledge of DWARF is assumed in this
47337 description.
47338
47339 The mapped index file format is designed to be directly
47340 @code{mmap}able on any architecture. In most cases, a datum is
47341 represented using a little-endian 32-bit integer value, called an
47342 @code{offset_type}. Big endian machines must byte-swap the values
47343 before using them. Exceptions to this rule are noted. The data is
47344 laid out such that alignment is always respected.
47345
47346 A mapped index consists of several areas, laid out in order.
47347
47348 @enumerate
47349 @item
47350 The file header. This is a sequence of values, of @code{offset_type}
47351 unless otherwise noted:
47352
47353 @enumerate
47354 @item
47355 The version number, currently 8. Versions 1, 2 and 3 are obsolete.
47356 Version 4 uses a different hashing function from versions 5 and 6.
47357 Version 6 includes symbols for inlined functions, whereas versions 4
47358 and 5 do not. Version 7 adds attributes to the CU indices in the
47359 symbol table. Version 8 specifies that symbols from DWARF type units
47360 (@samp{DW_TAG_type_unit}) refer to the type unit's symbol table and not the
47361 compilation unit (@samp{DW_TAG_comp_unit}) using the type.
47362
47363 @value{GDBN} will only read version 4, 5, or 6 indices
47364 by specifying @code{set use-deprecated-index-sections on}.
47365 GDB has a workaround for potentially broken version 7 indices so it is
47366 currently not flagged as deprecated.
47367
47368 @item
47369 The offset, from the start of the file, of the CU list.
47370
47371 @item
47372 The offset, from the start of the file, of the types CU list. Note
47373 that this area can be empty, in which case this offset will be equal
47374 to the next offset.
47375
47376 @item
47377 The offset, from the start of the file, of the address area.
47378
47379 @item
47380 The offset, from the start of the file, of the symbol table.
47381
47382 @item
47383 The offset, from the start of the file, of the constant pool.
47384 @end enumerate
47385
47386 @item
47387 The CU list. This is a sequence of pairs of 64-bit little-endian
47388 values, sorted by the CU offset. The first element in each pair is
47389 the offset of a CU in the @code{.debug_info} section. The second
47390 element in each pair is the length of that CU. References to a CU
47391 elsewhere in the map are done using a CU index, which is just the
47392 0-based index into this table. Note that if there are type CUs, then
47393 conceptually CUs and type CUs form a single list for the purposes of
47394 CU indices.
47395
47396 @item
47397 The types CU list. This is a sequence of triplets of 64-bit
47398 little-endian values. In a triplet, the first value is the CU offset,
47399 the second value is the type offset in the CU, and the third value is
47400 the type signature. The types CU list is not sorted.
47401
47402 @item
47403 The address area. The address area consists of a sequence of address
47404 entries. Each address entry has three elements:
47405
47406 @enumerate
47407 @item
47408 The low address. This is a 64-bit little-endian value.
47409
47410 @item
47411 The high address. This is a 64-bit little-endian value. Like
47412 @code{DW_AT_high_pc}, the value is one byte beyond the end.
47413
47414 @item
47415 The CU index. This is an @code{offset_type} value.
47416 @end enumerate
47417
47418 @item
47419 The symbol table. This is an open-addressed hash table. The size of
47420 the hash table is always a power of 2.
47421
47422 Each slot in the hash table consists of a pair of @code{offset_type}
47423 values. The first value is the offset of the symbol's name in the
47424 constant pool. The second value is the offset of the CU vector in the
47425 constant pool.
47426
47427 If both values are 0, then this slot in the hash table is empty. This
47428 is ok because while 0 is a valid constant pool index, it cannot be a
47429 valid index for both a string and a CU vector.
47430
47431 The hash value for a table entry is computed by applying an
47432 iterative hash function to the symbol's name. Starting with an
47433 initial value of @code{r = 0}, each (unsigned) character @samp{c} in
47434 the string is incorporated into the hash using the formula depending on the
47435 index version:
47436
47437 @table @asis
47438 @item Version 4
47439 The formula is @code{r = r * 67 + c - 113}.
47440
47441 @item Versions 5 to 7
47442 The formula is @code{r = r * 67 + tolower (c) - 113}.
47443 @end table
47444
47445 The terminating @samp{\0} is not incorporated into the hash.
47446
47447 The step size used in the hash table is computed via
47448 @code{((hash * 17) & (size - 1)) | 1}, where @samp{hash} is the hash
47449 value, and @samp{size} is the size of the hash table. The step size
47450 is used to find the next candidate slot when handling a hash
47451 collision.
47452
47453 The names of C@t{++} symbols in the hash table are canonicalized. We
47454 don't currently have a simple description of the canonicalization
47455 algorithm; if you intend to create new index sections, you must read
47456 the code.
47457
47458 @item
47459 The constant pool. This is simply a bunch of bytes. It is organized
47460 so that alignment is correct: CU vectors are stored first, followed by
47461 strings.
47462
47463 A CU vector in the constant pool is a sequence of @code{offset_type}
47464 values. The first value is the number of CU indices in the vector.
47465 Each subsequent value is the index and symbol attributes of a CU in
47466 the CU list. This element in the hash table is used to indicate which
47467 CUs define the symbol and how the symbol is used.
47468 See below for the format of each CU index+attributes entry.
47469
47470 A string in the constant pool is zero-terminated.
47471 @end enumerate
47472
47473 Attributes were added to CU index values in @code{.gdb_index} version 7.
47474 If a symbol has multiple uses within a CU then there is one
47475 CU index+attributes value for each use.
47476
47477 The format of each CU index+attributes entry is as follows
47478 (bit 0 = LSB):
47479
47480 @table @asis
47481
47482 @item Bits 0-23
47483 This is the index of the CU in the CU list.
47484 @item Bits 24-27
47485 These bits are reserved for future purposes and must be zero.
47486 @item Bits 28-30
47487 The kind of the symbol in the CU.
47488
47489 @table @asis
47490 @item 0
47491 This value is reserved and should not be used.
47492 By reserving zero the full @code{offset_type} value is backwards compatible
47493 with previous versions of the index.
47494 @item 1
47495 The symbol is a type.
47496 @item 2
47497 The symbol is a variable or an enum value.
47498 @item 3
47499 The symbol is a function.
47500 @item 4
47501 Any other kind of symbol.
47502 @item 5,6,7
47503 These values are reserved.
47504 @end table
47505
47506 @item Bit 31
47507 This bit is zero if the value is global and one if it is static.
47508
47509 The determination of whether a symbol is global or static is complicated.
47510 The authorative reference is the file @file{dwarf2read.c} in
47511 @value{GDBN} sources.
47512
47513 @end table
47514
47515 This pseudo-code describes the computation of a symbol's kind and
47516 global/static attributes in the index.
47517
47518 @smallexample
47519 is_external = get_attribute (die, DW_AT_external);
47520 language = get_attribute (cu_die, DW_AT_language);
47521 switch (die->tag)
47522 @{
47523 case DW_TAG_typedef:
47524 case DW_TAG_base_type:
47525 case DW_TAG_subrange_type:
47526 kind = TYPE;
47527 is_static = 1;
47528 break;
47529 case DW_TAG_enumerator:
47530 kind = VARIABLE;
47531 is_static = language != CPLUS;
47532 break;
47533 case DW_TAG_subprogram:
47534 kind = FUNCTION;
47535 is_static = ! (is_external || language == ADA);
47536 break;
47537 case DW_TAG_constant:
47538 kind = VARIABLE;
47539 is_static = ! is_external;
47540 break;
47541 case DW_TAG_variable:
47542 kind = VARIABLE;
47543 is_static = ! is_external;
47544 break;
47545 case DW_TAG_namespace:
47546 kind = TYPE;
47547 is_static = 0;
47548 break;
47549 case DW_TAG_class_type:
47550 case DW_TAG_interface_type:
47551 case DW_TAG_structure_type:
47552 case DW_TAG_union_type:
47553 case DW_TAG_enumeration_type:
47554 kind = TYPE;
47555 is_static = language != CPLUS;
47556 break;
47557 default:
47558 assert (0);
47559 @}
47560 @end smallexample
47561
47562 @node Debuginfod
47563 @appendix Download debugging resources with Debuginfod
47564 @cindex debuginfod
47565
47566 @code{debuginfod} is an HTTP server for distributing ELF, DWARF and source
47567 files.
47568
47569 With the @code{debuginfod} client library, @file{libdebuginfod}, @value{GDBN}
47570 can query servers using the build IDs associated with missing debug info,
47571 executables and source files in order to download them on demand.
47572
47573 For instructions on building @value{GDBN} with @file{libdebuginfod},
47574 @pxref{Configure Options,,--with-debuginfod}. @code{debuginfod} is packaged
47575 with @code{elfutils}, starting with version 0.178. See
47576 @uref{https://sourceware.org/elfutils/Debuginfod.html} for more information
47577 regarding @code{debuginfod}.
47578
47579 @menu
47580 * Debuginfod Settings:: Configuring debuginfod with @value{GDBN}
47581 @end menu
47582
47583 @node Debuginfod Settings
47584 @section Debuginfod Settings
47585
47586 @value{GDBN} provides the following commands for configuring @code{debuginfod}.
47587
47588 @table @code
47589 @kindex set debuginfod enabled
47590 @anchor{set debuginfod enabled}
47591 @item set debuginfod enabled
47592 @itemx set debuginfod enabled on
47593 @cindex enable debuginfod
47594 @value{GDBN} will attempt to query @code{debuginfod} servers when missing debug
47595 info or source files.
47596
47597 @item set debuginfod enabled off
47598 @value{GDBN} will not attempt to query @code{debuginfod} servers when missing
47599 debug info or source files. By default, @code{debuginfod enabled} is set to
47600 @code{off} for non-interactive sessions.
47601
47602 @item set debuginfod enabled ask
47603 @value{GDBN} will prompt the user to enable or disable @code{debuginfod} before
47604 attempting to perform the next query. By default, @code{debuginfod enabled}
47605 is set to @code{ask} for interactive sessions.
47606
47607 @kindex show debuginfod enabled
47608 @item show debuginfod enabled
47609 Display whether @code{debuginfod enabled} is set to @code{on}, @code{off} or
47610 @code{ask}.
47611
47612 @kindex set debuginfod urls
47613 @cindex configure debuginfod URLs
47614 @item set debuginfod urls
47615 @itemx set debuginfod urls @var{urls}
47616 Set the space-separated list of URLs that @code{debuginfod} will attempt to
47617 query. Only @code{http://}, @code{https://} and @code{file://} protocols
47618 should be used. The default value of @code{debuginfod urls} is copied from
47619 the @var{DEBUGINFOD_URLS} environment variable.
47620
47621 @kindex show debuginfod urls
47622 @item show debuginfod urls
47623 Display the list of URLs that @code{debuginfod} will attempt to query.
47624
47625 @kindex set debuginfod verbose
47626 @cindex debuginfod verbosity
47627 @item set debuginfod verbose
47628 @itemx set debuginfod verbose @var{n}
47629 Enable or disable @code{debuginfod}-related output. Use a non-zero value
47630 to enable and @code{0} to disable. @code{debuginfod} output is shown by
47631 default.
47632
47633 @kindex show debuginfod verbose
47634 @item show debuginfod verbose
47635 Show the current verbosity setting.
47636
47637 @end table
47638
47639 @node Man Pages
47640 @appendix Manual pages
47641 @cindex Man pages
47642
47643 @menu
47644 * gdb man:: The GNU Debugger man page
47645 * gdbserver man:: Remote Server for the GNU Debugger man page
47646 * gcore man:: Generate a core file of a running program
47647 * gdbinit man:: gdbinit scripts
47648 * gdb-add-index man:: Add index files to speed up GDB
47649 @end menu
47650
47651 @node gdb man
47652 @heading gdb man
47653
47654 @c man title gdb The GNU Debugger
47655
47656 @c man begin SYNOPSIS gdb
47657 gdb [OPTIONS] [@var{prog}|@var{prog} @var{procID}|@var{prog} @var{core}]
47658 @c man end
47659
47660 @c man begin DESCRIPTION gdb
47661 The purpose of a debugger such as @value{GDBN} is to allow you to see what is
47662 going on ``inside'' another program while it executes -- or what another
47663 program was doing at the moment it crashed.
47664
47665 @value{GDBN} can do four main kinds of things (plus other things in support of
47666 these) to help you catch bugs in the act:
47667
47668 @itemize @bullet
47669 @item
47670 Start your program, specifying anything that might affect its behavior.
47671
47672 @item
47673 Make your program stop on specified conditions.
47674
47675 @item
47676 Examine what has happened, when your program has stopped.
47677
47678 @item
47679 Change things in your program, so you can experiment with correcting the
47680 effects of one bug and go on to learn about another.
47681 @end itemize
47682
47683 You can use @value{GDBN} to debug programs written in C, C@t{++}, Fortran and
47684 Modula-2.
47685
47686 @value{GDBN} is invoked with the shell command @code{gdb}. Once started, it reads
47687 commands from the terminal until you tell it to exit with the @value{GDBN}
47688 command @code{quit} or @code{exit}. You can get online help from @value{GDBN} itself
47689 by using the command @code{help}.
47690
47691 You can run @code{gdb} with no arguments or options; but the most
47692 usual way to start @value{GDBN} is with one argument or two, specifying an
47693 executable program as the argument:
47694
47695 @smallexample
47696 gdb program
47697 @end smallexample
47698
47699 You can also start with both an executable program and a core file specified:
47700
47701 @smallexample
47702 gdb program core
47703 @end smallexample
47704
47705 You can, instead, specify a process ID as a second argument or use option
47706 @code{-p}, if you want to debug a running process:
47707
47708 @smallexample
47709 gdb program 1234
47710 gdb -p 1234
47711 @end smallexample
47712
47713 @noindent
47714 would attach @value{GDBN} to process @code{1234}. With option @option{-p} you
47715 can omit the @var{program} filename.
47716
47717 Here are some of the most frequently needed @value{GDBN} commands:
47718
47719 @c pod2man highlights the right hand side of the @item lines.
47720 @table @env
47721 @item break [@var{file}:][@var{function}|@var{line}]
47722 Set a breakpoint at @var{function} or @var{line} (in @var{file}).
47723
47724 @item run [@var{arglist}]
47725 Start your program (with @var{arglist}, if specified).
47726
47727 @item bt
47728 Backtrace: display the program stack.
47729
47730 @item print @var{expr}
47731 Display the value of an expression.
47732
47733 @item c
47734 Continue running your program (after stopping, e.g.@: at a breakpoint).
47735
47736 @item next
47737 Execute next program line (after stopping); step @emph{over} any
47738 function calls in the line.
47739
47740 @item edit [@var{file}:]@var{function}
47741 look at the program line where it is presently stopped.
47742
47743 @item list [@var{file}:]@var{function}
47744 type the text of the program in the vicinity of where it is presently stopped.
47745
47746 @item step
47747 Execute next program line (after stopping); step @emph{into} any
47748 function calls in the line.
47749
47750 @item help [@var{name}]
47751 Show information about @value{GDBN} command @var{name}, or general information
47752 about using @value{GDBN}.
47753
47754 @item quit
47755 @itemx exit
47756 Exit from @value{GDBN}.
47757 @end table
47758
47759 @ifset man
47760 For full details on @value{GDBN},
47761 see @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47762 by Richard M. Stallman and Roland H. Pesch. The same text is available online
47763 as the @code{gdb} entry in the @code{info} program.
47764 @end ifset
47765 @c man end
47766
47767 @c man begin OPTIONS gdb
47768 Any arguments other than options specify an executable
47769 file and core file (or process ID); that is, the first argument
47770 encountered with no
47771 associated option flag is equivalent to a @option{--se} option, and the second,
47772 if any, is equivalent to a @option{-c} option if it's the name of a file.
47773 Many options have
47774 both long and abbreviated forms; both are shown here. The long forms are also
47775 recognized if you truncate them, so long as enough of the option is
47776 present to be unambiguous.
47777
47778 The abbreviated forms are shown here with @samp{-} and long forms are shown
47779 with @samp{--} to reflect how they are shown in @option{--help}. However,
47780 @value{GDBN} recognizes all of the following conventions for most options:
47781
47782 @table @code
47783 @item --option=@var{value}
47784 @item --option @var{value}
47785 @item -option=@var{value}
47786 @item -option @var{value}
47787 @item --o=@var{value}
47788 @item --o @var{value}
47789 @item -o=@var{value}
47790 @item -o @var{value}
47791 @end table
47792
47793 All the options and command line arguments you give are processed
47794 in sequential order. The order makes a difference when the @option{-x}
47795 option is used.
47796
47797 @table @env
47798 @item --help
47799 @itemx -h
47800 List all options, with brief explanations.
47801
47802 @item --symbols=@var{file}
47803 @itemx -s @var{file}
47804 Read symbol table from @var{file}.
47805
47806 @item --write
47807 Enable writing into executable and core files.
47808
47809 @item --exec=@var{file}
47810 @itemx -e @var{file}
47811 Use @var{file} as the executable file to execute when
47812 appropriate, and for examining pure data in conjunction with a core
47813 dump.
47814
47815 @item --se=@var{file}
47816 Read symbol table from @var{file} and use it as the executable
47817 file.
47818
47819 @item --core=@var{file}
47820 @itemx -c @var{file}
47821 Use @var{file} as a core dump to examine.
47822
47823 @item --command=@var{file}
47824 @itemx -x @var{file}
47825 Execute @value{GDBN} commands from @var{file}.
47826
47827 @item --eval-command=@var{command}
47828 @item -ex @var{command}
47829 Execute given @value{GDBN} @var{command}.
47830
47831 @item --init-eval-command=@var{command}
47832 @item -iex
47833 Execute @value{GDBN} @var{command} before loading the inferior.
47834
47835 @item --directory=@var{directory}
47836 @itemx -d @var{directory}
47837 Add @var{directory} to the path to search for source files.
47838
47839 @item --nh
47840 Do not execute commands from @file{~/.config/gdb/gdbinit},
47841 @file{~/.gdbinit}, @file{~/.config/gdb/gdbearlyinit}, or
47842 @file{~/.gdbearlyinit}
47843
47844 @item --nx
47845 @itemx -n
47846 Do not execute commands from any @file{.gdbinit} or
47847 @file{.gdbearlyinit} initialization files.
47848
47849 @item --quiet
47850 @item --silent
47851 @itemx -q
47852 ``Quiet''. Do not print the introductory and copyright messages. These
47853 messages are also suppressed in batch mode.
47854
47855 @item --batch
47856 Run in batch mode. Exit with status @code{0} after processing all the command
47857 files specified with @option{-x} (and @file{.gdbinit}, if not inhibited).
47858 Exit with nonzero status if an error occurs in executing the @value{GDBN}
47859 commands in the command files.
47860
47861 Batch mode may be useful for running @value{GDBN} as a filter, for example to
47862 download and run a program on another computer; in order to make this
47863 more useful, the message
47864
47865 @smallexample
47866 Program exited normally.
47867 @end smallexample
47868
47869 @noindent
47870 (which is ordinarily issued whenever a program running under @value{GDBN} control
47871 terminates) is not issued when running in batch mode.
47872
47873 @item --batch-silent
47874 Run in batch mode, just like @option{--batch}, but totally silent. All @value{GDBN}
47875 output is supressed (stderr is unaffected). This is much quieter than
47876 @option{--silent} and would be useless for an interactive session.
47877
47878 This is particularly useful when using targets that give @samp{Loading section}
47879 messages, for example.
47880
47881 Note that targets that give their output via @value{GDBN}, as opposed to writing
47882 directly to @code{stdout}, will also be made silent.
47883
47884 @item --args @var{prog} [@var{arglist}]
47885 Change interpretation of command line so that arguments following this
47886 option are passed as arguments to the inferior. As an example, take
47887 the following command:
47888
47889 @smallexample
47890 gdb ./a.out -q
47891 @end smallexample
47892
47893 @noindent
47894 It would start @value{GDBN} with @option{-q}, not printing the introductory message. On
47895 the other hand, using:
47896
47897 @smallexample
47898 gdb --args ./a.out -q
47899 @end smallexample
47900
47901 @noindent
47902 starts @value{GDBN} with the introductory message, and passes the option to the inferior.
47903
47904 @item --pid=@var{pid}
47905 Attach @value{GDBN} to an already running program, with the PID @var{pid}.
47906
47907 @item --tui
47908 Open the terminal user interface.
47909
47910 @item --readnow
47911 Read all symbols from the given symfile on the first access.
47912
47913 @item --readnever
47914 Do not read symbol files.
47915
47916 @item --return-child-result
47917 @value{GDBN}'s exit code will be the same as the child's exit code.
47918
47919 @item --configuration
47920 Print details about GDB configuration and then exit.
47921
47922 @item --version
47923 Print version information and then exit.
47924
47925 @item --cd=@var{directory}
47926 Run @value{GDBN} using @var{directory} as its working directory,
47927 instead of the current directory.
47928
47929 @item --data-directory=@var{directory}
47930 @item -D
47931 Run @value{GDBN} using @var{directory} as its data directory. The data
47932 directory is where @value{GDBN} searches for its auxiliary files.
47933
47934 @item --fullname
47935 @itemx -f
47936 Emacs sets this option when it runs @value{GDBN} as a subprocess. It tells
47937 @value{GDBN} to output the full file name and line number in a standard,
47938 recognizable fashion each time a stack frame is displayed (which
47939 includes each time the program stops). This recognizable format looks
47940 like two @samp{\032} characters, followed by the file name, line number
47941 and character position separated by colons, and a newline. The
47942 Emacs-to-@value{GDBN} interface program uses the two @samp{\032}
47943 characters as a signal to display the source code for the frame.
47944
47945 @item -b @var{baudrate}
47946 Set the line speed (baud rate or bits per second) of any serial
47947 interface used by @value{GDBN} for remote debugging.
47948
47949 @item -l @var{timeout}
47950 Set timeout, in seconds, for remote debugging.
47951
47952 @item --tty=@var{device}
47953 Run using @var{device} for your program's standard input and output.
47954 @end table
47955 @c man end
47956
47957 @c man begin SEEALSO gdb
47958 @ifset man
47959 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47960 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47961 documentation are properly installed at your site, the command
47962
47963 @smallexample
47964 info gdb
47965 @end smallexample
47966
47967 @noindent
47968 should give you access to the complete manual.
47969
47970 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47971 Richard M. Stallman and Roland H. Pesch, July 1991.
47972 @end ifset
47973 @c man end
47974
47975 @node gdbserver man
47976 @heading gdbserver man
47977
47978 @c man title gdbserver Remote Server for the GNU Debugger
47979 @format
47980 @c man begin SYNOPSIS gdbserver
47981 gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
47982
47983 gdbserver --attach @var{comm} @var{pid}
47984
47985 gdbserver --multi @var{comm}
47986 @c man end
47987 @end format
47988
47989 @c man begin DESCRIPTION gdbserver
47990 @command{gdbserver} is a program that allows you to run @value{GDBN} on a different machine
47991 than the one which is running the program being debugged.
47992
47993 @ifclear man
47994 @subheading Usage (server (target) side)
47995 @end ifclear
47996 @ifset man
47997 Usage (server (target) side):
47998 @end ifset
47999
48000 First, you need to have a copy of the program you want to debug put onto
48001 the target system. The program can be stripped to save space if needed, as
48002 @command{gdbserver} doesn't care about symbols. All symbol handling is taken care of by
48003 the @value{GDBN} running on the host system.
48004
48005 To use the server, you log on to the target system, and run the @command{gdbserver}
48006 program. You must tell it (a) how to communicate with @value{GDBN}, (b) the name of
48007 your program, and (c) its arguments. The general syntax is:
48008
48009 @smallexample
48010 target> gdbserver @var{comm} @var{program} [@var{args} ...]
48011 @end smallexample
48012
48013 For example, using a serial port, you might say:
48014
48015 @smallexample
48016 @ifset man
48017 @c @file would wrap it as F</dev/com1>.
48018 target> gdbserver /dev/com1 emacs foo.txt
48019 @end ifset
48020 @ifclear man
48021 target> gdbserver @file{/dev/com1} emacs foo.txt
48022 @end ifclear
48023 @end smallexample
48024
48025 This tells @command{gdbserver} to debug emacs with an argument of foo.txt, and
48026 to communicate with @value{GDBN} via @file{/dev/com1}. @command{gdbserver} now
48027 waits patiently for the host @value{GDBN} to communicate with it.
48028
48029 To use a TCP connection, you could say:
48030
48031 @smallexample
48032 target> gdbserver host:2345 emacs foo.txt
48033 @end smallexample
48034
48035 This says pretty much the same thing as the last example, except that we are
48036 going to communicate with the @code{host} @value{GDBN} via TCP. The @code{host:2345} argument means
48037 that we are expecting to see a TCP connection from @code{host} to local TCP port
48038 2345. (Currently, the @code{host} part is ignored.) You can choose any number you
48039 want for the port number as long as it does not conflict with any existing TCP
48040 ports on the target system. This same port number must be used in the host
48041 @value{GDBN}s @code{target remote} command, which will be described shortly. Note that if
48042 you chose a port number that conflicts with another service, @command{gdbserver} will
48043 print an error message and exit.
48044
48045 @command{gdbserver} can also attach to running programs.
48046 This is accomplished via the @option{--attach} argument. The syntax is:
48047
48048 @smallexample
48049 target> gdbserver --attach @var{comm} @var{pid}
48050 @end smallexample
48051
48052 @var{pid} is the process ID of a currently running process. It isn't
48053 necessary to point @command{gdbserver} at a binary for the running process.
48054
48055 To start @code{gdbserver} without supplying an initial command to run
48056 or process ID to attach, use the @option{--multi} command line option.
48057 In such case you should connect using @kbd{target extended-remote} to start
48058 the program you want to debug.
48059
48060 @smallexample
48061 target> gdbserver --multi @var{comm}
48062 @end smallexample
48063
48064 @ifclear man
48065 @subheading Usage (host side)
48066 @end ifclear
48067 @ifset man
48068 Usage (host side):
48069 @end ifset
48070
48071 You need an unstripped copy of the target program on your host system, since
48072 @value{GDBN} needs to examine its symbol tables and such. Start up @value{GDBN} as you normally
48073 would, with the target program as the first argument. (You may need to use the
48074 @option{--baud} option if the serial line is running at anything except 9600 baud.)
48075 That is @code{gdb TARGET-PROG}, or @code{gdb --baud BAUD TARGET-PROG}. After that, the only
48076 new command you need to know about is @code{target remote}
48077 (or @code{target extended-remote}). Its argument is either
48078 a device name (usually a serial device, like @file{/dev/ttyb}), or a @code{HOST:PORT}
48079 descriptor. For example:
48080
48081 @smallexample
48082 @ifset man
48083 @c @file would wrap it as F</dev/ttyb>.
48084 (gdb) target remote /dev/ttyb
48085 @end ifset
48086 @ifclear man
48087 (gdb) target remote @file{/dev/ttyb}
48088 @end ifclear
48089 @end smallexample
48090
48091 @noindent
48092 communicates with the server via serial line @file{/dev/ttyb}, and:
48093
48094 @smallexample
48095 (gdb) target remote the-target:2345
48096 @end smallexample
48097
48098 @noindent
48099 communicates via a TCP connection to port 2345 on host `the-target', where
48100 you previously started up @command{gdbserver} with the same port number. Note that for
48101 TCP connections, you must start up @command{gdbserver} prior to using the `target remote'
48102 command, otherwise you may get an error that looks something like
48103 `Connection refused'.
48104
48105 @command{gdbserver} can also debug multiple inferiors at once,
48106 described in
48107 @ifset man
48108 the @value{GDBN} manual in node @code{Inferiors Connections and Programs}
48109 -- shell command @code{info -f gdb -n 'Inferiors Connections and Programs'}.
48110 @end ifset
48111 @ifclear man
48112 @ref{Inferiors Connections and Programs}.
48113 @end ifclear
48114 In such case use the @code{extended-remote} @value{GDBN} command variant:
48115
48116 @smallexample
48117 (gdb) target extended-remote the-target:2345
48118 @end smallexample
48119
48120 The @command{gdbserver} option @option{--multi} may or may not be used in such
48121 case.
48122 @c man end
48123
48124 @c man begin OPTIONS gdbserver
48125 There are three different modes for invoking @command{gdbserver}:
48126
48127 @itemize @bullet
48128
48129 @item
48130 Debug a specific program specified by its program name:
48131
48132 @smallexample
48133 gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
48134 @end smallexample
48135
48136 The @var{comm} parameter specifies how should the server communicate
48137 with @value{GDBN}; it is either a device name (to use a serial line),
48138 a TCP port number (@code{:1234}), or @code{-} or @code{stdio} to use
48139 stdin/stdout of @code{gdbserver}. Specify the name of the program to
48140 debug in @var{prog}. Any remaining arguments will be passed to the
48141 program verbatim. When the program exits, @value{GDBN} will close the
48142 connection, and @code{gdbserver} will exit.
48143
48144 @item
48145 Debug a specific program by specifying the process ID of a running
48146 program:
48147
48148 @smallexample
48149 gdbserver --attach @var{comm} @var{pid}
48150 @end smallexample
48151
48152 The @var{comm} parameter is as described above. Supply the process ID
48153 of a running program in @var{pid}; @value{GDBN} will do everything
48154 else. Like with the previous mode, when the process @var{pid} exits,
48155 @value{GDBN} will close the connection, and @code{gdbserver} will exit.
48156
48157 @item
48158 Multi-process mode -- debug more than one program/process:
48159
48160 @smallexample
48161 gdbserver --multi @var{comm}
48162 @end smallexample
48163
48164 In this mode, @value{GDBN} can instruct @command{gdbserver} which
48165 command(s) to run. Unlike the other 2 modes, @value{GDBN} will not
48166 close the connection when a process being debugged exits, so you can
48167 debug several processes in the same session.
48168 @end itemize
48169
48170 In each of the modes you may specify these options:
48171
48172 @table @env
48173
48174 @item --help
48175 List all options, with brief explanations.
48176
48177 @item --version
48178 This option causes @command{gdbserver} to print its version number and exit.
48179
48180 @item --attach
48181 @command{gdbserver} will attach to a running program. The syntax is:
48182
48183 @smallexample
48184 target> gdbserver --attach @var{comm} @var{pid}
48185 @end smallexample
48186
48187 @var{pid} is the process ID of a currently running process. It isn't
48188 necessary to point @command{gdbserver} at a binary for the running process.
48189
48190 @item --multi
48191 To start @code{gdbserver} without supplying an initial command to run
48192 or process ID to attach, use this command line option.
48193 Then you can connect using @kbd{target extended-remote} and start
48194 the program you want to debug. The syntax is:
48195
48196 @smallexample
48197 target> gdbserver --multi @var{comm}
48198 @end smallexample
48199
48200 @item --debug
48201 Instruct @code{gdbserver} to display extra status information about the debugging
48202 process.
48203 This option is intended for @code{gdbserver} development and for bug reports to
48204 the developers.
48205
48206 @item --remote-debug
48207 Instruct @code{gdbserver} to display remote protocol debug output.
48208 This option is intended for @code{gdbserver} development and for bug reports to
48209 the developers.
48210
48211 @item --debug-file=@var{filename}
48212 Instruct @code{gdbserver} to send any debug output to the given @var{filename}.
48213 This option is intended for @code{gdbserver} development and for bug reports to
48214 the developers.
48215
48216 @item --debug-format=option1@r{[},option2,...@r{]}
48217 Instruct @code{gdbserver} to include extra information in each line
48218 of debugging output.
48219 @xref{Other Command-Line Arguments for gdbserver}.
48220
48221 @item --wrapper
48222 Specify a wrapper to launch programs
48223 for debugging. The option should be followed by the name of the
48224 wrapper, then any command-line arguments to pass to the wrapper, then
48225 @kbd{--} indicating the end of the wrapper arguments.
48226
48227 @item --once
48228 By default, @command{gdbserver} keeps the listening TCP port open, so that
48229 additional connections are possible. However, if you start @code{gdbserver}
48230 with the @option{--once} option, it will stop listening for any further
48231 connection attempts after connecting to the first @value{GDBN} session.
48232
48233 @c --disable-packet is not documented for users.
48234
48235 @c --disable-randomization and --no-disable-randomization are superseded by
48236 @c QDisableRandomization.
48237
48238 @end table
48239 @c man end
48240
48241 @c man begin SEEALSO gdbserver
48242 @ifset man
48243 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48244 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48245 documentation are properly installed at your site, the command
48246
48247 @smallexample
48248 info gdb
48249 @end smallexample
48250
48251 should give you access to the complete manual.
48252
48253 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48254 Richard M. Stallman and Roland H. Pesch, July 1991.
48255 @end ifset
48256 @c man end
48257
48258 @node gcore man
48259 @heading gcore
48260
48261 @c man title gcore Generate a core file of a running program
48262
48263 @format
48264 @c man begin SYNOPSIS gcore
48265 gcore [-a] [-o @var{prefix}] @var{pid1} [@var{pid2}...@var{pidN}]
48266 @c man end
48267 @end format
48268
48269 @c man begin DESCRIPTION gcore
48270 Generate core dumps of one or more running programs with process IDs
48271 @var{pid1}, @var{pid2}, etc. A core file produced by @command{gcore}
48272 is equivalent to one produced by the kernel when the process crashes
48273 (and when @kbd{ulimit -c} was used to set up an appropriate core dump
48274 limit). However, unlike after a crash, after @command{gcore} finishes
48275 its job the program remains running without any change.
48276 @c man end
48277
48278 @c man begin OPTIONS gcore
48279 @table @env
48280 @item -a
48281 Dump all memory mappings. The actual effect of this option depends on
48282 the Operating System. On @sc{gnu}/Linux, it will disable
48283 @code{use-coredump-filter} (@pxref{set use-coredump-filter}) and
48284 enable @code{dump-excluded-mappings} (@pxref{set
48285 dump-excluded-mappings}).
48286
48287 @item -o @var{prefix}
48288 The optional argument @var{prefix} specifies the prefix to be used
48289 when composing the file names of the core dumps. The file name is
48290 composed as @file{@var{prefix}.@var{pid}}, where @var{pid} is the
48291 process ID of the running program being analyzed by @command{gcore}.
48292 If not specified, @var{prefix} defaults to @var{gcore}.
48293 @end table
48294 @c man end
48295
48296 @c man begin SEEALSO gcore
48297 @ifset man
48298 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48299 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48300 documentation are properly installed at your site, the command
48301
48302 @smallexample
48303 info gdb
48304 @end smallexample
48305
48306 @noindent
48307 should give you access to the complete manual.
48308
48309 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48310 Richard M. Stallman and Roland H. Pesch, July 1991.
48311 @end ifset
48312 @c man end
48313
48314 @node gdbinit man
48315 @heading gdbinit
48316
48317 @c man title gdbinit GDB initialization scripts
48318
48319 @format
48320 @c man begin SYNOPSIS gdbinit
48321 @ifset SYSTEM_GDBINIT
48322 @value{SYSTEM_GDBINIT}
48323 @end ifset
48324
48325 @ifset SYSTEM_GDBINIT_DIR
48326 @value{SYSTEM_GDBINIT_DIR}/*
48327 @end ifset
48328
48329 ~/.config/gdb/gdbinit
48330
48331 ~/.gdbinit
48332
48333 ./.gdbinit
48334 @c man end
48335 @end format
48336
48337 @c man begin DESCRIPTION gdbinit
48338 These files contain @value{GDBN} commands to automatically execute during
48339 @value{GDBN} startup. The lines of contents are canned sequences of commands,
48340 described in
48341 @ifset man
48342 the @value{GDBN} manual in node @code{Sequences}
48343 -- shell command @code{info -f gdb -n Sequences}.
48344 @end ifset
48345 @ifclear man
48346 @ref{Sequences}.
48347 @end ifclear
48348
48349 Please read more in
48350 @ifset man
48351 the @value{GDBN} manual in node @code{Startup}
48352 -- shell command @code{info -f gdb -n Startup}.
48353 @end ifset
48354 @ifclear man
48355 @ref{Startup}.
48356 @end ifclear
48357
48358 @table @env
48359 @ifset SYSTEM_GDBINIT
48360 @item @value{SYSTEM_GDBINIT}
48361 @end ifset
48362 @ifclear SYSTEM_GDBINIT
48363 @item (not enabled with @code{--with-system-gdbinit} during compilation)
48364 @end ifclear
48365 System-wide initialization file. It is executed unless user specified
48366 @value{GDBN} option @code{-nx} or @code{-n}.
48367 See more in
48368 @ifset man
48369 the @value{GDBN} manual in node @code{System-wide configuration}
48370 -- shell command @code{info -f gdb -n 'System-wide configuration'}.
48371 @end ifset
48372 @ifset SYSTEM_GDBINIT_DIR
48373 @item @value{SYSTEM_GDBINIT_DIR}
48374 @end ifset
48375 @ifclear SYSTEM_GDBINIT_DIR
48376 @item (not enabled with @code{--with-system-gdbinit-dir} during compilation)
48377 @end ifclear
48378 System-wide initialization directory. All files in this directory are
48379 executed on startup unless user specified @value{GDBN} option @code{-nx} or
48380 @code{-n}, as long as they have a recognized file extension.
48381 See more in
48382 @ifset man
48383 the @value{GDBN} manual in node @code{System-wide configuration}
48384 -- shell command @code{info -f gdb -n 'System-wide configuration'}.
48385 @end ifset
48386 @ifclear man
48387 @ref{System-wide configuration}.
48388 @end ifclear
48389
48390 @item @file{~/.config/gdb/gdbinit} or @file{~/.gdbinit}
48391 User initialization file. It is executed unless user specified
48392 @value{GDBN} options @code{-nx}, @code{-n} or @code{-nh}.
48393
48394 @item @file{.gdbinit}
48395 Initialization file for current directory. It may need to be enabled with
48396 @value{GDBN} security command @code{set auto-load local-gdbinit}.
48397 See more in
48398 @ifset man
48399 the @value{GDBN} manual in node @code{Init File in the Current Directory}
48400 -- shell command @code{info -f gdb -n 'Init File in the Current Directory'}.
48401 @end ifset
48402 @ifclear man
48403 @ref{Init File in the Current Directory}.
48404 @end ifclear
48405 @end table
48406 @c man end
48407
48408 @c man begin SEEALSO gdbinit
48409 @ifset man
48410 gdb(1), @code{info -f gdb -n Startup}
48411
48412 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48413 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48414 documentation are properly installed at your site, the command
48415
48416 @smallexample
48417 info gdb
48418 @end smallexample
48419
48420 should give you access to the complete manual.
48421
48422 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48423 Richard M. Stallman and Roland H. Pesch, July 1991.
48424 @end ifset
48425 @c man end
48426
48427 @node gdb-add-index man
48428 @heading gdb-add-index
48429 @pindex gdb-add-index
48430 @anchor{gdb-add-index}
48431
48432 @c man title gdb-add-index Add index files to speed up GDB
48433
48434 @c man begin SYNOPSIS gdb-add-index
48435 gdb-add-index @var{filename}
48436 @c man end
48437
48438 @c man begin DESCRIPTION gdb-add-index
48439 When @value{GDBN} finds a symbol file, it scans the symbols in the
48440 file in order to construct an internal symbol table. This lets most
48441 @value{GDBN} operations work quickly--at the cost of a delay early on.
48442 For large programs, this delay can be quite lengthy, so @value{GDBN}
48443 provides a way to build an index, which speeds up startup.
48444
48445 To determine whether a file contains such an index, use the command
48446 @kbd{readelf -S filename}: the index is stored in a section named
48447 @code{.gdb_index}. The index file can only be produced on systems
48448 which use ELF binaries and DWARF debug information (i.e., sections
48449 named @code{.debug_*}).
48450
48451 @command{gdb-add-index} uses @value{GDBN} and @command{objdump} found
48452 in the @env{PATH} environment variable. If you want to use different
48453 versions of these programs, you can specify them through the
48454 @env{GDB} and @env{OBJDUMP} environment variables.
48455
48456 See more in
48457 @ifset man
48458 the @value{GDBN} manual in node @code{Index Files}
48459 -- shell command @kbd{info -f gdb -n "Index Files"}.
48460 @end ifset
48461 @ifclear man
48462 @ref{Index Files}.
48463 @end ifclear
48464 @c man end
48465
48466 @c man begin SEEALSO gdb-add-index
48467 @ifset man
48468 The full documentation for @value{GDBN} is maintained as a Texinfo manual.
48469 If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
48470 documentation are properly installed at your site, the command
48471
48472 @smallexample
48473 info gdb
48474 @end smallexample
48475
48476 should give you access to the complete manual.
48477
48478 @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
48479 Richard M. Stallman and Roland H. Pesch, July 1991.
48480 @end ifset
48481 @c man end
48482
48483 @include gpl.texi
48484
48485 @node GNU Free Documentation License
48486 @appendix GNU Free Documentation License
48487 @include fdl.texi
48488
48489 @node Concept Index
48490 @unnumbered Concept Index
48491
48492 @printindex cp
48493
48494 @node Command and Variable Index
48495 @unnumbered Command, Variable, and Function Index
48496
48497 @printindex fn
48498
48499 @tex
48500 % I think something like @@colophon should be in texinfo. In the
48501 % meantime:
48502 \long\def\colophon{\hbox to0pt{}\vfill
48503 \centerline{The body of this manual is set in}
48504 \centerline{\fontname\tenrm,}
48505 \centerline{with headings in {\bf\fontname\tenbf}}
48506 \centerline{and examples in {\tt\fontname\tentt}.}
48507 \centerline{{\it\fontname\tenit\/},}
48508 \centerline{{\bf\fontname\tenbf}, and}
48509 \centerline{{\sl\fontname\tensl\/}}
48510 \centerline{are used for emphasis.}\vfill}
48511 \page\colophon
48512 % Blame: doc@@cygnus.com, 1991.
48513 @end tex
48514
48515 @bye